-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
WSGI protocol #2
Comments
How does it work?Well, python has a protocol standart on conversations between Web Applciations and App Servers which is called WSGI which stands for Web Server Gateway Interface. This was introduced on PEP 333 that explains how this communication would work. At the very low level the communication works like this:
The entrypoint of the Framework will be a function that will get a There is another better way to implement it, still with pure python, using the Well, this is not ideal because you must deal with everything, even the pathing to the static files, but with a simple project like this is easy to have fun doing those low-level stuff. As App Server I'm using the |
Take a look at the project https://github.com/igormcsouza/pure-todo |
Describe how python implements PEP 333 (the wisg protocol) for http comunication
The text was updated successfully, but these errors were encountered: