The Web API toolkit. ๐
https://github.com/encode/apistar.git
A smart Web API framework, for Python 3.
Documentation: https://docs.apistar.com ๐
Why might you consider using API Star for your next Web API project?
Install API Star:
$ pip3 install apistar
Create a new project in app.py:
from apistar import App, Route
def welcome(name=None):
if name is None:
return {'message': 'Welcome to API Star!'}
return {'message': 'Welcome to API Star, %s!' % name}
routes = [
Route('/', method='GET', handler=welcome),
]
app = App(routes=routes)
if __name__ == '__main__':
app.serve('127.0.0.1', 5000, debug=True)
Open http://127.0.0.1:5000/docs/ in your browser:
API Star is BSD licensed code.
Designed & built in Brighton, England.