``` import asyncio from memory_profiler import profile @profile async def func(): pass if __name__ == '__main__': asyncio.get_event_loop().run_until_complete(func()) ```