We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 713f63b commit 109d8f1Copy full SHA for 109d8f1
intro/example_magic.py
@@ -0,0 +1,12 @@
1
+import asyncio
2
+
3
+from util import delay
4
5
6
+async def main()-> None:
7
+ print('1')
8
+ result = asyncio.create_task(delay(2))
9
+ await delay(3)
10
+ print('2')
11
12
+asyncio.run(main())
pyproject.toml
@@ -6,7 +6,13 @@ readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"aiohttp>=3.11.12",
+ "asyncpg>=0.30.0",
+ "flask>=3.1.0",
+ "gunicorn>=23.0.0",
+ "psycopg2-binary>=2.9.10",
13
"requests>=2.32.3",
14
+ "starlette>=0.46.0",
15
+ "uvicorn>=0.34.0",
16
]
17
18
[dependency-groups]
0 commit comments