.. yli documentation master file, created by sphinx-quickstart on Sun Nov 17 02:51:09 2019. You can adapt this file completely to your liking, but it should at least contain the root `toctree` directive. Welcome to yli's documentation! =============================== ``yli`` is a simplistic Python 3.7+ library for writing web apps. yli operates on the guiding principle of: **Your web server is a function.** This means that your web app can be represented with the following signature: .. code-block:: python3 async def app(request: Request) -> Response: ... Installation ------------ yli is available on PyPI under ``yli``: .. code-block:: bash $ poetry add yli Or for the latest development version: .. code-block:: bash $ poetry add git+https://github.com/Fuyukai/yli.git .. toctree:: :maxdepth: 2 tutorial/guide tutorial/serving