Your next web framework for python web applications.
Radox is a light weight WSGI based web framework for python web applications. It provides a basic routing.
$ pip install git+https://github.com/codeverything/radox.git
from wsgiref.simple_server import make_server
from radox import app
app = radox()
@app.route("/")
def index():
return "Hello Radox"
if __name__=='__main__':
server = make_server('127.0.0.1',3301,app)
server.serve_forever()
Your Project is ready and serving now
WARNING!! This is a Development server don't use it on production
-> Running server at http://127.0.0.1:3301
-> Press Ctrl+C to exit
- Source Code - https://github.com/codeverything/radox.git
- Pypi - https://pypi.org/project/radox/
- Issues - https://github.com/codeverything/radox/issues
- Discord - https://discord.gg/wDXSgZ5JRZ
- Site - https://codeverything.github.io/radox/
Code and documentation are available according to the MIT License (see LICENSE).