Eynnyd (pronounced [Ey-nahyd]) is an acronym for Everything You Need, Nothing You Don't. It is a light-weight WSGI compliant python 3 web framework. Eynnyd was designed with the primary goal to not impose bad engineering decisions on it's users. It is also designed to not overstep or assume the wants of it's user.
This is the framework for you if the following sound good:
- You are permitted but not coerced into following REST.
- A
request handlertakes arequestand returns aresponse. - A
request interceptortakes arequestand returns arequest. - A
response interceptortakes arequestand aresponseand returns aresponse. - You can have any number of
request interceptors,request handlers, orresponse interceptors. - You can name your handler methods anything you want.
- You can limit the scope (paths it applies to) of any interceptor.
- We do not provide extraneous dependencies or opinions (like database connection libraries or templating engines)
- There is no Eynnyd way to do things.
- There is nothing clever or magic. (like global singletons or special decorators)
- You can see your entire routing layout, succinctly, in your main.
If this at all sounds good we recommend you keep reading and see what else Eynnyd can provide for you.
Read the documents at eynnyd.readthedocs.io
Eynnyd is published to pypi and can be installed using:
pip install eynnydEynnyd does not come with a built in WSGI HTTP server. We recommend gunicorn for running your application.
A simple hello world example looks like:
# hello_world_app.py
from eynnyd import RoutesBuilder
from eynnyd import EynnydWebappBuilder
from eynnyd import ResponseBuilder
from http import HTTPStatus
def hello_world(request):
return ResponseBuilder()\
.set_status(HTTPStatus.OK)\
.set_utf8_body("Hello World")\
.build()
def build_application():
routes = \
RoutesBuilder()\
.add_handler("GET", "/hello", hello_world)\
.build()
return EynnydWebappBuilder()\
.set_routes(routes)\
.build()
application = build_application()Using gunicorn this can now be run gunicorn hello_world_app.
# hello_world_app.py
import logging
from eynnyd import RoutesBuilder
from eynnyd import EynnydWebappBuilder
from eynnyd import ResponseBuilder
from http import HTTPStatus
LOG = logging.getLogger("hello_world_app")
def hello_world(request):
return ResponseBuilder()\
.set_status(HTTPStatus.OK)\
.set_utf8_body("Hello World")\
.build()
def log_request(request):
LOG.info("Got Request: {r}".format(r=request))
return request
def log_response(request, response):
LOG.info("Built Response: {s} for Request: {r}".format(s=response, r=request))
return response
def build_application():
routes = \
RoutesBuilder()\
.add_request_interceptor("/hello", log_request)\
.add_handler("GET", "/hello", hello_world)\
.add_response_interceptor("/hello", log_response)\
.build()
return EynnydWebappBuilder()\
.set_routes(routes)\
.build()
application = build_application()run:
pip install -r test_requirements.txtAfter installing the requirements run:
python -m unittest discover testsAfter installing the requirements run:
coverage run --source eynnyd/ -m unittest discover tests/
coverage report
