workwire 0.0.1a1__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.
workwire/__init__.py
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
"""Name reservation for the official Workwire Python SDK.
|
|
2
|
+
|
|
3
|
+
The SDK is currently available to Workwire beta customers — contact
|
|
4
|
+
support@workwire.com for access.
|
|
5
|
+
"""
|
|
6
|
+
|
|
7
|
+
__version__ = "0.0.1a1"
|
|
8
|
+
|
|
9
|
+
_MESSAGE = (
|
|
10
|
+
"This is a name-reservation placeholder for the official Workwire Python "
|
|
11
|
+
"SDK. The SDK is currently available to Workwire beta customers — "
|
|
12
|
+
"contact support@workwire.com for access."
|
|
13
|
+
)
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
class Workwire:
|
|
17
|
+
def __init__(self, *args: object, **kwargs: object) -> None:
|
|
18
|
+
raise RuntimeError(_MESSAGE)
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
def __getattr__(name: str) -> object:
|
|
22
|
+
raise AttributeError(_MESSAGE)
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
Metadata-Version: 2.5
|
|
2
|
+
Name: workwire
|
|
3
|
+
Version: 0.0.1a1
|
|
4
|
+
Summary: Official Python SDK for the Workwire API (name reservation — SDK currently available to beta customers)
|
|
5
|
+
Project-URL: Homepage, https://workwire.com
|
|
6
|
+
Author-email: Workwire <support@workwire.com>
|
|
7
|
+
License: MIT
|
|
8
|
+
Classifier: Development Status :: 1 - Planning
|
|
9
|
+
Classifier: Intended Audience :: Developers
|
|
10
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
11
|
+
Classifier: Programming Language :: Python :: 3
|
|
12
|
+
Requires-Python: >=3.10
|
|
13
|
+
Description-Content-Type: text/markdown
|
|
14
|
+
|
|
15
|
+
# Workwire Python SDK
|
|
16
|
+
|
|
17
|
+
This release reserves the `workwire` package name for the official
|
|
18
|
+
[Workwire](https://workwire.com) Python SDK.
|
|
19
|
+
|
|
20
|
+
The SDK is currently available to Workwire beta customers — contact
|
|
21
|
+
**support@workwire.com** for access. A public release will land here when
|
|
22
|
+
the Workwire API opens up.
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
workwire/__init__.py,sha256=LEbDkHgzuXblEoH_vBmOBKRmj90dDiJ4iGSmgt4x0ck,602
|
|
2
|
+
workwire-0.0.1a1.dist-info/METADATA,sha256=WA5KpCO8u-gZcR3DSfaDdlfzBcgLRHNkXf9K_ktFTv0,834
|
|
3
|
+
workwire-0.0.1a1.dist-info/WHEEL,sha256=zOwg4jB6zX2kU910N-cMawjivD6tO8NEWvE12je1bVk,87
|
|
4
|
+
workwire-0.0.1a1.dist-info/RECORD,,
|