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.
- {sharpapi_python_client-1.0.0 → sharpapi_python_client-1.0.1}/PKG-INFO +1 -1
- {sharpapi_python_client-1.0.0 → sharpapi_python_client-1.0.1}/pyproject.toml +1 -4
- sharpapi_python_client-1.0.1/src/sharpapi/__init__.py +25 -0
- {sharpapi_python_client-1.0.0 → sharpapi_python_client-1.0.1}/src/sharpapi/dto/__init__.py +7 -6
- {sharpapi_python_client-1.0.0 → sharpapi_python_client-1.0.1}/src/sharpapi/enums/__init__.py +7 -4
- {sharpapi_python_client-1.0.0 → sharpapi_python_client-1.0.1}/src/sharpapi/enums/sharp_api_job_status_enum.py +0 -1
- sharpapi_python_client-1.0.0/src/sharpapi/__init__.py +0 -13
- {sharpapi_python_client-1.0.0 → sharpapi_python_client-1.0.1}/LICENSE +0 -0
- {sharpapi_python_client-1.0.0 → sharpapi_python_client-1.0.1}/README.md +0 -0
- {sharpapi_python_client-1.0.0 → sharpapi_python_client-1.0.1}/src/sharpapi/dto/job_description_parameters.py +0 -0
- {sharpapi_python_client-1.0.0 → sharpapi_python_client-1.0.1}/src/sharpapi/dto/sharp_api_job.py +0 -0
- {sharpapi_python_client-1.0.0 → sharpapi_python_client-1.0.1}/src/sharpapi/dto/sharp_api_subscription_info.py +0 -0
- {sharpapi_python_client-1.0.0 → sharpapi_python_client-1.0.1}/src/sharpapi/enums/sharp_api_job_type_enum.py +0 -0
- {sharpapi_python_client-1.0.0 → sharpapi_python_client-1.0.1}/src/sharpapi/enums/sharp_api_languages.py +0 -0
- {sharpapi_python_client-1.0.0 → sharpapi_python_client-1.0.1}/src/sharpapi/enums/sharp_api_voice_tone.py +0 -0
- {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
|
[tool.poetry]
|
|
2
2
|
name = "sharpapi-python-client"
|
|
3
|
-
version = "1.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
|
+
]
|
{sharpapi_python_client-1.0.0 → sharpapi_python_client-1.0.1}/src/sharpapi/enums/__init__.py
RENAMED
|
@@ -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
|
+
]
|
|
@@ -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
|
-
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{sharpapi_python_client-1.0.0 → sharpapi_python_client-1.0.1}/src/sharpapi/dto/sharp_api_job.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{sharpapi_python_client-1.0.0 → sharpapi_python_client-1.0.1}/src/sharpapi/sharp_api_service.py
RENAMED
|
File without changes
|