sharpapi-python-client 1.0.0__py3-none-any.whl → 1.0.1__py3-none-any.whl

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.
sharpapi/__init__.py CHANGED
@@ -1,13 +1,25 @@
1
- # sharpapi/__init__.py
1
+ # src/sharpapi/__init__.py
2
2
 
3
- """
4
- SharpAPI Python SDK Package Initialization
5
- """
6
-
7
- # Import the main service class for easy access
8
3
  from .sharp_api_service import SharpApiService
4
+ from .dto import (
5
+ JobDescriptionParameters,
6
+ SharpApiJob,
7
+ SharpApiSubscriptionInfo
8
+ )
9
+ from .enums import (
10
+ SharpApiJobStatusEnum,
11
+ SharpApiJobTypeEnum,
12
+ SharpApiLanguages,
13
+ SharpApiVoiceTone
14
+ )
9
15
 
10
- # Import subpackages
11
- from . import dto
12
- from . import enums
13
-
16
+ __all__ = [
17
+ "SharpApiService",
18
+ "JobDescriptionParameters",
19
+ "SharpApiJob",
20
+ "SharpApiSubscriptionInfo",
21
+ "SharpApiJobStatusEnum",
22
+ "SharpApiJobTypeEnum",
23
+ "SharpApiLanguages",
24
+ "SharpApiVoiceTone",
25
+ ]
sharpapi/dto/__init__.py CHANGED
@@ -1,10 +1,11 @@
1
- # sharpapi/dto/__init__.py
1
+ # src/sharpapi/dto/__init__.py
2
2
 
3
- """
4
- Data Transfer Objects (DTO) Package Initialization
5
- """
6
-
7
- # Import DTO classes for easy access
8
3
  from .job_description_parameters import JobDescriptionParameters
9
4
  from .sharp_api_job import SharpApiJob
10
5
  from .sharp_api_subscription_info import SharpApiSubscriptionInfo
6
+
7
+ __all__ = [
8
+ "JobDescriptionParameters",
9
+ "SharpApiJob",
10
+ "SharpApiSubscriptionInfo",
11
+ ]
@@ -1,10 +1,13 @@
1
- # sharpapi/enums/__init__.py
1
+ # src/sharpapi/enums/__init__.py
2
2
 
3
- """
4
- Enumerations Package Initialization
5
- """
6
3
  from .sharp_api_job_status_enum import SharpApiJobStatusEnum
7
4
  from .sharp_api_job_type_enum import SharpApiJobTypeEnum
8
5
  from .sharp_api_languages import SharpApiLanguages
9
6
  from .sharp_api_voice_tone import SharpApiVoiceTone
10
7
 
8
+ __all__ = [
9
+ "SharpApiJobStatusEnum",
10
+ "SharpApiJobTypeEnum",
11
+ "SharpApiLanguages",
12
+ "SharpApiVoiceTone",
13
+ ]
@@ -6,4 +6,3 @@ class SharpApiJobStatusEnum(Enum):
6
6
  PENDING = 'pending'
7
7
  FAILED = 'failed'
8
8
  SUCCESS = 'success'
9
-
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: sharpapi-python-client
3
- Version: 1.0.0
3
+ Version: 1.0.1
4
4
  Summary: SharpAPI.com Python SDK Client - AI-Powered Workflow Automation API.
5
5
  Home-page: https://sharpapi.com
6
6
  License: MIT
@@ -1,15 +1,15 @@
1
- sharpapi/__init__.py,sha256=us2ilihl3y9asxDQ_0iQotpChLgylBCv2qc8bqcJQbE,232
2
- sharpapi/dto/__init__.py,sha256=sb_NLkcBcUpPooxWgD3kxBg9lX_sU6WzHbvy0TW-Ztc,295
1
+ sharpapi/__init__.py,sha256=Y2vWvcaOq2qOgCWI7sIzsMfI7a6X9OScVg7qtVeRwjU,519
2
+ sharpapi/dto/__init__.py,sha256=v3avLBB8FBaljcR6-TJp3lMDG3ACQeUAKbwIoM4eu5c,300
3
3
  sharpapi/dto/job_description_parameters.py,sha256=psWlUosGUXb33_cJdUh0YvxJ_cC5ACTRMLJe00obGl8,1598
4
4
  sharpapi/dto/sharp_api_job.py,sha256=_klqvZOODUFdygOwWS14Xo7nHr2g3i70FDpONzM87ME,637
5
5
  sharpapi/dto/sharp_api_subscription_info.py,sha256=0NSjlc5eV2TqMAfkW2I-Z-IaM7JNRLlSmeuKvpmEoqs,752
6
- sharpapi/enums/__init__.py,sha256=JCQrLOz9ggWZnkzQeIynzGrmov-K1x2XG5Kp9VDfy6c,296
7
- sharpapi/enums/sharp_api_job_status_enum.py,sha256=Q4FWvu3yKhBdGUHMY3xC9NkX-BcLn5IHn-lQs5DNZuQ,146
6
+ sharpapi/enums/__init__.py,sha256=rFzI7vmgNf7ngkLWmhlQWG7dArKHwysk4XVHDwBrJUY,376
7
+ sharpapi/enums/sharp_api_job_status_enum.py,sha256=60ywaaQcSDz2eJo3kqudkLrsjBWhPLy7C0d2z9cThjo,145
8
8
  sharpapi/enums/sharp_api_job_type_enum.py,sha256=VZInrmlMA3EZitphR2hbKx7hHYdBvq5ERhO1U4VNADM,2402
9
9
  sharpapi/enums/sharp_api_languages.py,sha256=iXGqC_r3BCbkaRujt4-XtA4Z-P740oweWTrufh4BnWY,2010
10
10
  sharpapi/enums/sharp_api_voice_tone.py,sha256=usxkl8vjqz245QetPPBipFtCQdf7TbOxeYpU2yNuMbA,1588
11
11
  sharpapi/sharp_api_service.py,sha256=g6sZyvkxZf8z9SdsYbp38rDz8alSCskO5SZBNwkhIBI,11524
12
- sharpapi_python_client-1.0.0.dist-info/LICENSE,sha256=3pbYZOuBipiNLRLRTNpwvps8ry8O6cMvGxw6S29e-Dg,1078
13
- sharpapi_python_client-1.0.0.dist-info/METADATA,sha256=GJy0I0Q15PsfJ9ey4AG8iD1MRUts3d-RdV0jGZtYzE0,3297
14
- sharpapi_python_client-1.0.0.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
15
- sharpapi_python_client-1.0.0.dist-info/RECORD,,
12
+ sharpapi_python_client-1.0.1.dist-info/LICENSE,sha256=3pbYZOuBipiNLRLRTNpwvps8ry8O6cMvGxw6S29e-Dg,1078
13
+ sharpapi_python_client-1.0.1.dist-info/METADATA,sha256=5OGIiJ41hR6IRyRZMXTYT8hGy2VkN5fAZBXFsswGD_M,3297
14
+ sharpapi_python_client-1.0.1.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
15
+ sharpapi_python_client-1.0.1.dist-info/RECORD,,