Metadata-Version: 2.1
Name: apistar
Version: 0.5.11
Summary: Blazingly fast & beautifully expressive Web APIs
Home-page: http://www.encode.io/apistar/
Author: Tom Christie
Author-email: tom@tomchristie.com
License: BSD
Description: <p align="center">
            <img src="https://raw.githubusercontent.com/encode/apistar/master/docs/img/logo-200-square-light.png" alt="API Star" />
        </p>
        <p align="center">
            <em>A smart Web API framework, for Python 3.</em>
        </p>
        <p align="center">
        <a href="https://travis-ci.org/encode/apistar">
            <img src="https://travis-ci.org/encode/apistar.svg?branch=master" alt="Build Status">
        </a>
        <a href="https://codecov.io/gh/encode/apistar">
            <img src="https://codecov.io/gh/encode/apistar/branch/master/graph/badge.svg" alt="codecov">
        </a>
        <a href="https://pypi.python.org/pypi/apistar">
            <img src="https://badge.fury.io/py/apistar.svg" alt="Package version">
        </a>
        </p>
        
        ---
        
        **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:
        
        ```bash
        $ pip3 install apistar
        ```
        
        Create a new project in `app.py`:
        
        ```python
        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](https://raw.githubusercontent.com/encode/apistar/master/docs/img/api-docs.png)
        
        ---
        
        <p align="center"><i>API Star is <a href="https://github.com/tomchristie/apistar/blob/master/LICENSE.md">BSD licensed</a> code.<br/>Designed & built in Brighton, England.</i>
        <p align="center">
            <img src="https://raw.githubusercontent.com/encode/apistar/master/docs/img/ident-44-square-light.png" alt="API Star" />
        </p>
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Description-Content-Type: text/markdown
