oblet 0.0.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.
- oblet-0.0.0/.gitignore +10 -0
- oblet-0.0.0/CHANGELOG.md +12 -0
- oblet-0.0.0/LICENSE +201 -0
- oblet-0.0.0/PKG-INFO +103 -0
- oblet-0.0.0/README.md +86 -0
- oblet-0.0.0/buf.gen.python.yaml +15 -0
- oblet-0.0.0/pyproject.toml +68 -0
- oblet-0.0.0/src/buf/__init__.py +0 -0
- oblet-0.0.0/src/buf/validate/__init__.py +0 -0
- oblet-0.0.0/src/buf/validate/validate_pb2.py +469 -0
- oblet-0.0.0/src/buf/validate/validate_pb2.pyi +654 -0
- oblet-0.0.0/src/oblet/__init__.py +53 -0
- oblet-0.0.0/src/oblet/_async_client.py +123 -0
- oblet-0.0.0/src/oblet/_attenuate.py +61 -0
- oblet-0.0.0/src/oblet/_client.py +108 -0
- oblet-0.0.0/src/oblet/_contract/__init__.py +2 -0
- oblet-0.0.0/src/oblet/_contract/sdk_contract.json +8438 -0
- oblet-0.0.0/src/oblet/_errors.py +172 -0
- oblet-0.0.0/src/oblet/_options.py +52 -0
- oblet-0.0.0/src/oblet/_routing.py +149 -0
- oblet-0.0.0/src/oblet/_rpc.py +107 -0
- oblet-0.0.0/src/oblet/_version.py +4 -0
- oblet-0.0.0/src/oblet/admin/__init__.py +0 -0
- oblet-0.0.0/src/oblet/admin/v1alpha1/__init__.py +0 -0
- oblet-0.0.0/src/oblet/admin/v1alpha1/admin_connect.py +643 -0
- oblet-0.0.0/src/oblet/admin/v1alpha1/admin_pb2.py +111 -0
- oblet-0.0.0/src/oblet/admin/v1alpha1/admin_pb2.pyi +181 -0
- oblet-0.0.0/src/oblet/anchorlog/__init__.py +0 -0
- oblet-0.0.0/src/oblet/anchorlog/v1alpha1/__init__.py +0 -0
- oblet-0.0.0/src/oblet/anchorlog/v1alpha1/anchorlog_connect.py +318 -0
- oblet-0.0.0/src/oblet/anchorlog/v1alpha1/anchorlog_pb2.py +91 -0
- oblet-0.0.0/src/oblet/anchorlog/v1alpha1/anchorlog_pb2.pyi +127 -0
- oblet-0.0.0/src/oblet/api/__init__.py +0 -0
- oblet-0.0.0/src/oblet/api/v1/__init__.py +0 -0
- oblet-0.0.0/src/oblet/api/v1/annotations_pb2.py +40 -0
- oblet-0.0.0/src/oblet/api/v1/annotations_pb2.pyi +44 -0
- oblet-0.0.0/src/oblet/api/v1/common_pb2.py +97 -0
- oblet-0.0.0/src/oblet/api/v1/common_pb2.pyi +112 -0
- oblet-0.0.0/src/oblet/apikey/__init__.py +26 -0
- oblet-0.0.0/src/oblet/apikey/_client.py +111 -0
- oblet-0.0.0/src/oblet/apikey/_convert.py +82 -0
- oblet-0.0.0/src/oblet/apikey/_convert_gen.py +46 -0
- oblet-0.0.0/src/oblet/apikey/_models.py +80 -0
- oblet-0.0.0/src/oblet/apikey/v1alpha1/__init__.py +0 -0
- oblet-0.0.0/src/oblet/apikey/v1alpha1/apikey_connect.py +253 -0
- oblet-0.0.0/src/oblet/apikey/v1alpha1/apikey_pb2.py +77 -0
- oblet-0.0.0/src/oblet/apikey/v1alpha1/apikey_pb2.pyi +97 -0
- oblet-0.0.0/src/oblet/audit/__init__.py +40 -0
- oblet-0.0.0/src/oblet/audit/_client.py +207 -0
- oblet-0.0.0/src/oblet/audit/_convert.py +192 -0
- oblet-0.0.0/src/oblet/audit/_convert_gen.py +57 -0
- oblet-0.0.0/src/oblet/audit/_models.py +172 -0
- oblet-0.0.0/src/oblet/audit/v1alpha1/__init__.py +0 -0
- oblet-0.0.0/src/oblet/audit/v1alpha1/audit_connect.py +513 -0
- oblet-0.0.0/src/oblet/audit/v1alpha1/audit_pb2.py +128 -0
- oblet-0.0.0/src/oblet/audit/v1alpha1/audit_pb2.pyi +248 -0
- oblet-0.0.0/src/oblet/branch/__init__.py +40 -0
- oblet-0.0.0/src/oblet/branch/_client.py +169 -0
- oblet-0.0.0/src/oblet/branch/_convert.py +159 -0
- oblet-0.0.0/src/oblet/branch/_convert_gen.py +67 -0
- oblet-0.0.0/src/oblet/branch/_models.py +135 -0
- oblet-0.0.0/src/oblet/branch/v1alpha1/__init__.py +0 -0
- oblet-0.0.0/src/oblet/branch/v1alpha1/branch_connect.py +448 -0
- oblet-0.0.0/src/oblet/branch/v1alpha1/branch_pb2.py +107 -0
- oblet-0.0.0/src/oblet/branch/v1alpha1/branch_pb2.pyi +187 -0
- oblet-0.0.0/src/oblet/events/__init__.py +0 -0
- oblet-0.0.0/src/oblet/events/v1alpha1/__init__.py +0 -0
- oblet-0.0.0/src/oblet/events/v1alpha1/events_pb2.py +117 -0
- oblet-0.0.0/src/oblet/events/v1alpha1/events_pb2.pyi +299 -0
- oblet-0.0.0/src/oblet/events/v1alpha1/pdp_pb2.py +41 -0
- oblet-0.0.0/src/oblet/events/v1alpha1/pdp_pb2.pyi +18 -0
- oblet-0.0.0/src/oblet/health/__init__.py +0 -0
- oblet-0.0.0/src/oblet/health/v1alpha1/__init__.py +0 -0
- oblet-0.0.0/src/oblet/health/v1alpha1/health_connect.py +123 -0
- oblet-0.0.0/src/oblet/health/v1alpha1/health_pb2.py +43 -0
- oblet-0.0.0/src/oblet/health/v1alpha1/health_pb2.pyi +25 -0
- oblet-0.0.0/src/oblet/lake/__init__.py +24 -0
- oblet-0.0.0/src/oblet/lake/_client.py +100 -0
- oblet-0.0.0/src/oblet/lake/_convert.py +52 -0
- oblet-0.0.0/src/oblet/lake/_convert_gen.py +31 -0
- oblet-0.0.0/src/oblet/lake/_models.py +47 -0
- oblet-0.0.0/src/oblet/lake/v1alpha1/__init__.py +0 -0
- oblet-0.0.0/src/oblet/lake/v1alpha1/lake_connect.py +188 -0
- oblet-0.0.0/src/oblet/lake/v1alpha1/lake_pb2.py +56 -0
- oblet-0.0.0/src/oblet/lake/v1alpha1/lake_pb2.pyi +50 -0
- oblet-0.0.0/src/oblet/object/__init__.py +86 -0
- oblet-0.0.0/src/oblet/object/_client.py +351 -0
- oblet-0.0.0/src/oblet/object/_convert.py +299 -0
- oblet-0.0.0/src/oblet/object/_convert_gen.py +94 -0
- oblet-0.0.0/src/oblet/object/_models.py +360 -0
- oblet-0.0.0/src/oblet/object/_seal.py +185 -0
- oblet-0.0.0/src/oblet/object/v1alpha1/__init__.py +0 -0
- oblet-0.0.0/src/oblet/object/v1alpha1/object_connect.py +643 -0
- oblet-0.0.0/src/oblet/object/v1alpha1/object_pb2.py +223 -0
- oblet-0.0.0/src/oblet/object/v1alpha1/object_pb2.pyi +373 -0
- oblet-0.0.0/src/oblet/org/__init__.py +64 -0
- oblet-0.0.0/src/oblet/org/_client.py +259 -0
- oblet-0.0.0/src/oblet/org/_convert.py +264 -0
- oblet-0.0.0/src/oblet/org/_convert_gen.py +80 -0
- oblet-0.0.0/src/oblet/org/_models.py +233 -0
- oblet-0.0.0/src/oblet/policy/__init__.py +72 -0
- oblet-0.0.0/src/oblet/policy/_client.py +211 -0
- oblet-0.0.0/src/oblet/policy/_convert.py +346 -0
- oblet-0.0.0/src/oblet/policy/_convert_gen.py +90 -0
- oblet-0.0.0/src/oblet/policy/_models.py +318 -0
- oblet-0.0.0/src/oblet/policy/v1alpha1/__init__.py +0 -0
- oblet-0.0.0/src/oblet/policy/v1alpha1/policy_connect.py +708 -0
- oblet-0.0.0/src/oblet/policy/v1alpha1/policy_pb2.py +203 -0
- oblet-0.0.0/src/oblet/policy/v1alpha1/policy_pb2.pyi +357 -0
- oblet-0.0.0/src/oblet/py.typed +0 -0
- oblet-0.0.0/src/oblet/review/__init__.py +26 -0
- oblet-0.0.0/src/oblet/review/_client.py +128 -0
- oblet-0.0.0/src/oblet/review/_convert.py +91 -0
- oblet-0.0.0/src/oblet/review/_convert_gen.py +48 -0
- oblet-0.0.0/src/oblet/review/_models.py +78 -0
- oblet-0.0.0/src/oblet/review/v1alpha1/__init__.py +0 -0
- oblet-0.0.0/src/oblet/review/v1alpha1/review_connect.py +318 -0
- oblet-0.0.0/src/oblet/review/v1alpha1/review_pb2.py +79 -0
- oblet-0.0.0/src/oblet/review/v1alpha1/review_pb2.pyi +117 -0
- oblet-0.0.0/src/oblet/subscription/__init__.py +52 -0
- oblet-0.0.0/src/oblet/subscription/_client.py +224 -0
- oblet-0.0.0/src/oblet/subscription/_convert.py +205 -0
- oblet-0.0.0/src/oblet/subscription/_convert_gen.py +67 -0
- oblet-0.0.0/src/oblet/subscription/_models.py +204 -0
- oblet-0.0.0/src/oblet/subscription/v1alpha1/__init__.py +0 -0
- oblet-0.0.0/src/oblet/subscription/v1alpha1/subscription_connect.py +708 -0
- oblet-0.0.0/src/oblet/subscription/v1alpha1/subscription_pb2.py +168 -0
- oblet-0.0.0/src/oblet/subscription/v1alpha1/subscription_pb2.pyi +278 -0
- oblet-0.0.0/src/oblet/token/__init__.py +15 -0
- oblet-0.0.0/src/oblet/token/_client.py +117 -0
- oblet-0.0.0/src/oblet/token/_convert.py +57 -0
- oblet-0.0.0/src/oblet/token/_convert_gen.py +25 -0
- oblet-0.0.0/src/oblet/token/_models.py +54 -0
- oblet-0.0.0/src/oblet/transaction/__init__.py +36 -0
- oblet-0.0.0/src/oblet/transaction/_client.py +88 -0
- oblet-0.0.0/src/oblet/transaction/_convert.py +142 -0
- oblet-0.0.0/src/oblet/transaction/_convert_gen.py +29 -0
- oblet-0.0.0/src/oblet/transaction/_models.py +106 -0
- oblet-0.0.0/src/oblet/transaction/v1alpha1/__init__.py +0 -0
- oblet-0.0.0/src/oblet/transaction/v1alpha1/transaction_connect.py +123 -0
- oblet-0.0.0/src/oblet/transaction/v1alpha1/transaction_pb2.py +100 -0
- oblet-0.0.0/src/oblet/transaction/v1alpha1/transaction_pb2.pyi +123 -0
- oblet-0.0.0/src/oblet/workspace/__init__.py +78 -0
- oblet-0.0.0/src/oblet/workspace/_client.py +313 -0
- oblet-0.0.0/src/oblet/workspace/_convert.py +423 -0
- oblet-0.0.0/src/oblet/workspace/_convert_gen.py +93 -0
- oblet-0.0.0/src/oblet/workspace/_models.py +326 -0
- oblet-0.0.0/src/oblet/workspace/v1alpha1/__init__.py +0 -0
- oblet-0.0.0/src/oblet/workspace/v1alpha1/workspace_connect.py +2180 -0
- oblet-0.0.0/src/oblet/workspace/v1alpha1/workspace_pb2.py +390 -0
- oblet-0.0.0/src/oblet/workspace/v1alpha1/workspace_pb2.pyi +755 -0
- oblet-0.0.0/tests/conftest.py +101 -0
- oblet-0.0.0/tests/test_apikey_client.py +176 -0
- oblet-0.0.0/tests/test_attenuate.py +44 -0
- oblet-0.0.0/tests/test_attenuation_interop.py +46 -0
- oblet-0.0.0/tests/test_audit_client.py +324 -0
- oblet-0.0.0/tests/test_branch_client.py +351 -0
- oblet-0.0.0/tests/test_conformance.py +843 -0
- oblet-0.0.0/tests/test_convert_gen_is_clean.py +80 -0
- oblet-0.0.0/tests/test_cross_sdk_seal.py +43 -0
- oblet-0.0.0/tests/test_dependency_closure_is_allowlisted.py +79 -0
- oblet-0.0.0/tests/test_errors.py +53 -0
- oblet-0.0.0/tests/test_lake_client.py +152 -0
- oblet-0.0.0/tests/test_object_client.py +344 -0
- oblet-0.0.0/tests/test_options.py +358 -0
- oblet-0.0.0/tests/test_org_client.py +486 -0
- oblet-0.0.0/tests/test_policy_client.py +494 -0
- oblet-0.0.0/tests/test_public_api_exposes_no_generated_types.py +107 -0
- oblet-0.0.0/tests/test_reference_shape_parity.py +775 -0
- oblet-0.0.0/tests/test_review_client.py +207 -0
- oblet-0.0.0/tests/test_routing.py +158 -0
- oblet-0.0.0/tests/test_seal.py +159 -0
- oblet-0.0.0/tests/test_stream_failure_raises.py +102 -0
- oblet-0.0.0/tests/test_subscription_client.py +348 -0
- oblet-0.0.0/tests/test_sync_async_surface_match.py +51 -0
- oblet-0.0.0/tests/test_token_client.py +150 -0
- oblet-0.0.0/tests/test_transaction_client.py +217 -0
- oblet-0.0.0/tests/test_workspace_client.py +570 -0
- oblet-0.0.0/tests/testdata/cross_sdk_seal_golden.json +25 -0
- oblet-0.0.0/tests/testdata/golden_pubkey.hex +1 -0
- oblet-0.0.0/tests/testdata/golden_token.b64 +1 -0
- oblet-0.0.0/uv.lock +558 -0
oblet-0.0.0/.gitignore
ADDED
oblet-0.0.0/CHANGELOG.md
ADDED
oblet-0.0.0/LICENSE
ADDED
|
@@ -0,0 +1,201 @@
|
|
|
1
|
+
Apache License
|
|
2
|
+
Version 2.0, January 2004
|
|
3
|
+
http://www.apache.org/licenses/
|
|
4
|
+
|
|
5
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
6
|
+
|
|
7
|
+
1. Definitions.
|
|
8
|
+
|
|
9
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
10
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
11
|
+
|
|
12
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
13
|
+
the copyright owner that is granting the License.
|
|
14
|
+
|
|
15
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
16
|
+
other entities that control, are controlled by, or are under common
|
|
17
|
+
control with that entity. For the purposes of this definition,
|
|
18
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
19
|
+
direction or management of such entity, whether by contract or
|
|
20
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
21
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
22
|
+
|
|
23
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
24
|
+
exercising permissions granted by this License.
|
|
25
|
+
|
|
26
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
27
|
+
including but not limited to software source code, documentation
|
|
28
|
+
source, and configuration files.
|
|
29
|
+
|
|
30
|
+
"Object" form shall mean any form resulting from mechanical
|
|
31
|
+
transformation or translation of a Source form, including but
|
|
32
|
+
not limited to compiled object code, generated documentation,
|
|
33
|
+
and conversions to other media types.
|
|
34
|
+
|
|
35
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
36
|
+
Object form, made available under the License, as indicated by a
|
|
37
|
+
copyright notice that is included in or attached to the work
|
|
38
|
+
(an example is provided in the Appendix below).
|
|
39
|
+
|
|
40
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
41
|
+
form, that is based on (or derived from) the Work and for which the
|
|
42
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
43
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
44
|
+
of this License, Derivative Works shall not include works that remain
|
|
45
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
46
|
+
the Work and Derivative Works thereof.
|
|
47
|
+
|
|
48
|
+
"Contribution" shall mean any work of authorship, including
|
|
49
|
+
the original version of the Work and any modifications or additions
|
|
50
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
51
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
52
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
53
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
54
|
+
means any form of electronic, verbal, or written communication sent
|
|
55
|
+
to the Licensor or its representatives, including but not limited to
|
|
56
|
+
communication on electronic mailing lists, source code control systems,
|
|
57
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
58
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
59
|
+
excluding communication that is conspicuously marked or otherwise
|
|
60
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
61
|
+
|
|
62
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
63
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
64
|
+
subsequently incorporated within the Work.
|
|
65
|
+
|
|
66
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
67
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
68
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
69
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
70
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
71
|
+
Work and such Derivative Works in Source or Object form.
|
|
72
|
+
|
|
73
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
74
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
75
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
76
|
+
(except as stated in this section) patent license to make, have made,
|
|
77
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
78
|
+
where such license applies only to those patent claims licensable
|
|
79
|
+
by such Contributor that are necessarily infringed by their
|
|
80
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
81
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
82
|
+
institute patent litigation against any entity (including a
|
|
83
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
84
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
85
|
+
or contributory patent infringement, then any patent licenses
|
|
86
|
+
granted to You under this License for that Work shall terminate
|
|
87
|
+
as of the date such litigation is filed.
|
|
88
|
+
|
|
89
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
90
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
91
|
+
modifications, and in Source or Object form, provided that You
|
|
92
|
+
meet the following conditions:
|
|
93
|
+
|
|
94
|
+
(a) You must give any other recipients of the Work or
|
|
95
|
+
Derivative Works a copy of this License; and
|
|
96
|
+
|
|
97
|
+
(b) You must cause any modified files to carry prominent notices
|
|
98
|
+
stating that You changed the files; and
|
|
99
|
+
|
|
100
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
101
|
+
that You distribute, all copyright, patent, trademark, and
|
|
102
|
+
attribution notices from the Source form of the Work,
|
|
103
|
+
excluding those notices that do not pertain to any part of
|
|
104
|
+
the Derivative Works; and
|
|
105
|
+
|
|
106
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
107
|
+
distribution, then any Derivative Works that You distribute must
|
|
108
|
+
include a readable copy of the attribution notices contained
|
|
109
|
+
within such NOTICE file, excluding those notices that do not
|
|
110
|
+
pertain to any part of the Derivative Works, in at least one
|
|
111
|
+
of the following places: within a NOTICE text file distributed
|
|
112
|
+
as part of the Derivative Works; within the Source form or
|
|
113
|
+
documentation, if provided along with the Derivative Works; or,
|
|
114
|
+
within a display generated by the Derivative Works, if and
|
|
115
|
+
wherever such third-party notices normally appear. The contents
|
|
116
|
+
of the NOTICE file are for informational purposes only and
|
|
117
|
+
do not modify the License. You may add Your own attribution
|
|
118
|
+
notices within Derivative Works that You distribute, alongside
|
|
119
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
120
|
+
that such additional attribution notices cannot be construed
|
|
121
|
+
as modifying the License.
|
|
122
|
+
|
|
123
|
+
You may add Your own copyright statement to Your modifications and
|
|
124
|
+
may provide additional or different license terms and conditions
|
|
125
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
126
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
127
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
128
|
+
the conditions stated in this License.
|
|
129
|
+
|
|
130
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
131
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
132
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
133
|
+
this License, without any additional terms or conditions.
|
|
134
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
135
|
+
the terms of any separate license agreement you may have executed
|
|
136
|
+
with Licensor regarding such Contributions.
|
|
137
|
+
|
|
138
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
139
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
140
|
+
except as required for reasonable and customary use in describing the
|
|
141
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
142
|
+
|
|
143
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
144
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
145
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
146
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
147
|
+
implied, including, without limitation, any warranties or conditions
|
|
148
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
149
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
150
|
+
appropriateness of using or redistributing the Work and assume any
|
|
151
|
+
risks associated with Your exercise of permissions under this License.
|
|
152
|
+
|
|
153
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
154
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
155
|
+
unless required by applicable law (such as deliberate and grossly
|
|
156
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
157
|
+
liable to You for damages, including any direct, indirect, special,
|
|
158
|
+
incidental, or consequential damages of any character arising as a
|
|
159
|
+
result of this License or out of the use or inability to use the
|
|
160
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
161
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
162
|
+
other commercial damages or losses), even if such Contributor
|
|
163
|
+
has been advised of the possibility of such damages.
|
|
164
|
+
|
|
165
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
166
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
167
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
168
|
+
or other liability obligations and/or rights consistent with this
|
|
169
|
+
License. However, in accepting such obligations, You may act only
|
|
170
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
171
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
172
|
+
defend, and hold each Contributor harmless for any liability
|
|
173
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
174
|
+
of your accepting any such warranty or additional liability.
|
|
175
|
+
|
|
176
|
+
END OF TERMS AND CONDITIONS
|
|
177
|
+
|
|
178
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
179
|
+
|
|
180
|
+
To apply the Apache License to your work, attach the following
|
|
181
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
182
|
+
replaced with your own identifying information. (Don't include
|
|
183
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
184
|
+
comment syntax for the file format. We also recommend that a
|
|
185
|
+
file or class name and description of purpose be included on the
|
|
186
|
+
same "printed page" as the copyright notice for easier
|
|
187
|
+
identification within third-party archives.
|
|
188
|
+
|
|
189
|
+
Copyright 2026 Miyelani, Inc.
|
|
190
|
+
|
|
191
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
192
|
+
you may not use this file except in compliance with the License.
|
|
193
|
+
You may obtain a copy of the License at
|
|
194
|
+
|
|
195
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
196
|
+
|
|
197
|
+
Unless required by applicable law or agreed to in writing, software
|
|
198
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
199
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
200
|
+
See the License for the specific language governing permissions and
|
|
201
|
+
limitations under the License.
|
oblet-0.0.0/PKG-INFO
ADDED
|
@@ -0,0 +1,103 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: oblet
|
|
3
|
+
Version: 0.0.0
|
|
4
|
+
Summary: Python SDK for the oblet control plane.
|
|
5
|
+
Project-URL: Homepage, https://oblet.dev
|
|
6
|
+
Project-URL: Source, https://github.com/oblet-dev/oblet
|
|
7
|
+
Author: Miyelani, Inc.
|
|
8
|
+
License-Expression: Apache-2.0
|
|
9
|
+
License-File: LICENSE
|
|
10
|
+
Requires-Python: >=3.10
|
|
11
|
+
Requires-Dist: biscuit-python<0.4,>=0.3
|
|
12
|
+
Requires-Dist: connect-python<0.10,>=0.9.0
|
|
13
|
+
Requires-Dist: cryptography>=44
|
|
14
|
+
Requires-Dist: protobuf>=5
|
|
15
|
+
Requires-Dist: pyhpke<0.7,>=0.6.4
|
|
16
|
+
Description-Content-Type: text/markdown
|
|
17
|
+
|
|
18
|
+
<!--
|
|
19
|
+
SPDX-FileCopyrightText: 2026 Miyelani, Inc.
|
|
20
|
+
SPDX-License-Identifier: Apache-2.0
|
|
21
|
+
-->
|
|
22
|
+
|
|
23
|
+
# oblet — Python SDK
|
|
24
|
+
|
|
25
|
+
The Python client SDK for the oblet control plane. It is a hand-written native
|
|
26
|
+
surface over Buf-generated Connect plumbing, mirroring the Go reference SDK at
|
|
27
|
+
`pkg/client`: one client per service, native parameter and result types, typed
|
|
28
|
+
errors carrying the wire reason, point-in-time reads, and offline
|
|
29
|
+
capability-token attenuation. Both a synchronous `Client` and an asyncio
|
|
30
|
+
`AsyncClient` are provided over the same native types.
|
|
31
|
+
|
|
32
|
+
The package is self-contained — its own dependency closure, its own generated
|
|
33
|
+
stubs committed under `src/oblet/` — and extracts to a standalone repository by
|
|
34
|
+
moving this directory.
|
|
35
|
+
|
|
36
|
+
## Install
|
|
37
|
+
|
|
38
|
+
```
|
|
39
|
+
pip install oblet
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
## Synchronous
|
|
43
|
+
|
|
44
|
+
```python
|
|
45
|
+
import oblet
|
|
46
|
+
|
|
47
|
+
client = oblet.Client("https://control.example.com", token="<capability token>")
|
|
48
|
+
|
|
49
|
+
obj = client.object.head(oblet.object.HeadParams(workspace="ws", branch="main", key="doc.txt"))
|
|
50
|
+
print(obj.key, obj.size)
|
|
51
|
+
|
|
52
|
+
# Point-in-time read pinned to an audit leaf.
|
|
53
|
+
old = client.object.head(
|
|
54
|
+
oblet.object.HeadParams(workspace="ws", branch="main", key="doc.txt"),
|
|
55
|
+
oblet.CallOptions(at_leaf=42),
|
|
56
|
+
)
|
|
57
|
+
```
|
|
58
|
+
|
|
59
|
+
## Asyncio
|
|
60
|
+
|
|
61
|
+
```python
|
|
62
|
+
import oblet
|
|
63
|
+
|
|
64
|
+
client = await oblet.AsyncClient.connect("https://control.example.com", token="<capability token>")
|
|
65
|
+
obj = await client.object.head(oblet.object.HeadParams(workspace="ws", branch="main", key="doc.txt"))
|
|
66
|
+
```
|
|
67
|
+
|
|
68
|
+
`AsyncClient` is built through the `await AsyncClient.connect(...)` factory so the
|
|
69
|
+
one-shot health ping can run; everything else mirrors `Client`.
|
|
70
|
+
|
|
71
|
+
## Typed errors
|
|
72
|
+
|
|
73
|
+
```python
|
|
74
|
+
try:
|
|
75
|
+
client.object.head(oblet.object.HeadParams(workspace="ws", branch="main", key="missing"))
|
|
76
|
+
except oblet.PermissionDenied as err:
|
|
77
|
+
print(err.reason) # "pdp_denied"
|
|
78
|
+
except oblet.Error as err: # base of every wire error
|
|
79
|
+
print(oblet.reason_of(err))
|
|
80
|
+
```
|
|
81
|
+
|
|
82
|
+
## Offline token attenuation
|
|
83
|
+
|
|
84
|
+
```python
|
|
85
|
+
narrower = oblet.attenuate_token(token, ['resource == "doc1"'], ttl_seconds=3600, public_key=issuer_hex)
|
|
86
|
+
```
|
|
87
|
+
|
|
88
|
+
## Layout
|
|
89
|
+
|
|
90
|
+
- `src/oblet/` — the public package; `__init__.py` re-exports only.
|
|
91
|
+
- `src/oblet/<service>/` — the native surface; the generated wire layer is the
|
|
92
|
+
`v1alpha1/` subpackage beneath it.
|
|
93
|
+
- `tests/` — per-service tests against a real in-process Connect server, plus the
|
|
94
|
+
conformance gates.
|
|
95
|
+
|
|
96
|
+
## Development
|
|
97
|
+
|
|
98
|
+
```
|
|
99
|
+
make sdk-python-gen # regenerate the wire layer from api/proto
|
|
100
|
+
make sdk-python # ruff, pyright, pytest
|
|
101
|
+
```
|
|
102
|
+
|
|
103
|
+
See `oblet-dev/design-docs/adr/0076-public-python-sdk.md` for the design.
|
oblet-0.0.0/README.md
ADDED
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
<!--
|
|
2
|
+
SPDX-FileCopyrightText: 2026 Miyelani, Inc.
|
|
3
|
+
SPDX-License-Identifier: Apache-2.0
|
|
4
|
+
-->
|
|
5
|
+
|
|
6
|
+
# oblet — Python SDK
|
|
7
|
+
|
|
8
|
+
The Python client SDK for the oblet control plane. It is a hand-written native
|
|
9
|
+
surface over Buf-generated Connect plumbing, mirroring the Go reference SDK at
|
|
10
|
+
`pkg/client`: one client per service, native parameter and result types, typed
|
|
11
|
+
errors carrying the wire reason, point-in-time reads, and offline
|
|
12
|
+
capability-token attenuation. Both a synchronous `Client` and an asyncio
|
|
13
|
+
`AsyncClient` are provided over the same native types.
|
|
14
|
+
|
|
15
|
+
The package is self-contained — its own dependency closure, its own generated
|
|
16
|
+
stubs committed under `src/oblet/` — and extracts to a standalone repository by
|
|
17
|
+
moving this directory.
|
|
18
|
+
|
|
19
|
+
## Install
|
|
20
|
+
|
|
21
|
+
```
|
|
22
|
+
pip install oblet
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
## Synchronous
|
|
26
|
+
|
|
27
|
+
```python
|
|
28
|
+
import oblet
|
|
29
|
+
|
|
30
|
+
client = oblet.Client("https://control.example.com", token="<capability token>")
|
|
31
|
+
|
|
32
|
+
obj = client.object.head(oblet.object.HeadParams(workspace="ws", branch="main", key="doc.txt"))
|
|
33
|
+
print(obj.key, obj.size)
|
|
34
|
+
|
|
35
|
+
# Point-in-time read pinned to an audit leaf.
|
|
36
|
+
old = client.object.head(
|
|
37
|
+
oblet.object.HeadParams(workspace="ws", branch="main", key="doc.txt"),
|
|
38
|
+
oblet.CallOptions(at_leaf=42),
|
|
39
|
+
)
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
## Asyncio
|
|
43
|
+
|
|
44
|
+
```python
|
|
45
|
+
import oblet
|
|
46
|
+
|
|
47
|
+
client = await oblet.AsyncClient.connect("https://control.example.com", token="<capability token>")
|
|
48
|
+
obj = await client.object.head(oblet.object.HeadParams(workspace="ws", branch="main", key="doc.txt"))
|
|
49
|
+
```
|
|
50
|
+
|
|
51
|
+
`AsyncClient` is built through the `await AsyncClient.connect(...)` factory so the
|
|
52
|
+
one-shot health ping can run; everything else mirrors `Client`.
|
|
53
|
+
|
|
54
|
+
## Typed errors
|
|
55
|
+
|
|
56
|
+
```python
|
|
57
|
+
try:
|
|
58
|
+
client.object.head(oblet.object.HeadParams(workspace="ws", branch="main", key="missing"))
|
|
59
|
+
except oblet.PermissionDenied as err:
|
|
60
|
+
print(err.reason) # "pdp_denied"
|
|
61
|
+
except oblet.Error as err: # base of every wire error
|
|
62
|
+
print(oblet.reason_of(err))
|
|
63
|
+
```
|
|
64
|
+
|
|
65
|
+
## Offline token attenuation
|
|
66
|
+
|
|
67
|
+
```python
|
|
68
|
+
narrower = oblet.attenuate_token(token, ['resource == "doc1"'], ttl_seconds=3600, public_key=issuer_hex)
|
|
69
|
+
```
|
|
70
|
+
|
|
71
|
+
## Layout
|
|
72
|
+
|
|
73
|
+
- `src/oblet/` — the public package; `__init__.py` re-exports only.
|
|
74
|
+
- `src/oblet/<service>/` — the native surface; the generated wire layer is the
|
|
75
|
+
`v1alpha1/` subpackage beneath it.
|
|
76
|
+
- `tests/` — per-service tests against a real in-process Connect server, plus the
|
|
77
|
+
conformance gates.
|
|
78
|
+
|
|
79
|
+
## Development
|
|
80
|
+
|
|
81
|
+
```
|
|
82
|
+
make sdk-python-gen # regenerate the wire layer from api/proto
|
|
83
|
+
make sdk-python # ruff, pyright, pytest
|
|
84
|
+
```
|
|
85
|
+
|
|
86
|
+
See `oblet-dev/design-docs/adr/0076-public-python-sdk.md` for the design.
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# SPDX-FileCopyrightText: 2026 Miyelani, Inc.
|
|
2
|
+
# SPDX-License-Identifier: Apache-2.0
|
|
3
|
+
#
|
|
4
|
+
# Generates the Python wire layer (protobuf messages + Connect clients) from the
|
|
5
|
+
# api/proto module into src/, landing at src/oblet/<package path>/. Run from the
|
|
6
|
+
# repository root via `make sdk-python-gen`. The generated tree is committed; the
|
|
7
|
+
# regeneration gate fails CI if `buf generate` produces a diff.
|
|
8
|
+
version: v2
|
|
9
|
+
plugins:
|
|
10
|
+
- remote: buf.build/protocolbuffers/python:v35.0
|
|
11
|
+
out: .
|
|
12
|
+
- remote: buf.build/protocolbuffers/pyi:v35.0
|
|
13
|
+
out: .
|
|
14
|
+
- remote: buf.build/connectrpc/python:v0.9.0
|
|
15
|
+
out: .
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
# SPDX-FileCopyrightText: 2026 Miyelani, Inc.
|
|
2
|
+
# SPDX-License-Identifier: Apache-2.0
|
|
3
|
+
|
|
4
|
+
[project]
|
|
5
|
+
name = "oblet"
|
|
6
|
+
description = "Python SDK for the oblet control plane."
|
|
7
|
+
readme = "README.md"
|
|
8
|
+
license = "Apache-2.0"
|
|
9
|
+
license-files = ["LICENSE"]
|
|
10
|
+
authors = [{ name = "Miyelani, Inc." }]
|
|
11
|
+
requires-python = ">=3.10"
|
|
12
|
+
dynamic = ["version"]
|
|
13
|
+
dependencies = [
|
|
14
|
+
"connect-python>=0.9.0,<0.10",
|
|
15
|
+
"biscuit-python>=0.3,<0.4",
|
|
16
|
+
"protobuf>=5",
|
|
17
|
+
"pyhpke>=0.6.4,<0.7",
|
|
18
|
+
"cryptography>=44",
|
|
19
|
+
]
|
|
20
|
+
|
|
21
|
+
[project.urls]
|
|
22
|
+
Homepage = "https://oblet.dev"
|
|
23
|
+
Source = "https://github.com/oblet-dev/oblet"
|
|
24
|
+
|
|
25
|
+
[dependency-groups]
|
|
26
|
+
dev = [
|
|
27
|
+
"ruff>=0.6",
|
|
28
|
+
"pyright>=1.1.380",
|
|
29
|
+
"pytest>=8",
|
|
30
|
+
]
|
|
31
|
+
|
|
32
|
+
[build-system]
|
|
33
|
+
requires = ["hatchling"]
|
|
34
|
+
build-backend = "hatchling.build"
|
|
35
|
+
|
|
36
|
+
[tool.hatch.version]
|
|
37
|
+
path = "src/oblet/_version.py"
|
|
38
|
+
|
|
39
|
+
[tool.hatch.build.targets.wheel]
|
|
40
|
+
packages = ["src/oblet", "src/buf"]
|
|
41
|
+
|
|
42
|
+
[tool.ruff]
|
|
43
|
+
src = ["src", "tests"]
|
|
44
|
+
line-length = 100
|
|
45
|
+
target-version = "py310"
|
|
46
|
+
extend-exclude = ["src/oblet/**/v1alpha1", "src/oblet/api/v1", "src/buf"]
|
|
47
|
+
|
|
48
|
+
[tool.ruff.lint]
|
|
49
|
+
select = ["E", "F", "I", "UP", "B"]
|
|
50
|
+
|
|
51
|
+
[tool.pytest.ini_options]
|
|
52
|
+
testpaths = ["tests"]
|
|
53
|
+
# Model dataclasses named after the TestDelivery RPC (e.g. TestDeliveryParams)
|
|
54
|
+
# are not pytest test classes; the suite is function-based only.
|
|
55
|
+
python_classes = []
|
|
56
|
+
filterwarnings = ["ignore::pytest.PytestCollectionWarning"]
|
|
57
|
+
|
|
58
|
+
[tool.pyright]
|
|
59
|
+
include = ["src/oblet"]
|
|
60
|
+
exclude = [
|
|
61
|
+
"src/oblet/**/v1alpha1",
|
|
62
|
+
"src/oblet/api/v1",
|
|
63
|
+
"**/*_pb2.py",
|
|
64
|
+
"**/*_pb2.pyi",
|
|
65
|
+
"**/*_connect.py",
|
|
66
|
+
]
|
|
67
|
+
pythonVersion = "3.10"
|
|
68
|
+
typeCheckingMode = "strict"
|
|
File without changes
|
|
File without changes
|