Bump asyncreq version

This commit is contained in:
Santiago Lo Coco 2023-10-27 12:30:43 -03:00
parent e15e603608
commit 6577ec6a9b
3 changed files with 4 additions and 5 deletions

View File

@ -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: The `request` method is a simplified wrapper around `make_request` with added error handling. It raises appropriate exceptions for common HTTP-related errors:
```python ```python
from your_library_name import request, HTTPException from asyncreq import request, HTTPException
async def example_usage(): async def example_usage():
url = "https://api.example.com/resource" url = "https://api.example.com/resource"
@ -65,12 +65,9 @@ async def example_usage():
print(f"Response Headers: {response_headers}") print(f"Response Headers: {response_headers}")
except HTTPException as e: except HTTPException as e:
print(f"An HTTP error occurred: {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 ## Dependencies

View File

@ -1 +1,3 @@
from fastapi import HTTPException
from .network import make_request, request from .network import make_request, request