mingrammer / python-web-framework-stars

⭐️ Web frameworks for Python, most starred on Github
71 stars 13 forks source link

add Eve framework #5

Closed starlightdreamer closed 4 years ago

starlightdreamer commented 4 years ago

https://github.com/pyeve/eve https://docs.python-eve.org/en/stable/

Eve is an open source Python REST API framework designed for human beings. It allows to effortlessly build and deploy highly customizable, fully featured RESTful Web Services. Eve offers native support for MongoDB, and SQL backends via community extensions.

Has ~6k Github stars.

from eve import Eve

settings = {'DOMAIN': {'people': {}}}

app = Eve(settings=settings)
app.run()