Skip to content

codeverything/radox

Repository files navigation

Your next web framework for python web applications.

Radox is a light weight WSGI based web framework for ypthon web applications. It provides a basic routing.

Installing

$ pip install git+https://github.com/codeverything/radox.git

Example:

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()

Server-Info

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

Links

License

Code and documentation are available according to the MIT License (see LICENSE).