Metadata-Version: 2.1
Name: fastapi-app-ext
Version: 0.1.3
Summary: The extended function library of fastapi can be read README.md
Home-page: https://github.com/hgz1989/fastapi-app-ext
Author: HanGuangZheng
Author-email: hanguangzheng@qq.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: fastapi>=0.114.0
Requires-Dist: fastapi-cli>=0.0.5

# FastAPI AppExt

---

**Source Code**: <a href="https://github.com/hgz1989/fastapi-app-ext" target="_blank">https://github.com/hgz1989/fastapi-app-ext</a>

---

Installation
------------

``pip install fastapi-app-ext``


Hello World Example
-------------------

.. code:: python

    from fastapi import FastAPI
    from fastapi-app-ext import AppExt

    app = FastAPI(title='Hollo World Example')
    AppExt(app)

    @app.get('/')
    async def index():
        return {'hello': 'world'}

    if __name__ == '__main__':
        import uvicorn

        uvicorn.run(app)
