Feb 27, 2019

Creating dynamic headers in Reportlab

When writing code to make a report, you never truly know what you are going to get into. In a recent Python project, I was using the excellent ReportLab libraryand things were going smoothly. But then I needed make a header that would appear on every page. This isn’t took bad – you just create a function that goes on the document when you build it. But the API doesn’t support that terribly well – the function that you give to the Document object takes the Document and the Canvas as the only parameters… but I have content to put in there!

In the dusty part of my brain I remembered currying functions from reading several years ago. They are also called “partial functions”. As a surprise to no one, Python 3 has a standard library function for this. As I combined that with how I knew the header had to be made, I was impressed how simple it seemed to be. The code isn’t complicated at all!

Here is a Gist with how I set this up. Some understanding of ReportLab is assumed, but I think it works well. You can do something similar for a footer as well. Actually you can have both render in the same function.

About the Author

Mike Hostetler profile.

Mike Hostetler

Principal Technologist

Mike has almost 20 years of experience in technology. He started in networking and Unix administration, and grew into technical support and QA testing. But he has always done some development on the side and decided a few years ago to pursue it full-time. His history of working with users gives Mike a unique perspective on writing software.

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Blog Posts
Android Development for iOS Developers
Android development has greatly improved since the early days. Maybe you tried it out when Android development was done in Eclipse, emulators were slow and buggy, and Java was the required language. Things have changed […]
Add a custom object to your Liquibase diff
Adding a custom object to your liquibase diff is a pretty simple two step process. Create an implementation of DatabaseObject Create an implementation of SnapshotGenerator In my case I wanted to add tracking of Stored […]
Keeping Secrets Out of Terraform State
There are many instances where you will want to create resources via Terraform with secrets that you just don’t want anyone to see. These could be IAM credentials, certificates, RDS DB credentials, etc. One problem […]
Validating Terraform Plans using Open Policy Agent
When developing infrastructure as code using terraform, it can be difficult to test and validate changes without executing the code against a real environment. The feedback loop between writing a line of code and understanding […]