From 6577ec6a9b8687a5a0240ac29847e8310763ffb1 Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Fri, 27 Oct 2023 12:30:43 -0300 Subject: [PATCH] Bump asyncreq version --- README.md | 7 ++----- {src/asyncreq => asyncreq}/__init__.py | 2 ++ {src/asyncreq => asyncreq}/network.py | 0 3 files changed, 4 insertions(+), 5 deletions(-) rename {src/asyncreq => asyncreq}/__init__.py (55%) rename {src/asyncreq => asyncreq}/network.py (100%) 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