kirimel-python 0.1.1__tar.gz → 0.1.2__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.
- {kirimel_python-0.1.1 → kirimel_python-0.1.2}/PKG-INFO +2 -2
- {kirimel_python-0.1.1 → kirimel_python-0.1.2}/README.md +1 -1
- {kirimel_python-0.1.1 → kirimel_python-0.1.2}/kirimel/client.py +2 -2
- {kirimel_python-0.1.1 → kirimel_python-0.1.2}/kirimel/http_client.py +1 -1
- {kirimel_python-0.1.1 → kirimel_python-0.1.2}/kirimel_python.egg-info/PKG-INFO +2 -2
- {kirimel_python-0.1.1 → kirimel_python-0.1.2}/pyproject.toml +1 -1
- {kirimel_python-0.1.1 → kirimel_python-0.1.2}/LICENSE +0 -0
- {kirimel_python-0.1.1 → kirimel_python-0.1.2}/kirimel/__init__.py +0 -0
- {kirimel_python-0.1.1 → kirimel_python-0.1.2}/kirimel/exceptions.py +0 -0
- {kirimel_python-0.1.1 → kirimel_python-0.1.2}/kirimel/resources/__init__.py +0 -0
- {kirimel_python-0.1.1 → kirimel_python-0.1.2}/kirimel_python.egg-info/SOURCES.txt +0 -0
- {kirimel_python-0.1.1 → kirimel_python-0.1.2}/kirimel_python.egg-info/dependency_links.txt +0 -0
- {kirimel_python-0.1.1 → kirimel_python-0.1.2}/kirimel_python.egg-info/requires.txt +0 -0
- {kirimel_python-0.1.1 → kirimel_python-0.1.2}/kirimel_python.egg-info/top_level.txt +0 -0
- {kirimel_python-0.1.1 → kirimel_python-0.1.2}/setup.cfg +0 -0
- {kirimel_python-0.1.1 → kirimel_python-0.1.2}/tests/test_client.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: kirimel-python
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.2
|
|
4
4
|
Summary: Official KiriMel Python SDK
|
|
5
5
|
Author-email: KiriMel <support@kirimel.com>
|
|
6
6
|
License: MIT
|
|
@@ -46,7 +46,7 @@ import kirimel
|
|
|
46
46
|
# Initialize the client
|
|
47
47
|
client = kirimel.KiriMel(
|
|
48
48
|
api_key='sk_test_xxx', # Or set KIRIMEL_API_KEY env variable
|
|
49
|
-
base_url='https://
|
|
49
|
+
base_url='https://kirimel.com',
|
|
50
50
|
timeout=30,
|
|
51
51
|
retries=3
|
|
52
52
|
)
|
|
@@ -29,7 +29,7 @@ class KiriMel:
|
|
|
29
29
|
def __init__(
|
|
30
30
|
self,
|
|
31
31
|
api_key: Optional[str] = None,
|
|
32
|
-
base_url: str = "https://
|
|
32
|
+
base_url: str = "https://kirimel.com",
|
|
33
33
|
timeout: int = 30,
|
|
34
34
|
retries: int = 3,
|
|
35
35
|
):
|
|
@@ -38,7 +38,7 @@ class KiriMel:
|
|
|
38
38
|
|
|
39
39
|
Args:
|
|
40
40
|
api_key: API key (or use KIRIMEL_API_KEY env variable)
|
|
41
|
-
base_url: Base URL (default: https://
|
|
41
|
+
base_url: Base URL (default: https://kirimel.com)
|
|
42
42
|
timeout: Request timeout in seconds (default: 30)
|
|
43
43
|
retries: Number of retries (default: 3)
|
|
44
44
|
"""
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: kirimel-python
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.2
|
|
4
4
|
Summary: Official KiriMel Python SDK
|
|
5
5
|
Author-email: KiriMel <support@kirimel.com>
|
|
6
6
|
License: MIT
|
|
@@ -46,7 +46,7 @@ import kirimel
|
|
|
46
46
|
# Initialize the client
|
|
47
47
|
client = kirimel.KiriMel(
|
|
48
48
|
api_key='sk_test_xxx', # Or set KIRIMEL_API_KEY env variable
|
|
49
|
-
base_url='https://
|
|
49
|
+
base_url='https://kirimel.com',
|
|
50
50
|
timeout=30,
|
|
51
51
|
retries=3
|
|
52
52
|
)
|
|
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
|