Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
2answers
1k views

ReportLab LayoutError: too large on page

I'm doing my first program using ReportLab where I don't know in advance where the page breaks will fall and I'm having trouble. To keep things simple I'm using the SimpleDocTemplate. My flowables ...
1
vote
1answer
96 views

reportlab: add background image by using platypus

this is a bit related to this post I am trying to place an image on the background, and I want to be able to write text over it. using canvas.drawImage helps, but that's too low level approach for ...
1
vote
1answer
127 views

Generate simple pdf report using platypus

I am trying to generate a pdf report using reportlab in django. I can get a simple report started by working directly with the canvas, but it looks like platypus should make things easier. But I ...
1
vote
0answers
42 views

I am trying to make a .app for my test first python script using playpus

This is my script print "Hello How are you?", feeling = raw_input() print "What is your name?", name = raw_input() print "Are you a he or a she?", gender = raw_input() print "How old are you?", age ...
1
vote
1answer
276 views

Package bash script in “executable” for double-click execution (ideally platform independent)?

I wrote a number of bash scripts that greatly simplify the routine, but very tedious, file manipulation that my group does. Unfortunately, most in my group cannot open a terminal, let alone run ...
0
votes
1answer
1k views

Python, generating PDF using ReportLab.Platypus SimpleDocTemplate, date/time in header

I'm working on a project in Python/Django which uses ReportLab's SimpleDocTemplate to generate PDF documents. All the documents generated have the current date/time printed in the top right corner. ...