Skip to content

Instantly share code, notes, and snippets.

@vskrachkov
Created November 30, 2019 23:11
Show Gist options
  • Save vskrachkov/d3bcad9eaa71d63b5b43d014fa98734f to your computer and use it in GitHub Desktop.
Save vskrachkov/d3bcad9eaa71d63b5b43d014fa98734f to your computer and use it in GitHub Desktop.
Create awaitable object in Python
import asyncio
class Awaitable:
def __await__(self):
yield
async def main():
await Awaitable()
asyncio.run(main())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment