Skip to content

Commit 940d61b

Browse files
Removed curio from async.md (#2240)
1 parent 14a1704 commit 940d61b

File tree

1 file changed

+0
-21
lines changed

1 file changed

+0
-21
lines changed

docs/async.md

-21
Original file line numberDiff line numberDiff line change
@@ -170,27 +170,6 @@ trio.run(main)
170170
The `trio` package must be installed to use the Trio backend.
171171

172172

173-
### [Curio](https://github.com/dabeaz/curio)
174-
175-
Curio is a [coroutine-based library](https://curio.readthedocs.io/en/latest/tutorial.html)
176-
for concurrent Python systems programming.
177-
178-
```python
179-
import httpx
180-
import curio
181-
182-
async def main():
183-
async with httpx.AsyncClient() as client:
184-
response = await client.get('https://www.example.com/')
185-
print(response)
186-
187-
curio.run(main)
188-
```
189-
190-
!!! important
191-
The `curio` package must be installed to use the Curio backend.
192-
193-
194173
### [AnyIO](https://github.com/agronholm/anyio)
195174

196175
AnyIO is an [asynchronous networking and concurrency library](https://anyio.readthedocs.io/) that works on top of either `asyncio` or `trio`. It blends in with native libraries of your chosen backend (defaults to `asyncio`).

0 commit comments

Comments
 (0)