Tag Archives: howto

An multiple application pyramid project configuration

In the deployment of pyramid project, I don’t want to setup a separate process for each pyramid application. So it comes the requirement to deploy multiple application under one project. Here’s an example configuration for a multiple app project. The … Continue reading

Posted in python | Tagged , | Leave a comment

How to convert string with timezone info to date in python

In python, time.strftime() and time.strptime() can be used to format a date to string, and convert string to date. But it is thought buggy in the pyhon strptime() at 2.x version. For example, if you invoke strptime(), It does not … Continue reading

Posted in python, troubleshooting | Tagged | Leave a comment