Tagged Questions
The wsgiserver tag has no wiki summary.
3
votes
1answer
612 views
Spawning WSGI example (practical approach to WSGI)
I'm trying to understand how WSGI works. I know I could read the specs, but I'd still want to know how do I create a spawning application? A complete "hello world".
Could someone show me an example?
...
0
votes
2answers
4k views
WSGIServer errors when trying to run Django app
Firstly, here's my script:
#!/usr/bin/python
import sys, os
sys.path.append('/home/username/python')
sys.path.append("/home/username/python/flup")
sys.path.append("/home/username/python/django")
# ...