https://github.com/teaglebuilt/maverick
Building a python web framework with Gunicorn
https://github.com/teaglebuilt/maverick
http-framework python-framework wsgi
Last synced: 12 months ago
JSON representation
Building a python web framework with Gunicorn
- Host: GitHub
- URL: https://github.com/teaglebuilt/maverick
- Owner: teaglebuilt
- Created: 2019-09-18T20:15:37.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2022-12-08T06:38:21.000Z (about 3 years ago)
- Last Synced: 2025-01-14T06:15:25.486Z (about 1 year ago)
- Topics: http-framework, python-framework, wsgi
- Language: Python
- Size: 15.6 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.rst
- Changelog: CHANGELOG
- Contributing: CONTRIBUTING.rst
Awesome Lists containing this project
README
===========================
MAVERICK
===========================
This is a `Python ` web framework in the making:
As of now, there is a callable object that expects two parameters "environ" && start_response".
Then returns a WSGI compatible response
Look how easy it is to use:
.. code-block:: python
from api import API
app = API()
@app.route('/')
def home(request, response):
response.text = "Hello from home page"
@app.route('/about')
def about(request, response):
response.text = "Hello from the About Page"