Skip to content

Latest commit

 

History

49 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.

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

About

A simple backend web framework to build faster web apps.

Resources

Contributing

Stars

0 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages