Tagged Questions
0
votes
1answer
2k views
Python and Twitter Bootstrap
I currently am working in CherryPy and have a connection to a mssql database using the pymssql library. I'm looking to create a fancy front end to display the table with fancy sort, edit, and update ...
1
vote
3answers
721 views
HTTP framework for a python based server serving mobile applications
I am working on building a python powered back-end server for a mobile application. I am using MongoDB hosted on the Cloud for storage. The communication between the Application and the server will be ...
5
votes
1answer
667 views
Why CherryPy session does not require a secret key?
I noticed that cherrypy session does not require a secret key configuration. On the contrary, Pylons session does: http://docs.pylonsproject.org/projects/pylons_framework/dev/sessions.html
I'm ...
3
votes
1answer
1k views
Distinguishing between GET and POST data in CherryPy?
I've been deciding between Python web frameworks for a project of mine and I've really liked how lightweight, flexible, and concise CherryPy is compared to others. The only problem I'm having is I ...
39
votes
7answers
8k views
Python Framework for small website
I am planning a small, simple website to showcase myself as an engineer. My preferred language is Python and I hope to use it to create my website.
My pages will be mostly static, with some database ...
10
votes
4answers
1k views
Why don't Django and CherryPy support HTTP verb-based dispatch natively?
It's not the same to POST to an URL than to GET it, DELETE it or PUT it. These actions are fundamentally different. However, Django seems to ignore them in its dispatch mechanism. Basically, one is ...
10
votes
4answers
2k views
Python Webframework Confusion
Could someone please explain to me how the current python webframworks fit together?
The three I've heard of are CherryPy, TurboGears and Pylons. However I'm confused because TurboGears seems to use ...
