Metadata-Version: 2.1
Name: FlaskEase
Version: 0.1.2
Summary: Flask extension for creating REST APIs and OpenAPI docs with ease, inspired from FastAPI.
Home-page: https://github.com/zero-shubham/flask-ease
Author: Shubham Biswas
Author-email: shubhambiswas.zero@gmail.com
License: MIT
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Description-Content-Type: text/markdown
Requires-Dist: flask (==1.1.2)
Requires-Dist: pydantic (==1.5.1)

# FlaskEase

[Flask](http://flask.pocoo.org/) extension for creating REST APIs and OpenAPI docs with ease, inspired from [FastAPI](https://fastapi.tiangolo.com/).

Checkout example [here](https://github.com/zero-shubham/flask-ease/example)

## Documentation

Documentation is coming soon :)

## Usage

<div class="termy">

```console
$ pip install FlaskEase

$ python example/main.py
```

</div>

Now go to <a href="http://127.0.0.1:5000/docs" class="external-link" target="_blank">http://127.0.0.1:5000/docs</a> to find SwaggerUI docs for your API.


