konecty-sdk-python 0.2.0__tar.gz → 0.3.0__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-0.2.0 → konecty_sdk_python-0.3.0}/PKG-INFO +12 -1
- konecty_sdk_python-0.3.0/README.md +14 -0
- {konecty_sdk_python-0.2.0 → konecty_sdk_python-0.3.0}/cli/__init__.py +7 -1
- {konecty_sdk_python-0.2.0 → konecty_sdk_python-0.3.0}/pyproject.toml +1 -1
- konecty_sdk_python-0.2.0/README.md +0 -3
- {konecty_sdk_python-0.2.0 → konecty_sdk_python-0.3.0}/.gitignore +0 -0
- {konecty_sdk_python-0.2.0 → konecty_sdk_python-0.3.0}/.python-version +0 -0
- {konecty_sdk_python-0.2.0 → konecty_sdk_python-0.3.0}/__init__.py +0 -0
- {konecty_sdk_python-0.2.0 → konecty_sdk_python-0.3.0}/cli/apply.py +0 -0
- {konecty_sdk_python-0.2.0 → konecty_sdk_python-0.3.0}/cli/backup.py +0 -0
- {konecty_sdk_python-0.2.0 → konecty_sdk_python-0.3.0}/cli/pull.py +0 -0
- {konecty_sdk_python-0.2.0 → konecty_sdk_python-0.3.0}/lib/client.py +0 -0
- {konecty_sdk_python-0.2.0 → konecty_sdk_python-0.3.0}/lib/file_manager.py +0 -0
- {konecty_sdk_python-0.2.0 → konecty_sdk_python-0.3.0}/lib/filters.py +0 -0
- {konecty_sdk_python-0.2.0 → konecty_sdk_python-0.3.0}/lib/model.py +0 -0
- {konecty_sdk_python-0.2.0 → konecty_sdk_python-0.3.0}/lib/settings.py +0 -0
- {konecty_sdk_python-0.2.0 → konecty_sdk_python-0.3.0}/lib/types.py +0 -0
- {konecty_sdk_python-0.2.0 → konecty_sdk_python-0.3.0}/uv.lock +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: konecty-sdk-python
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.3.0
|
|
4
4
|
Summary: Konecty SDK Python
|
|
5
5
|
Author-email: Leonardo Leal <leonardo.leal@konecty.com>, Derotino Silveira <derotino.silveira@konecty.com>
|
|
6
6
|
License: MIT
|
|
@@ -28,3 +28,14 @@ Description-Content-Type: text/markdown
|
|
|
28
28
|
## Konecty Python SDK
|
|
29
29
|
|
|
30
30
|
> 🛠️ Work in progress
|
|
31
|
+
|
|
32
|
+
#### Build & Publish
|
|
33
|
+
|
|
34
|
+
It is needed to increase the version number on the [pyproject](./pyproject.toml) file.
|
|
35
|
+
|
|
36
|
+
```sh
|
|
37
|
+
|
|
38
|
+
uv build
|
|
39
|
+
uvx twine upload --config-file .pypirc --skip-existing dist/*
|
|
40
|
+
|
|
41
|
+
```
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
## Konecty Python SDK
|
|
2
|
+
|
|
3
|
+
> 🛠️ Work in progress
|
|
4
|
+
|
|
5
|
+
#### Build & Publish
|
|
6
|
+
|
|
7
|
+
It is needed to increase the version number on the [pyproject](./pyproject.toml) file.
|
|
8
|
+
|
|
9
|
+
```sh
|
|
10
|
+
|
|
11
|
+
uv build
|
|
12
|
+
uvx twine upload --config-file .pypirc --skip-existing dist/*
|
|
13
|
+
|
|
14
|
+
```
|
|
@@ -25,7 +25,13 @@ cli.add_command(pull_command)
|
|
|
25
25
|
|
|
26
26
|
def main():
|
|
27
27
|
"""Entry point for the CLI."""
|
|
28
|
-
|
|
28
|
+
import asyncio
|
|
29
|
+
import sys
|
|
30
|
+
|
|
31
|
+
if sys.platform == "win32":
|
|
32
|
+
asyncio.set_event_loop_policy(asyncio.WindowsSelectorEventLoopPolicy())
|
|
33
|
+
|
|
34
|
+
asyncio.run(cli())
|
|
29
35
|
|
|
30
36
|
|
|
31
37
|
if __name__ == "__main__":
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|