complete reportlab API / Documentation?
I'm not familiar with reportlab in particular, but as a general rule, if you stumble upon open-source software that's poorly documented, just dive into their source code. Often there is extra documentation there, or at least code you can use to make sense of things (like parameter names, methods, etc.).
More on reddit.comCan anyone provide comment (pro or con) on ReportLab?
Videos
» pip install reportlab
Hi, i'm exploring reportlab to create pdf with python but i can't seem to find any complete api or documentation.
I've read these:
-
http://www.reportlab.com/docs/reportlab-userguide.pdf
-
http://www.reportlab.com/apis/reportlab/2.4/index.html
But, for eg., how do i know the complete options i can use with a TableStyle?
I'm not familiar with reportlab in particular, but as a general rule, if you stumble upon open-source software that's poorly documented, just dive into their source code. Often there is extra documentation there, or at least code you can use to make sense of things (like parameter names, methods, etc.).
I've used this library a little before. The userguide is a bit short on examples and there are some undocumented bugs. Google search and stackoverflow are a big help, as is reading the source code.
When I first started using reportlab I searched for some blogposts to help find better examples of doing stuff. Here's one of the posts I still have bookmarked. Its from a couple of years ago but should still be helpful.
http://www.blog.pythonlibrary.org/2010/03/08/a-simple-step-by-step-reportlab-tutorial/