Blazingly fast & beautifully expressive Web APIs
Project description
A smart Web API framework, for Python 3.
Community: https://discuss.apistar.org 🤔 💭 🤓 💬 😎
Documentation: https://docs.webtypes.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 webtypes
Create a new project in app.py
:
from webtypes 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 | 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
webtypes-0.5.42.tar.gz
(590.9 kB
view details)
File details
Details for the file webtypes-0.5.42.tar.gz
.
File metadata
- Download URL: webtypes-0.5.42.tar.gz
- Upload date:
- Size: 590.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.21.0 setuptools/40.6.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d10bad18dd32150db228c7976489b22408c91759e8abb612bc50d9402a22b5bf |
|
MD5 | 0ecd0b2be64c0ad6b238e655cbb672ba |
|
BLAKE2b-256 | 0cbf1ce5c509ef068d3b01a837ff42448f6582c3341565f96a9cfa5cdcc8d0ac |