sharpapi-python-client 1.0.0__tar.gz → 1.0.1__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.
Files changed (16) hide show
  1. {sharpapi_python_client-1.0.0 → sharpapi_python_client-1.0.1}/PKG-INFO +1 -1
  2. {sharpapi_python_client-1.0.0 → sharpapi_python_client-1.0.1}/pyproject.toml +1 -4
  3. sharpapi_python_client-1.0.1/src/sharpapi/__init__.py +25 -0
  4. {sharpapi_python_client-1.0.0 → sharpapi_python_client-1.0.1}/src/sharpapi/dto/__init__.py +7 -6
  5. {sharpapi_python_client-1.0.0 → sharpapi_python_client-1.0.1}/src/sharpapi/enums/__init__.py +7 -4
  6. {sharpapi_python_client-1.0.0 → sharpapi_python_client-1.0.1}/src/sharpapi/enums/sharp_api_job_status_enum.py +0 -1
  7. sharpapi_python_client-1.0.0/src/sharpapi/__init__.py +0 -13
  8. {sharpapi_python_client-1.0.0 → sharpapi_python_client-1.0.1}/LICENSE +0 -0
  9. {sharpapi_python_client-1.0.0 → sharpapi_python_client-1.0.1}/README.md +0 -0
  10. {sharpapi_python_client-1.0.0 → sharpapi_python_client-1.0.1}/src/sharpapi/dto/job_description_parameters.py +0 -0
  11. {sharpapi_python_client-1.0.0 → sharpapi_python_client-1.0.1}/src/sharpapi/dto/sharp_api_job.py +0 -0
  12. {sharpapi_python_client-1.0.0 → sharpapi_python_client-1.0.1}/src/sharpapi/dto/sharp_api_subscription_info.py +0 -0
  13. {sharpapi_python_client-1.0.0 → sharpapi_python_client-1.0.1}/src/sharpapi/enums/sharp_api_job_type_enum.py +0 -0
  14. {sharpapi_python_client-1.0.0 → sharpapi_python_client-1.0.1}/src/sharpapi/enums/sharp_api_languages.py +0 -0
  15. {sharpapi_python_client-1.0.0 → sharpapi_python_client-1.0.1}/src/sharpapi/enums/sharp_api_voice_tone.py +0 -0
  16. {sharpapi_python_client-1.0.0 → sharpapi_python_client-1.0.1}/src/sharpapi/sharp_api_service.py +0 -0
@@ -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,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "sharpapi-python-client"
3
- version = "1.0.0"
3
+ version = "1.0.1"
4
4
  description = "SharpAPI.com Python SDK Client - AI-Powered Workflow Automation API."
5
5
  authors = ["Dawid Makowski <contact@sharpapi.com>"]
6
6
  license = "MIT"
@@ -17,9 +17,6 @@ packages = [
17
17
  python = "^3.8"
18
18
  requests = ">=2.25.1"
19
19
 
20
- [tool.poetry.dev-dependencies]
21
- pytest = "^7.0"
22
-
23
20
  [build-system]
24
21
  requires = ["poetry-core"]
25
22
  build-backend = "poetry.core.masonry.api"
@@ -0,0 +1,25 @@
1
+ # src/sharpapi/__init__.py
2
+
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
+ )
15
+
16
+ __all__ = [
17
+ "SharpApiService",
18
+ "JobDescriptionParameters",
19
+ "SharpApiJob",
20
+ "SharpApiSubscriptionInfo",
21
+ "SharpApiJobStatusEnum",
22
+ "SharpApiJobTypeEnum",
23
+ "SharpApiLanguages",
24
+ "SharpApiVoiceTone",
25
+ ]
@@ -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,13 +0,0 @@
1
- # sharpapi/__init__.py
2
-
3
- """
4
- SharpAPI Python SDK Package Initialization
5
- """
6
-
7
- # Import the main service class for easy access
8
- from .sharp_api_service import SharpApiService
9
-
10
- # Import subpackages
11
- from . import dto
12
- from . import enums
13
-