superposition-sdk 0.85.0__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 superposition-sdk might be problematic. Click here for more details.
- superposition_sdk/__init__.py +3 -0
- superposition_sdk/_private/__init__.py +1 -0
- superposition_sdk/_private/schemas.py +13070 -0
- superposition_sdk/auth.py +16 -0
- superposition_sdk/client.py +2424 -0
- superposition_sdk/config.py +224 -0
- superposition_sdk/deserialize.py +1818 -0
- superposition_sdk/models.py +13019 -0
- superposition_sdk/serialize.py +2421 -0
- superposition_sdk-0.85.0.dist-info/METADATA +31 -0
- superposition_sdk-0.85.0.dist-info/RECORD +12 -0
- superposition_sdk-0.85.0.dist-info/WHEEL +4 -0
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: superposition_sdk
|
|
3
|
+
Version: 0.85.0
|
|
4
|
+
Summary: superposition_sdk client
|
|
5
|
+
License: Apache-2.0
|
|
6
|
+
Keywords: smithy,superposition_sdk
|
|
7
|
+
Classifier: Development Status :: 2 - Pre-Alpha
|
|
8
|
+
Classifier: Intended Audience :: Developers
|
|
9
|
+
Classifier: Intended Audience :: System Administrators
|
|
10
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
11
|
+
Classifier: Natural Language :: English
|
|
12
|
+
Classifier: Programming Language :: Python
|
|
13
|
+
Classifier: Programming Language :: Python :: 3
|
|
14
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
17
|
+
Requires-Python: >=3.12
|
|
18
|
+
Requires-Dist: smithy-core==0.0.1
|
|
19
|
+
Requires-Dist: smithy-http[aiohttp]==0.0.1
|
|
20
|
+
Requires-Dist: smithy-json==0.0.1
|
|
21
|
+
Provides-Extra: docs
|
|
22
|
+
Requires-Dist: pydata-sphinx-theme>=0.16.1; extra == 'docs'
|
|
23
|
+
Requires-Dist: sphinx>=8.2.3; extra == 'docs'
|
|
24
|
+
Provides-Extra: tests
|
|
25
|
+
Requires-Dist: pytest-asyncio<0.21.0,>=0.20.3; extra == 'tests'
|
|
26
|
+
Requires-Dist: pytest<8.0.0,>=7.2.0; extra == 'tests'
|
|
27
|
+
Description-Content-Type: text/markdown
|
|
28
|
+
|
|
29
|
+
## Superposition Client
|
|
30
|
+
|
|
31
|
+
superposition_sdk client
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
superposition_sdk/__init__.py,sha256=Inc_oe2U1CzZ_ZxsNVbU96RGaAlD-6M5xt1ZcW5hGUo,83
|
|
2
|
+
superposition_sdk/auth.py,sha256=U9D3FmOH8TX0cjibGy_CRnAkTnFEavAek0Jw1YUhN2g,404
|
|
3
|
+
superposition_sdk/client.py,sha256=9kj6k0uX6UaP-tAxJoZNhMJVFpC-kWhRXNAqWA4-OO0,87557
|
|
4
|
+
superposition_sdk/config.py,sha256=WfJkW9bPCkNXyxcWet47cUY2OdU--9rs5zuWlssuAag,11276
|
|
5
|
+
superposition_sdk/deserialize.py,sha256=VlPxbY8hwD5Sbgn1IvvMFmm9-wMOVjmYrUkPvDE_WtU,76337
|
|
6
|
+
superposition_sdk/models.py,sha256=az1bVauWYaF5I7N744lQmQkYKyAKHCsMzpPzXGchOgM,535433
|
|
7
|
+
superposition_sdk/serialize.py,sha256=__hMORn6Mx61sy0t3Y5Hs7O5iO1GOyRHYg0kehjbZYA,71892
|
|
8
|
+
superposition_sdk/_private/__init__.py,sha256=DxsJq42a0KfQv9zzLrqT0JVpoXrR-IDIYFGuJe4g1Gc,55
|
|
9
|
+
superposition_sdk/_private/schemas.py,sha256=hpQ-dFMLpQmn1t25yRbcrVv_Zg32_A0FARh0pfozWPU,297589
|
|
10
|
+
superposition_sdk-0.85.0.dist-info/METADATA,sha256=J3ykiywZHxOuwgnwLQPEKAsknPwlt29ilQk_Paaqkko,1143
|
|
11
|
+
superposition_sdk-0.85.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
12
|
+
superposition_sdk-0.85.0.dist-info/RECORD,,
|