yeonjae-universal-http-api-client 1.0.1__tar.gz → 1.0.3__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {yeonjae_universal_http_api_client-1.0.1 → yeonjae_universal_http_api_client-1.0.3}/PKG-INFO +1 -1
- {yeonjae_universal_http_api_client-1.0.1 → yeonjae_universal_http_api_client-1.0.3}/pyproject.toml +3 -3
- {yeonjae_universal_http_api_client-1.0.1 → yeonjae_universal_http_api_client-1.0.3}/src/yeonjae_universal_http_api_client.egg-info/PKG-INFO +1 -1
- {yeonjae_universal_http_api_client-1.0.1 → yeonjae_universal_http_api_client-1.0.3}/tests/test_http_api_client.py +2 -2
- {yeonjae_universal_http_api_client-1.0.1 → yeonjae_universal_http_api_client-1.0.3}/README.md +0 -0
- {yeonjae_universal_http_api_client-1.0.1 → yeonjae_universal_http_api_client-1.0.3}/setup.cfg +0 -0
- {yeonjae_universal_http_api_client-1.0.1 → yeonjae_universal_http_api_client-1.0.3}/src/universal_http_api_client/__init__.py +0 -0
- {yeonjae_universal_http_api_client-1.0.1 → yeonjae_universal_http_api_client-1.0.3}/src/universal_http_api_client/adapters.py +0 -0
- {yeonjae_universal_http_api_client-1.0.1 → yeonjae_universal_http_api_client-1.0.3}/src/universal_http_api_client/client.py +0 -0
- {yeonjae_universal_http_api_client-1.0.1 → yeonjae_universal_http_api_client-1.0.3}/src/universal_http_api_client/exceptions.py +0 -0
- {yeonjae_universal_http_api_client-1.0.1 → yeonjae_universal_http_api_client-1.0.3}/src/universal_http_api_client/models.py +0 -0
- {yeonjae_universal_http_api_client-1.0.1 → yeonjae_universal_http_api_client-1.0.3}/src/universal_http_api_client/py.typed +0 -0
- {yeonjae_universal_http_api_client-1.0.1 → yeonjae_universal_http_api_client-1.0.3}/src/universal_http_api_client/utils.py +0 -0
- {yeonjae_universal_http_api_client-1.0.1 → yeonjae_universal_http_api_client-1.0.3}/src/yeonjae_universal_http_api_client.egg-info/SOURCES.txt +0 -0
- {yeonjae_universal_http_api_client-1.0.1 → yeonjae_universal_http_api_client-1.0.3}/src/yeonjae_universal_http_api_client.egg-info/dependency_links.txt +0 -0
- {yeonjae_universal_http_api_client-1.0.1 → yeonjae_universal_http_api_client-1.0.3}/src/yeonjae_universal_http_api_client.egg-info/requires.txt +0 -0
- {yeonjae_universal_http_api_client-1.0.1 → yeonjae_universal_http_api_client-1.0.3}/src/yeonjae_universal_http_api_client.egg-info/top_level.txt +0 -0
- {yeonjae_universal_http_api_client-1.0.1 → yeonjae_universal_http_api_client-1.0.3}/tests/test_basic.py +0 -0
{yeonjae_universal_http_api_client-1.0.1 → yeonjae_universal_http_api_client-1.0.3}/pyproject.toml
RENAMED
@@ -4,9 +4,9 @@ build-backend = "setuptools.build_meta"
|
|
4
4
|
|
5
5
|
[project]
|
6
6
|
name = "yeonjae-universal-http-api-client"
|
7
|
-
version = "1.0.
|
7
|
+
version = "1.0.3"
|
8
8
|
description = "Universal HTTP API client supporting GitHub, GitLab, Bitbucket and other platforms"
|
9
|
-
readme = "README.md"
|
9
|
+
readme = {file = "README.md", content-type = "text/markdown"}
|
10
10
|
license = {text = "MIT"}
|
11
11
|
authors = [
|
12
12
|
{name = "CodePing.AI Team", email = "contact@codeping.ai"}
|
@@ -67,7 +67,7 @@ profile = "black"
|
|
67
67
|
line_length = 88
|
68
68
|
|
69
69
|
[tool.mypy]
|
70
|
-
python_version = "3
|
70
|
+
python_version = "1.0.3"
|
71
71
|
warn_return_any = true
|
72
72
|
warn_unused_configs = true
|
73
73
|
disallow_untyped_defs = true
|
@@ -222,7 +222,7 @@ class TestHTTPAPIClient:
|
|
222
222
|
def test_timeout_handling(self, github_client):
|
223
223
|
"""타임아웃 처리 테스트"""
|
224
224
|
with requests_mock.Mocker() as m:
|
225
|
-
from
|
225
|
+
from universal_http_api_client.exceptions import TimeoutError as APITimeoutError
|
226
226
|
|
227
227
|
# requests.exceptions.Timeout을 발생시키도록 설정
|
228
228
|
m.get(
|
@@ -236,7 +236,7 @@ class TestHTTPAPIClient:
|
|
236
236
|
def test_network_error_handling(self, github_client):
|
237
237
|
"""네트워크 에러 처리 테스트"""
|
238
238
|
with requests_mock.Mocker() as m:
|
239
|
-
from
|
239
|
+
from universal_http_api_client.exceptions import NetworkError
|
240
240
|
|
241
241
|
m.get(
|
242
242
|
"https://api.github.com/repos/test/repo/commits/abc123",
|
{yeonjae_universal_http_api_client-1.0.1 → yeonjae_universal_http_api_client-1.0.3}/README.md
RENAMED
File without changes
|
{yeonjae_universal_http_api_client-1.0.1 → yeonjae_universal_http_api_client-1.0.3}/setup.cfg
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|