Blazingly fast & beautifully expressive Web APIs
Project description
A smart Web API framework, for Python 3.
Community: https://discuss.apistar.org ๐ค ๐ญ ๐ค ๐ฌ ๐
Documentation: https://docs.apistar.com ๐
Features
Why might you consider using API Star for your next Web API project?
- Schema generation - Support for automatically generating OpenAPI schemas.
- Expressive - Type annotated views, that make for expressive, testable code.
- Performance - Dynamic behaviour for determining how to run each view makes API Star incredibly efficient.
- Throughput - Support for asyncio allows for building high-throughput non-blocking applications.
Quickstart
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.
Project details
Release history Release notifications
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Filename, size & hash SHA256 hash help | File type | Python version | Upload date |
---|---|---|---|
apistar-0.5.33.tar.gz (592.2 kB) Copy SHA256 hash SHA256 | Source | None |