Bump asyncreq version
This commit is contained in:
parent
e15e603608
commit
6577ec6a9b
|
@ -46,7 +46,7 @@ example_usage()
|
|||
The `request` method is a simplified wrapper around `make_request` with added error handling. It raises appropriate exceptions for common HTTP-related errors:
|
||||
|
||||
```python
|
||||
from your_library_name import request, HTTPException
|
||||
from asyncreq import request, HTTPException
|
||||
|
||||
async def example_usage():
|
||||
url = "https://api.example.com/resource"
|
||||
|
@ -65,12 +65,9 @@ async def example_usage():
|
|||
print(f"Response Headers: {response_headers}")
|
||||
except HTTPException as e:
|
||||
print(f"An HTTP error occurred: {e}")
|
||||
|
||||
# Run the example
|
||||
example_usage()
|
||||
```
|
||||
|
||||
Note: If you are running the code from an async function, make sure to use `await` as demonstrated in the examples above. If you are running the code outside of an async function, remove the `await` keyword.
|
||||
Note: make sure to use `await` as demonstrated in the examples above.
|
||||
|
||||
## Dependencies
|
||||
|
||||
|
|
|
@ -1 +1,3 @@
|
|||
from fastapi import HTTPException
|
||||
|
||||
from .network import make_request, request
|
Loading…
Reference in New Issue