diff --git a/README.rst b/README.rst index 4c9bd3e..57dd653 100644 --- a/README.rst +++ b/README.rst @@ -53,9 +53,15 @@ manually creating an asyncio event loop: .. code:: python + import asyncio import uvloop + async def main(): + # Main entry-point. + ... + uvloop.install() + asyncio.run(main()) Building From Source