Metadata-Version: 2.4
Name: micropie
Version: 0.16
Summary: An ultra micro ASGI web framework
Keywords: micropie,asgi,microframework,http
Author-email: Harrison Erd <harrisonerd@gmail.com>
Description-Content-Type: text/markdown
Classifier: Framework :: AsyncIO
Classifier: Environment :: Web Environment
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
License-File: LICENSE
Requires-Dist: jinja2 ; extra == "all"
Requires-Dist: multipart ; extra == "all"
Requires-Dist: orjson ; extra == "all"
Requires-Dist: uvicorn ; extra == "all"
Requires-Dist: jinja2 ; extra == "standard"
Requires-Dist: multipart ; extra == "standard"
Project-URL: Homepage, https://patx.github.io/micropie
Project-URL: Repository, https://github.com/patx/micropie
Provides-Extra: all
Provides-Extra: standard

[![Logo](https://patx.github.io/micropie/logo.png)](https://patx.github.io/micropie)

micropie is an ultra-micro ASGI Python web framework that gets out of your way, 
letting you build fast and dynamic web apps with ease. Inspired by CherryPy and
licensed under the BSD three-clause license.

### MicroPie is Fun
```python
from MicroPie import App

class MyApp(App):

    async def index(self):
        return "Hello World!"

app = MyApp()  # Run with `uvicorn app:app`
```

### And Easy to Install
```bash
$ pip install micropie
```

