konecty-sdk-python 1.0.1__tar.gz → 1.0.3__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.
- {konecty_sdk_python-1.0.1 → konecty_sdk_python-1.0.3}/PKG-INFO +2 -2
- {konecty_sdk_python-1.0.1 → konecty_sdk_python-1.0.3/lib}/__init__.py +21 -21
- {konecty_sdk_python-1.0.1 → konecty_sdk_python-1.0.3}/pyproject.toml +8 -2
- konecty_sdk_python-1.0.1/.python-version +0 -1
- konecty_sdk_python-1.0.1/uv.lock +0 -943
- {konecty_sdk_python-1.0.1 → konecty_sdk_python-1.0.3}/.gitignore +0 -0
- {konecty_sdk_python-1.0.1 → konecty_sdk_python-1.0.3}/README.md +0 -0
- {konecty_sdk_python-1.0.1 → konecty_sdk_python-1.0.3}/cli/__init__.py +0 -0
- {konecty_sdk_python-1.0.1 → konecty_sdk_python-1.0.3}/cli/apply.py +0 -0
- {konecty_sdk_python-1.0.1 → konecty_sdk_python-1.0.3}/cli/backup.py +0 -0
- {konecty_sdk_python-1.0.1 → konecty_sdk_python-1.0.3}/cli/pull.py +0 -0
- {konecty_sdk_python-1.0.1 → konecty_sdk_python-1.0.3}/lib/client.py +0 -0
- {konecty_sdk_python-1.0.1 → konecty_sdk_python-1.0.3}/lib/file_manager.py +0 -0
- {konecty_sdk_python-1.0.1 → konecty_sdk_python-1.0.3}/lib/filters.py +0 -0
- {konecty_sdk_python-1.0.1 → konecty_sdk_python-1.0.3}/lib/model.py +0 -0
- {konecty_sdk_python-1.0.1 → konecty_sdk_python-1.0.3}/lib/settings.py +0 -0
- {konecty_sdk_python-1.0.1 → konecty_sdk_python-1.0.3}/lib/types.py +0 -0
|
@@ -1,12 +1,13 @@
|
|
|
1
|
-
"""
|
|
1
|
+
"""
|
|
2
|
+
Konecty SDK Python - A Python SDK for interacting with Konecty platform
|
|
3
|
+
"""
|
|
2
4
|
|
|
3
|
-
from .
|
|
4
|
-
from .
|
|
5
|
-
from .
|
|
6
|
-
from .
|
|
7
|
-
from .
|
|
8
|
-
from .
|
|
9
|
-
from .lib.types import (
|
|
5
|
+
from .client import KonectyClient, KonectyDict, KonectyFilter, KonectyFindParams
|
|
6
|
+
from .file_manager import FileManager
|
|
7
|
+
from .model import KonectyModelGenerator
|
|
8
|
+
from .settings import fill_settings, fill_settings_sync
|
|
9
|
+
from .types import Address as KonectyAddress
|
|
10
|
+
from .types import (
|
|
10
11
|
KonectyBaseModel,
|
|
11
12
|
KonectyDateTime,
|
|
12
13
|
KonectyEmail,
|
|
@@ -18,24 +19,23 @@ from .lib.types import (
|
|
|
18
19
|
)
|
|
19
20
|
|
|
20
21
|
__all__ = [
|
|
21
|
-
"apply_command",
|
|
22
|
-
"backup_command",
|
|
23
|
-
"pull_command",
|
|
24
22
|
"KonectyClient",
|
|
25
|
-
"
|
|
26
|
-
"KonectyFilter",
|
|
27
|
-
"KonectyFindParams",
|
|
23
|
+
"KonectyModel",
|
|
28
24
|
"FileManager",
|
|
29
25
|
"KonectyModelGenerator",
|
|
30
|
-
"
|
|
31
|
-
"
|
|
26
|
+
"fill_settings",
|
|
27
|
+
"fill_settings_sync",
|
|
28
|
+
"KonectyAddress",
|
|
32
29
|
"KonectyBaseModel",
|
|
30
|
+
"KonectyDateTime",
|
|
31
|
+
"KonectyEmail",
|
|
33
32
|
"KonectyLabel",
|
|
34
|
-
"KonectyPhone",
|
|
35
33
|
"KonectyLookup",
|
|
36
|
-
"KonectyEmail",
|
|
37
34
|
"KonectyPersonName",
|
|
38
|
-
"
|
|
39
|
-
"
|
|
40
|
-
"
|
|
35
|
+
"KonectyPhone",
|
|
36
|
+
"KonectyUser",
|
|
37
|
+
"KonectyModel",
|
|
38
|
+
"KonectyFilter",
|
|
39
|
+
"KonectyFindParams",
|
|
40
|
+
"KonectyDict",
|
|
41
41
|
]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
|
-
name = "
|
|
3
|
-
version = "1.0.
|
|
2
|
+
name = "konecty_sdk_python"
|
|
3
|
+
version = "1.0.3"
|
|
4
4
|
description = "Konecty SDK Python"
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
requires-python = ">=3.11"
|
|
@@ -41,3 +41,9 @@ build-backend = "hatchling.build"
|
|
|
41
41
|
|
|
42
42
|
[tool.hatch.build.targets.wheel]
|
|
43
43
|
packages = ["cli", "lib"]
|
|
44
|
+
|
|
45
|
+
[tool.hatch.build]
|
|
46
|
+
include = [
|
|
47
|
+
"lib/**/*.py",
|
|
48
|
+
"cli/**/*.py",
|
|
49
|
+
]
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
3.11
|