2
votes
4answers
283 views
Running multiple sites from a single Python web framework
What are come good (or at least clever) ways of running multiple sites from a single, common Python web framework (ie: Pylons, TurboGears, etc)? I know you can do redirection based on the domain or …
4
votes
Python: No module named core.exceptions
core.exceptions is part of django; what version of django do you have installed? The AppEngine comes with the appropriate version for whatever release you've downloaded (in the lib/dja …
3
votes
What did you use to teach yourself python?
I agree with William Keller; use the tutorial to get your feet wet (it's short) and then read Dive Into Python or a Book, whichever works for you, as you begin your own project. At first, just to g …
0
votes
Doing CRUD in Turbogears
While CRUDTemplate looks mildly complex, I'd say that you can implement CRUD/ABCD using just about any ORM that you choose. …
0
votes
setting the gzip timestamp from Python
In lib/gzip.py, we find the method that builds the header, including the part that does indeed contain a timestamp. In Python 2.5, this begins on line 143:
def _write_gzip_header(se …
