tallyfy 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.
Potentially problematic release.
This version of tallyfy might be problematic. Click here for more details.
- tallyfy/README.md +2 -4
- tallyfy/core.py +1 -1
- {tallyfy-1.0.0.dist-info → tallyfy-1.0.1.dist-info}/METADATA +4 -6
- {tallyfy-1.0.0.dist-info → tallyfy-1.0.1.dist-info}/RECORD +7 -7
- {tallyfy-1.0.0.dist-info → tallyfy-1.0.1.dist-info}/WHEEL +0 -0
- {tallyfy-1.0.0.dist-info → tallyfy-1.0.1.dist-info}/licenses/LICENSE +0 -0
- {tallyfy-1.0.0.dist-info → tallyfy-1.0.1.dist-info}/top_level.txt +0 -0
tallyfy/README.md
CHANGED
|
@@ -32,8 +32,7 @@ from tallyfy import TallyfySDK
|
|
|
32
32
|
|
|
33
33
|
# Initialize the SDK
|
|
34
34
|
sdk = TallyfySDK(
|
|
35
|
-
api_key="your_api_key_here"
|
|
36
|
-
base_url="https://api.tallyfy.com" # Optional, defaults to Tallyfy API
|
|
35
|
+
api_key="your_api_key_here"
|
|
37
36
|
)
|
|
38
37
|
|
|
39
38
|
# Get organization users
|
|
@@ -149,7 +148,6 @@ tallyfy/
|
|
|
149
148
|
```python
|
|
150
149
|
TallyfySDK(
|
|
151
150
|
api_key: str,
|
|
152
|
-
base_url: str = "https://api.tallyfy.com",
|
|
153
151
|
timeout: int = 30,
|
|
154
152
|
max_retries: int = 3,
|
|
155
153
|
retry_delay: float = 1.0
|
|
@@ -632,5 +630,5 @@ For bugs, feature requests, or questions:
|
|
|
632
630
|
2. Contact us at: support@tallyfy.com
|
|
633
631
|
---
|
|
634
632
|
|
|
635
|
-
**Version:** 1.0.
|
|
633
|
+
**Version:** 1.0.1
|
|
636
634
|
**Last Updated:** 2025
|
tallyfy/core.py
CHANGED
|
@@ -145,7 +145,7 @@ class TallyfySDK(BaseSDK):
|
|
|
145
145
|
Provides typed methods for interacting with Tallyfy's REST API
|
|
146
146
|
"""
|
|
147
147
|
|
|
148
|
-
def __init__(self, api_key: str, base_url: str = "https://
|
|
148
|
+
def __init__(self, api_key: str, base_url: str = "https://api.tallyfy.com", timeout: int = 30, max_retries: int = 3, retry_delay: float = 1.0):
|
|
149
149
|
super().__init__(api_key, base_url, timeout, max_retries, retry_delay)
|
|
150
150
|
|
|
151
151
|
# Initialize management modules
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: tallyfy
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.1
|
|
4
4
|
Summary: A comprehensive Python SDK for interacting with the Tallyfy API
|
|
5
5
|
Home-page: https://github.com/tallyfy/tallyfy-sdk
|
|
6
6
|
Author: Tallyfy
|
|
@@ -34,7 +34,7 @@ Requires-Dist: typing-extensions>=4.0.0; python_version < "3.8"
|
|
|
34
34
|
Provides-Extra: dev
|
|
35
35
|
Requires-Dist: pytest>=6.0.0; extra == "dev"
|
|
36
36
|
Requires-Dist: pytest-cov>=2.10.0; extra == "dev"
|
|
37
|
-
Requires-Dist: black>=21.0.
|
|
37
|
+
Requires-Dist: black>=21.0.1; extra == "dev"
|
|
38
38
|
Requires-Dist: flake8>=3.8.0; extra == "dev"
|
|
39
39
|
Requires-Dist: mypy>=0.800; extra == "dev"
|
|
40
40
|
Dynamic: author
|
|
@@ -76,8 +76,7 @@ from tallyfy import TallyfySDK
|
|
|
76
76
|
|
|
77
77
|
# Initialize the SDK
|
|
78
78
|
sdk = TallyfySDK(
|
|
79
|
-
api_key="your_api_key_here"
|
|
80
|
-
base_url="https://api.tallyfy.com" # Optional, defaults to Tallyfy API
|
|
79
|
+
api_key="your_api_key_here"
|
|
81
80
|
)
|
|
82
81
|
|
|
83
82
|
# Get organization users
|
|
@@ -193,7 +192,6 @@ tallyfy/
|
|
|
193
192
|
```python
|
|
194
193
|
TallyfySDK(
|
|
195
194
|
api_key: str,
|
|
196
|
-
base_url: str = "https://api.tallyfy.com",
|
|
197
195
|
timeout: int = 30,
|
|
198
196
|
max_retries: int = 3,
|
|
199
197
|
retry_delay: float = 1.0
|
|
@@ -676,5 +674,5 @@ For bugs, feature requests, or questions:
|
|
|
676
674
|
2. Contact us at: support@tallyfy.com
|
|
677
675
|
---
|
|
678
676
|
|
|
679
|
-
**Version:** 1.0.
|
|
677
|
+
**Version:** 1.0.1
|
|
680
678
|
**Last Updated:** 2025
|
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
tallyfy/README.md,sha256=
|
|
1
|
+
tallyfy/README.md,sha256=kwsWh6N6FoYbh4hrfF27H3akFzem5eKJ9PJem39g5Y8,21368
|
|
2
2
|
tallyfy/__init__.py,sha256=E4eHCzUwVOD9r3PQBXHdJv0KYPSNe-2lH7h1yKdUHQ8,492
|
|
3
|
-
tallyfy/core.py,sha256=
|
|
3
|
+
tallyfy/core.py,sha256=9xA4KbrnrjUbZ_FdxoXVNlz2EobWKr-fdL-wjq2UnUk,16343
|
|
4
4
|
tallyfy/form_fields_management.py,sha256=-ifTFKQuA3pcftKfPAyNCV840DOJPqRvJPsBCDNXbWU,24223
|
|
5
5
|
tallyfy/models.py,sha256=zIcJdvzB0ms8j8KWIHoMxLPllVILIVH42US2csO9g6U,36240
|
|
6
6
|
tallyfy/task_management.py,sha256=DIfhbo8qU3DWzuLKBZtwPlFta_D6Ip9HH3PUltr3T2o,14785
|
|
7
7
|
tallyfy/template_management.py,sha256=Eg2zxcSorcXeSnhMltwu2McG0tt7omL9OUF7lzWK85k,120174
|
|
8
8
|
tallyfy/user_management.py,sha256=R7L8Nsszm7htvZDRou7C0zQvgFx0pbNmcjHHyWYbl3g,8581
|
|
9
|
-
tallyfy-1.0.
|
|
10
|
-
tallyfy-1.0.
|
|
11
|
-
tallyfy-1.0.
|
|
12
|
-
tallyfy-1.0.
|
|
13
|
-
tallyfy-1.0.
|
|
9
|
+
tallyfy-1.0.1.dist-info/licenses/LICENSE,sha256=8HUsrXnc3l2sZxhPV9Z1gYinq76Q2Ym7ahYJy57QlLc,1063
|
|
10
|
+
tallyfy-1.0.1.dist-info/METADATA,sha256=YzZFApKAmX6uiFfNt7v_5D5W64E6RMeOL1DcniUU_Vc,23252
|
|
11
|
+
tallyfy-1.0.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
12
|
+
tallyfy-1.0.1.dist-info/top_level.txt,sha256=yIycWbR61EZJD0MYRPwUQjOS2XZw5B5jCWx1IP73KcM,8
|
|
13
|
+
tallyfy-1.0.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|