Skip to content

Commit

Permalink
Removed curio from async.md (#2240)
Browse files Browse the repository at this point in the history
  • Loading branch information
kcoderhtml committed May 23, 2022
1 parent 14a1704 commit 940d61b
Showing 1 changed file with 0 additions and 21 deletions.
21 changes: 0 additions & 21 deletions docs/async.md
Expand Up @@ -170,27 +170,6 @@ trio.run(main)
The `trio` package must be installed to use the Trio backend.


### [Curio](https://github.com/dabeaz/curio)

Curio is a [coroutine-based library](https://curio.readthedocs.io/en/latest/tutorial.html)
for concurrent Python systems programming.

```python
import httpx
import curio

async def main():
async with httpx.AsyncClient() as client:
response = await client.get('https://www.example.com/')
print(response)

curio.run(main)
```

!!! important
The `curio` package must be installed to use the Curio backend.


### [AnyIO](https://github.com/agronholm/anyio)

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`).
Expand Down

0 comments on commit 940d61b

Please sign in to comment.