2
votes
Python tutorial for total beginners?
Python for Software Design which you can soon buy as a book, or download as a PDF file (which probably is not as nicely typese …
6
votes
What is an easy way to create a trivial one-off Python object?
If you insist on not having to define a class, you can abuse some existing classes. Most objects belong to "new-style" classes which don't have a dict, but functions can have arbitrary attributes: …
10
votes
Getting method parameter names in python
In CPython, the number of arguments is
aMethod.func_code.co_argcount
and their names are in the beginning of
aMethod.func_code.co_varnames
…
2
votes
What is a good PDF report generator tool for python?
Take a look at Sphinx. A lot of Python projects are starting to use Sphinx, including Python itself. You type your documentation in reStructure …
14
votes
Python program start
If your program is usable as a library but you also have a main program (e.g. to test the library), that construct lets others import the file as a library and not run your main program. If your pr …
8
votes
What’s the idiomatic Python equivalent to Django’s ‘regroup’ template tag?
Combine itertools.groupby with operator.itemgetter to get a pretty nice solution:
from operator import itemgetter
from itertools import groupby
key = item …
6
votes
How do you change the size of figures drawn with matplotlib?
help(figure) tells you the call signature:
figure(num=None, figsize=(8, 6), dpi=80, facecolor='w', edgecolor='k')
So figure(figsize=(1,1)) creates an …
2
votes
Python plotting: How can I make matplotlib.pyplot stop forcing the style of my markers?
For nice-looking vectorized output, don't use the '.' marker style. Use e.g. 'o' (circle) or 's' (square) (see help(plot) for the options) and se …
1
vote
Multiple overlapping plots with independent scaling in Matplotlib
There's no direct support for this, but here's some code from a mailing list posting that illlustrate …
0
votes
0
votes
Barchart sizing of text & barwidth with matplotlib - python
Take a look at subplots_adjust, or just use …
0
votes
Matplotlib Build Problem: Error C1083: Cannot open include file: ‘ft2build.h’
Have you installed freetype properly? If you have, there should be a file named ft2build.h somewhere under the installation directory, and the directory where that file is found is the …
5
votes
barchart (o plot) 3D in python
For some time now, matplotlib had no 3D support, but it has been added back recently. You wil …
3
votes
barchart (o plot) 3D in python
One more possibility is Gnuplot, which can draw some kind of pseudo 3D bar charts, and …
0
votes
How would you write a @debuggable decorator in python?
There's a fairly long blog post on the subject of tracing decorators at Word Aligned.
…
