Search Results

18
votes
11answers
3k views

What is a good PDF report generator tool for python?

What is a good tool for PDF report generation in Python? I've checked out ReportLab, but it seems to be awfully low-level for what I want to do. My current hunch is to call TeX on the command-line …
4
votes

How do you organize Python modules?

In addition to PEP8 and easy_install, you should check out virtualenv. Virtualenv allows you to have multiple different python library trees. At work, we use virtualenv with a bootstrapping environ …
1
vote

When will most libraries be Python 3 compliant?

The general idea in the migration plan is to stay on 2.x and then slowly change the code to 3.x. You will have at least 1.5 years to worry about it in. Of course there's the chicke …
0
votes

What applications is Python optimal for?

Python is dynamically typed and that makes it perfect for problems where you only have a vague idea of the goal. You can slowly begin getting the ball rolling and you can see the direction of the b …
4
votes

How are you planning on handling the migration to Python 3?

The main idea of 2.6 is to provide a migration path to 3.0. So you can use from __future__ import X slowly migrating one feature at a time until you get all of them nailed down and can …
10
votes

Speeding Up Python

Rather than just punting to C, I'd suggest: Make your code count. Do more with fewer executions of lines: Change the algorithm to a faster one. It doesn't need to be fancy to …