The Highly-Reflective Object-Oriented Python Web Framework
Project description
Jivago Framework - The Highly-Reflective Object-Oriented Python Web Framework
Jivago is an object-oriented, highly-reflective Python framework for building web applications. It relies heavily on type annotations and decorators to enforce typing, providing package auto-discovery and dependency injection out of the box. This leads to less boilerplate code, while maintaining loose-coupling across components.
Also includes other Java-esque goodies, such as stream operations!
Find the documentation over at jivago.readthedocs.io.
Minimal Jivago Application
from jivago.jivago_application import JivagoApplication
from jivago.wsgi.annotations import Resource
from jivago.wsgi.methods import GET
@Resource("/")
class HelloResource(object):
@GET
def get_hello(self) -> str:
return "Hello World!"
app = JivagoApplication()
if __name__ == '__main__':
app.run_dev()
Installation
Requires Python3.6 or greater.
pip install jivago
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
jivago-0.3.4.tar.gz
(19.4 kB
view hashes)