0 purchases
redfox 1.2
Redfox provides a simple, declarative routing mechanism for creating
WSGI entry points into applications. It’s broadly similar to
microframeworks like juno or CherryPy.
Features
It’s tiny. The redfox package contains under 100 lines of code.
Redfox builds heavily on the Werkzeug tools to implement its features,
rather than re-reinventing the wheel.
It’s clean. The following is a valid Redfox application class:
from werkzeug import Response
from redfox import WebApplication
from redfox.routing import get, post
class Example(WebApplication):
@get('/')
def index(self, request):
return Response("Hello, world!")
It’s minimal. Redfox does not impose a persistance mechanism, or a
view mechanism. Bring your own, or create your own tools.
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.