apistar 0.5.27
pip install apistar==0.5.27
Newer version available (0.7.2)
Released:
Blazingly fast & beautifully expressive Web APIs
Navigation
Unverified details
These details have not been verified by PyPIProject links
Meta
- License: BSD License (BSD)
- Author: Tom Christie
Classifiers
- Development Status
- Environment
- Intended Audience
- License
- Operating System
- Programming Language
- Topic
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
Unverified details
These details have not been verified by PyPIProject links
Meta
- License: BSD License (BSD)
- Author: Tom Christie
Classifiers
- Development Status
- Environment
- Intended Audience
- License
- Operating System
- Programming Language
- Topic
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
File details
Details for the file apistar-0.5.27.tar.gz.
File metadata
- Download URL: apistar-0.5.27.tar.gz
- Upload date:
- Size: 590.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
abf119973b2b36533f10e9d7ad5f17791b7639b841625610f159274edd5bc918
|
|
| MD5 |
d27ad79c0adef9f8bc312c49b8d70044
|
|
| BLAKE2b-256 |
0a48e4c6a562e697654b840819d2271dadbd69ad58f2d6bd3f3c81c74ea1f332
|