Metadata-Version: 2.1
Name: jj
Version: 2.0.0.dev1
Summary: UNKNOWN
Home-page: https://github.com/nikitanovosibirsk/jj
Author: Nikita Tsvetkov
Author-email: nikitanovosibirsk@yandex.com
License: Apache 2
Description: # jj
        
        [![License](https://img.shields.io/github/license/nikitanovosibirsk/jj.svg)](https://github.com/nikitanovosibirsk/jj)
        [![Drone](https://cloud.drone.io/api/badges/nikitanovosibirsk/jj/status.svg)](https://cloud.drone.io/nikitanovosibirsk/jj)
        [![Codecov](https://img.shields.io/codecov/c/github/nikitanovosibirsk/jj/master.svg)](https://codecov.io/gh/nikitanovosibirsk/jj)
        [![PyPI](https://img.shields.io/pypi/v/jj.svg)](https://pypi.python.org/pypi/jj/)
        [![Python Version](https://img.shields.io/pypi/pyversions/jj.svg)](https://pypi.python.org/pypi/jj/)
        
        ## Installation
        
        ```bash
        pip3 install jj==2.0.0-dev.1
        ```
        
        ## Usage
        
        ### No App
        
        ```python3
        import jj
        
        @jj.match("*")
        async def handler(request: jj.Request) -> jj.Response:
            return jj.Response(body="200 OK")
        
        jj.serve(port=8080)
        ```
        
        ### App
        
        ```python3
        import jj
        
        class App(jj.App):
            @jj.match("*")
            async def handler(request: jj.Request) -> jj.Response:
                return jj.Response(body="200 OK")
        
        jj.serve(App(), port=8080)
        ```
        
Platform: UNKNOWN
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Requires-Python: >=3.6.0
Description-Content-Type: text/markdown
