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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: kirimel-python
3
- Version: 0.1.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://api.kirimel.com/v2',
49
+ base_url='https://kirimel.com',
50
50
  timeout=30,
51
51
  retries=3
52
52
  )
@@ -16,7 +16,7 @@ import kirimel
16
16
  # Initialize the client
17
17
  client = kirimel.KiriMel(
18
18
  api_key='sk_test_xxx', # Or set KIRIMEL_API_KEY env variable
19
- base_url='https://api.kirimel.com/v2',
19
+ base_url='https://kirimel.com',
20
20
  timeout=30,
21
21
  retries=3
22
22
  )
@@ -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://api.kirimel.com/v2",
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://api.kirimel.com/v2)
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
  """
@@ -16,7 +16,7 @@ class HttpClient:
16
16
  def __init__(
17
17
  self,
18
18
  api_key: Optional[str] = None,
19
- base_url: str = "https://api.kirimel.com/v2",
19
+ base_url: str = "https://kirimel.com",
20
20
  timeout: int = 30,
21
21
  retries: int = 3,
22
22
  ):
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: kirimel-python
3
- Version: 0.1.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://api.kirimel.com/v2',
49
+ base_url='https://kirimel.com',
50
50
  timeout=30,
51
51
  retries=3
52
52
  )
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "kirimel-python"
3
- version = "0.1.1"
3
+ version = "0.1.2"
4
4
  description = "Official KiriMel Python SDK"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.8"
File without changes
File without changes