brennv / apistar

A smart Web API framework, for Python 3. 🌟

Home Page:https://docs.apistar.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

API Star

A smart Web API framework, for Python 3.

Build Status codecov Package version


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 documentation


API Star is BSD licensed code.
Designed & built in Brighton, England.

API Star

About

A smart Web API framework, for Python 3. 🌟

https://docs.apistar.com

License:BSD 3-Clause "New" or "Revised" License


Languages

Language:Python 71.3%Language:CSS 12.9%Language:HTML 11.2%Language:JavaScript 4.2%Language:Shell 0.4%