diff --git a/README.md b/README.md index c80a4cc..a0cf173 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/src/asyncreq/__init__.py b/asyncreq/__init__.py similarity index 55% rename from src/asyncreq/__init__.py rename to asyncreq/__init__.py index e26568b..b62a273 100644 --- a/src/asyncreq/__init__.py +++ b/asyncreq/__init__.py @@ -1 +1,3 @@ +from fastapi import HTTPException + from .network import make_request, request diff --git a/src/asyncreq/network.py b/asyncreq/network.py similarity index 100% rename from src/asyncreq/network.py rename to asyncreq/network.py