sift-stream-bindings 0.2.0rc1__cp313-cp313-win_amd64.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.
- sift_stream_bindings/__init__.py +5 -0
- sift_stream_bindings/__init__.pyi +367 -0
- sift_stream_bindings/py.typed +0 -0
- sift_stream_bindings/sift_stream_bindings.cp313-win_amd64.pyd +0 -0
- sift_stream_bindings-0.2.0rc1.dist-info/METADATA +9 -0
- sift_stream_bindings-0.2.0rc1.dist-info/RECORD +7 -0
- sift_stream_bindings-0.2.0rc1.dist-info/WHEEL +4 -0
|
@@ -0,0 +1,367 @@
|
|
|
1
|
+
# This file is automatically generated by pyo3_stub_gen
|
|
2
|
+
|
|
3
|
+
__all__ = [
|
|
4
|
+
"BackupMetricsSnapshotPy",
|
|
5
|
+
"ChannelBitFieldElementPy",
|
|
6
|
+
"ChannelConfigPy",
|
|
7
|
+
"ChannelDataTypePy",
|
|
8
|
+
"ChannelEnumPy",
|
|
9
|
+
"ChannelEnumTypePy",
|
|
10
|
+
"ChannelValuePy",
|
|
11
|
+
"ChannelValueTypePy",
|
|
12
|
+
"CheckpointMetricsSnapshotPy",
|
|
13
|
+
"DiskBackupPolicyPy",
|
|
14
|
+
"DurationPy",
|
|
15
|
+
"FlowConfigPy",
|
|
16
|
+
"FlowPy",
|
|
17
|
+
"IngestWithConfigDataChannelValuePy",
|
|
18
|
+
"IngestWithConfigDataStreamRequestPy",
|
|
19
|
+
"IngestionConfigFormPy",
|
|
20
|
+
"MetadataPy",
|
|
21
|
+
"MetadataValuePy",
|
|
22
|
+
"RecoveryStrategyPy",
|
|
23
|
+
"RetryPolicyPy",
|
|
24
|
+
"RollingFilePolicyPy",
|
|
25
|
+
"RunFormPy",
|
|
26
|
+
"RunSelectorPy",
|
|
27
|
+
"SiftStreamBuilderPy",
|
|
28
|
+
"SiftStreamMetricsSnapshotPy",
|
|
29
|
+
"SiftStreamPy",
|
|
30
|
+
"TimeValuePy",
|
|
31
|
+
"ValuePy",
|
|
32
|
+
]
|
|
33
|
+
|
|
34
|
+
import builtins
|
|
35
|
+
import typing
|
|
36
|
+
from enum import Enum
|
|
37
|
+
|
|
38
|
+
@typing.final
|
|
39
|
+
class BackupMetricsSnapshotPy:
|
|
40
|
+
cur_checkpoint_file_count: builtins.int
|
|
41
|
+
cur_checkpoint_cur_file_size: builtins.int
|
|
42
|
+
cur_checkpoint_bytes: builtins.int
|
|
43
|
+
cur_checkpoint_messages: builtins.int
|
|
44
|
+
total_file_count: builtins.int
|
|
45
|
+
total_bytes: builtins.int
|
|
46
|
+
total_messages: builtins.int
|
|
47
|
+
files_pending_ingestion: builtins.int
|
|
48
|
+
files_ingested: builtins.int
|
|
49
|
+
cur_ingest_retries: builtins.int
|
|
50
|
+
|
|
51
|
+
@typing.final
|
|
52
|
+
class ChannelBitFieldElementPy:
|
|
53
|
+
name: builtins.str
|
|
54
|
+
index: builtins.int
|
|
55
|
+
bit_count: builtins.int
|
|
56
|
+
def __new__(cls, name:builtins.str, index:builtins.int, bit_count:builtins.int) -> ChannelBitFieldElementPy: ...
|
|
57
|
+
|
|
58
|
+
@typing.final
|
|
59
|
+
class ChannelConfigPy:
|
|
60
|
+
name: builtins.str
|
|
61
|
+
unit: builtins.str
|
|
62
|
+
description: builtins.str
|
|
63
|
+
data_type: ChannelDataTypePy
|
|
64
|
+
enum_types: builtins.list[ChannelEnumTypePy]
|
|
65
|
+
bit_field_elements: builtins.list[ChannelBitFieldElementPy]
|
|
66
|
+
def __new__(cls, name:builtins.str, unit:builtins.str, description:builtins.str, data_type:ChannelDataTypePy, enum_types:typing.Sequence[ChannelEnumTypePy], bit_field_elements:typing.Sequence[ChannelBitFieldElementPy]) -> ChannelConfigPy: ...
|
|
67
|
+
|
|
68
|
+
@typing.final
|
|
69
|
+
class ChannelEnumPy:
|
|
70
|
+
def __new__(cls, val:builtins.int) -> ChannelEnumPy: ...
|
|
71
|
+
|
|
72
|
+
@typing.final
|
|
73
|
+
class ChannelEnumTypePy:
|
|
74
|
+
name: builtins.str
|
|
75
|
+
key: builtins.int
|
|
76
|
+
def __new__(cls, name:builtins.str, key:builtins.int) -> ChannelEnumTypePy: ...
|
|
77
|
+
|
|
78
|
+
@typing.final
|
|
79
|
+
class ChannelValuePy:
|
|
80
|
+
name: builtins.str
|
|
81
|
+
value: ValuePy
|
|
82
|
+
def __new__(cls, name:builtins.str, value:ValuePy) -> ChannelValuePy: ...
|
|
83
|
+
|
|
84
|
+
@typing.final
|
|
85
|
+
class ChannelValueTypePy:
|
|
86
|
+
@staticmethod
|
|
87
|
+
def bool(value:builtins.bool) -> ChannelValueTypePy: ...
|
|
88
|
+
@staticmethod
|
|
89
|
+
def string(value:builtins.str) -> ChannelValueTypePy: ...
|
|
90
|
+
@staticmethod
|
|
91
|
+
def float(value:builtins.float) -> ChannelValueTypePy: ...
|
|
92
|
+
@staticmethod
|
|
93
|
+
def double(value:builtins.float) -> ChannelValueTypePy: ...
|
|
94
|
+
@staticmethod
|
|
95
|
+
def int32(value:builtins.int) -> ChannelValueTypePy: ...
|
|
96
|
+
@staticmethod
|
|
97
|
+
def uint32(value:builtins.int) -> ChannelValueTypePy: ...
|
|
98
|
+
@staticmethod
|
|
99
|
+
def int64(value:builtins.int) -> ChannelValueTypePy: ...
|
|
100
|
+
@staticmethod
|
|
101
|
+
def uint64(value:builtins.int) -> ChannelValueTypePy: ...
|
|
102
|
+
@staticmethod
|
|
103
|
+
def enum_value(value:builtins.int) -> ChannelValueTypePy: ...
|
|
104
|
+
@staticmethod
|
|
105
|
+
def bitfield(value:typing.Sequence[builtins.int]) -> ChannelValueTypePy: ...
|
|
106
|
+
@staticmethod
|
|
107
|
+
def bytes(value:typing.Sequence[builtins.int]) -> ChannelValueTypePy: ...
|
|
108
|
+
@staticmethod
|
|
109
|
+
def empty() -> ChannelValueTypePy: ...
|
|
110
|
+
|
|
111
|
+
@typing.final
|
|
112
|
+
class CheckpointMetricsSnapshotPy:
|
|
113
|
+
checkpoint_count: builtins.int
|
|
114
|
+
failed_checkpoint_count: builtins.int
|
|
115
|
+
checkpoint_timer_reached_cnt: builtins.int
|
|
116
|
+
checkpoint_manually_reached_cnt: builtins.int
|
|
117
|
+
cur_elapsed_secs: builtins.float
|
|
118
|
+
cur_messages_sent: builtins.int
|
|
119
|
+
cur_message_rate: builtins.float
|
|
120
|
+
cur_bytes_sent: builtins.int
|
|
121
|
+
cur_byte_rate: builtins.float
|
|
122
|
+
|
|
123
|
+
@typing.final
|
|
124
|
+
class DiskBackupPolicyPy:
|
|
125
|
+
backups_dir: typing.Optional[builtins.str]
|
|
126
|
+
max_backup_file_size: builtins.int
|
|
127
|
+
rolling_file_policy: RollingFilePolicyPy
|
|
128
|
+
retain_backups: builtins.bool
|
|
129
|
+
def __new__(cls, backups_dir:typing.Optional[builtins.str], max_backup_file_size:builtins.int, rolling_file_policy:RollingFilePolicyPy, retain_backups:builtins.bool) -> DiskBackupPolicyPy: ...
|
|
130
|
+
@staticmethod
|
|
131
|
+
def default() -> DiskBackupPolicyPy: ...
|
|
132
|
+
|
|
133
|
+
@typing.final
|
|
134
|
+
class DurationPy:
|
|
135
|
+
secs: builtins.int
|
|
136
|
+
nanos: builtins.int
|
|
137
|
+
def __new__(cls, secs:builtins.int, nanos:builtins.int) -> DurationPy: ...
|
|
138
|
+
|
|
139
|
+
@typing.final
|
|
140
|
+
class FlowConfigPy:
|
|
141
|
+
name: builtins.str
|
|
142
|
+
channels: builtins.list[ChannelConfigPy]
|
|
143
|
+
def __new__(cls, name:builtins.str, channels:typing.Sequence[ChannelConfigPy]) -> FlowConfigPy: ...
|
|
144
|
+
|
|
145
|
+
@typing.final
|
|
146
|
+
class FlowPy:
|
|
147
|
+
def __new__(cls, flow_name:builtins.str, timestamp:TimeValuePy, values:typing.Sequence[ChannelValuePy]) -> FlowPy: ...
|
|
148
|
+
|
|
149
|
+
@typing.final
|
|
150
|
+
class IngestWithConfigDataChannelValuePy:
|
|
151
|
+
ty: ChannelValueTypePy
|
|
152
|
+
@staticmethod
|
|
153
|
+
def bool(value:builtins.bool) -> IngestWithConfigDataChannelValuePy: ...
|
|
154
|
+
@staticmethod
|
|
155
|
+
def string(value:builtins.str) -> IngestWithConfigDataChannelValuePy: ...
|
|
156
|
+
@staticmethod
|
|
157
|
+
def float(value:builtins.float) -> IngestWithConfigDataChannelValuePy: ...
|
|
158
|
+
@staticmethod
|
|
159
|
+
def double(value:builtins.float) -> IngestWithConfigDataChannelValuePy: ...
|
|
160
|
+
@staticmethod
|
|
161
|
+
def int32(value:builtins.int) -> IngestWithConfigDataChannelValuePy: ...
|
|
162
|
+
@staticmethod
|
|
163
|
+
def uint32(value:builtins.int) -> IngestWithConfigDataChannelValuePy: ...
|
|
164
|
+
@staticmethod
|
|
165
|
+
def int64(value:builtins.int) -> IngestWithConfigDataChannelValuePy: ...
|
|
166
|
+
@staticmethod
|
|
167
|
+
def uint64(value:builtins.int) -> IngestWithConfigDataChannelValuePy: ...
|
|
168
|
+
@staticmethod
|
|
169
|
+
def enum_value(value:builtins.int) -> IngestWithConfigDataChannelValuePy: ...
|
|
170
|
+
@staticmethod
|
|
171
|
+
def bitfield(value:typing.Sequence[builtins.int]) -> IngestWithConfigDataChannelValuePy: ...
|
|
172
|
+
@staticmethod
|
|
173
|
+
def empty() -> IngestWithConfigDataChannelValuePy: ...
|
|
174
|
+
|
|
175
|
+
@typing.final
|
|
176
|
+
class IngestWithConfigDataStreamRequestPy:
|
|
177
|
+
ingestion_config_id: builtins.str
|
|
178
|
+
flow: builtins.str
|
|
179
|
+
timestamp: typing.Optional[TimeValuePy]
|
|
180
|
+
channel_values: builtins.list[IngestWithConfigDataChannelValuePy]
|
|
181
|
+
run_id: builtins.str
|
|
182
|
+
end_stream_on_validation_error: builtins.bool
|
|
183
|
+
organization_id: builtins.str
|
|
184
|
+
def __new__(cls, ingestion_config_id:builtins.str, flow:builtins.str, timestamp:typing.Optional[TimeValuePy], channel_values:typing.Sequence[IngestWithConfigDataChannelValuePy], run_id:builtins.str, end_stream_on_validation_error:builtins.bool, organization_id:builtins.str) -> IngestWithConfigDataStreamRequestPy: ...
|
|
185
|
+
|
|
186
|
+
@typing.final
|
|
187
|
+
class IngestionConfigFormPy:
|
|
188
|
+
asset_name: builtins.str
|
|
189
|
+
flows: builtins.list[FlowConfigPy]
|
|
190
|
+
client_key: builtins.str
|
|
191
|
+
def __new__(cls, asset_name:builtins.str, client_key:builtins.str, flows:typing.Sequence[FlowConfigPy]) -> IngestionConfigFormPy: ...
|
|
192
|
+
|
|
193
|
+
@typing.final
|
|
194
|
+
class MetadataPy:
|
|
195
|
+
key: builtins.str
|
|
196
|
+
value: MetadataValuePy
|
|
197
|
+
def __new__(cls, key:builtins.str, value:MetadataValuePy) -> MetadataPy: ...
|
|
198
|
+
|
|
199
|
+
@typing.final
|
|
200
|
+
class RecoveryStrategyPy:
|
|
201
|
+
@staticmethod
|
|
202
|
+
def retry_only(retry_policy:RetryPolicyPy) -> RecoveryStrategyPy: ...
|
|
203
|
+
@staticmethod
|
|
204
|
+
def retry_with_backups(retry_policy:RetryPolicyPy, disk_backup_policy:DiskBackupPolicyPy) -> RecoveryStrategyPy: ...
|
|
205
|
+
@staticmethod
|
|
206
|
+
def default() -> RecoveryStrategyPy: ...
|
|
207
|
+
|
|
208
|
+
@typing.final
|
|
209
|
+
class RetryPolicyPy:
|
|
210
|
+
max_attempts: builtins.int
|
|
211
|
+
initial_backoff: DurationPy
|
|
212
|
+
max_backoff: DurationPy
|
|
213
|
+
backoff_multiplier: builtins.int
|
|
214
|
+
def __new__(cls, max_attempts:builtins.int, initial_backoff:DurationPy, max_backoff:DurationPy, backoff_multiplier:builtins.int) -> RetryPolicyPy: ...
|
|
215
|
+
@staticmethod
|
|
216
|
+
def default() -> RetryPolicyPy: ...
|
|
217
|
+
|
|
218
|
+
@typing.final
|
|
219
|
+
class RollingFilePolicyPy:
|
|
220
|
+
def __new__(cls, max_file_count:typing.Optional[builtins.int]) -> RollingFilePolicyPy: ...
|
|
221
|
+
@staticmethod
|
|
222
|
+
def default() -> RollingFilePolicyPy: ...
|
|
223
|
+
|
|
224
|
+
@typing.final
|
|
225
|
+
class RunFormPy:
|
|
226
|
+
name: builtins.str
|
|
227
|
+
client_key: builtins.str
|
|
228
|
+
description: typing.Optional[builtins.str]
|
|
229
|
+
tags: typing.Optional[builtins.list[builtins.str]]
|
|
230
|
+
metadata: typing.Optional[builtins.list[MetadataPy]]
|
|
231
|
+
def __new__(cls, name:builtins.str, client_key:builtins.str, description:typing.Optional[builtins.str], tags:typing.Optional[typing.Sequence[builtins.str]], metadata:typing.Optional[typing.Sequence[MetadataPy]]) -> RunFormPy: ...
|
|
232
|
+
|
|
233
|
+
@typing.final
|
|
234
|
+
class RunSelectorPy:
|
|
235
|
+
@staticmethod
|
|
236
|
+
def by_id(run_id:builtins.str) -> RunSelectorPy: ...
|
|
237
|
+
@staticmethod
|
|
238
|
+
def by_form(form:RunFormPy) -> RunSelectorPy: ...
|
|
239
|
+
|
|
240
|
+
@typing.final
|
|
241
|
+
class SiftStreamBuilderPy:
|
|
242
|
+
uri: builtins.str
|
|
243
|
+
apikey: builtins.str
|
|
244
|
+
enable_tls: builtins.bool
|
|
245
|
+
ingestion_config: typing.Optional[IngestionConfigFormPy]
|
|
246
|
+
recovery_strategy: typing.Optional[RecoveryStrategyPy]
|
|
247
|
+
checkpoint_interval: typing.Optional[DurationPy]
|
|
248
|
+
run: typing.Optional[RunFormPy]
|
|
249
|
+
run_id: typing.Optional[builtins.str]
|
|
250
|
+
asset_tags: typing.Optional[builtins.list[builtins.str]]
|
|
251
|
+
metadata: typing.Optional[builtins.list[MetadataPy]]
|
|
252
|
+
def __new__(cls, uri:builtins.str, apikey:builtins.str) -> SiftStreamBuilderPy: ...
|
|
253
|
+
def build(self) -> typing.Any: ...
|
|
254
|
+
|
|
255
|
+
@typing.final
|
|
256
|
+
class SiftStreamMetricsSnapshotPy:
|
|
257
|
+
elapsed_secs: builtins.float
|
|
258
|
+
loaded_flows: builtins.int
|
|
259
|
+
unique_flows_received: builtins.int
|
|
260
|
+
messages_received: builtins.int
|
|
261
|
+
messages_sent: builtins.int
|
|
262
|
+
message_rate: builtins.float
|
|
263
|
+
bytes_sent: builtins.int
|
|
264
|
+
byte_rate: builtins.float
|
|
265
|
+
messages_sent_to_backup: builtins.int
|
|
266
|
+
cur_retry_count: builtins.int
|
|
267
|
+
checkpoint: CheckpointMetricsSnapshotPy
|
|
268
|
+
backups: BackupMetricsSnapshotPy
|
|
269
|
+
|
|
270
|
+
@typing.final
|
|
271
|
+
class SiftStreamPy:
|
|
272
|
+
def send(self, flow:FlowPy) -> typing.Any: ...
|
|
273
|
+
def send_requests(self, requests:typing.Sequence[IngestWithConfigDataStreamRequestPy]) -> typing.Any: ...
|
|
274
|
+
def get_metrics_snapshot(self) -> SiftStreamMetricsSnapshotPy: ...
|
|
275
|
+
def add_new_flows(self, flow_configs:typing.Sequence[FlowConfigPy]) -> typing.Any: ...
|
|
276
|
+
def attach_run(self, run_selector:RunSelectorPy) -> typing.Any: ...
|
|
277
|
+
def detach_run(self) -> None: ...
|
|
278
|
+
def run(self) -> typing.Optional[builtins.str]: ...
|
|
279
|
+
def finish(self) -> typing.Any: ...
|
|
280
|
+
|
|
281
|
+
@typing.final
|
|
282
|
+
class TimeValuePy:
|
|
283
|
+
def __new__(cls) -> TimeValuePy: ...
|
|
284
|
+
@staticmethod
|
|
285
|
+
def from_timestamp(secs:builtins.int, nsecs:builtins.int) -> TimeValuePy: ...
|
|
286
|
+
@staticmethod
|
|
287
|
+
def from_timestamp_millis(millis:builtins.int) -> TimeValuePy: ...
|
|
288
|
+
@staticmethod
|
|
289
|
+
def from_timestamp_micros(micros:builtins.int) -> TimeValuePy: ...
|
|
290
|
+
@staticmethod
|
|
291
|
+
def from_timestamp_nanos(nanos:builtins.int) -> TimeValuePy: ...
|
|
292
|
+
@staticmethod
|
|
293
|
+
def from_rfc3339(val:builtins.str) -> TimeValuePy: ...
|
|
294
|
+
|
|
295
|
+
@typing.final
|
|
296
|
+
class ValuePy:
|
|
297
|
+
@staticmethod
|
|
298
|
+
def Bool(value:builtins.bool) -> ValuePy: ...
|
|
299
|
+
@staticmethod
|
|
300
|
+
def String(value:builtins.str) -> ValuePy: ...
|
|
301
|
+
@staticmethod
|
|
302
|
+
def Float(value:builtins.float) -> ValuePy: ...
|
|
303
|
+
@staticmethod
|
|
304
|
+
def Double(value:builtins.float) -> ValuePy: ...
|
|
305
|
+
@staticmethod
|
|
306
|
+
def Int32(value:builtins.int) -> ValuePy: ...
|
|
307
|
+
@staticmethod
|
|
308
|
+
def Int64(value:builtins.int) -> ValuePy: ...
|
|
309
|
+
@staticmethod
|
|
310
|
+
def Uint32(value:builtins.int) -> ValuePy: ...
|
|
311
|
+
@staticmethod
|
|
312
|
+
def Uint64(value:builtins.int) -> ValuePy: ...
|
|
313
|
+
@staticmethod
|
|
314
|
+
def Enum(value:builtins.int) -> ValuePy: ...
|
|
315
|
+
@staticmethod
|
|
316
|
+
def BitField(value:typing.Sequence[builtins.int]) -> ValuePy: ...
|
|
317
|
+
def is_bool(self) -> builtins.bool: ...
|
|
318
|
+
def is_string(self) -> builtins.bool: ...
|
|
319
|
+
def is_float(self) -> builtins.bool: ...
|
|
320
|
+
def is_double(self) -> builtins.bool: ...
|
|
321
|
+
def is_int32(self) -> builtins.bool: ...
|
|
322
|
+
def is_int64(self) -> builtins.bool: ...
|
|
323
|
+
def is_uint32(self) -> builtins.bool: ...
|
|
324
|
+
def is_uint64(self) -> builtins.bool: ...
|
|
325
|
+
def is_enum(self) -> builtins.bool: ...
|
|
326
|
+
def is_bitfield(self) -> builtins.bool: ...
|
|
327
|
+
def as_bool(self) -> builtins.bool: ...
|
|
328
|
+
def as_string(self) -> builtins.str: ...
|
|
329
|
+
def as_float(self) -> builtins.float: ...
|
|
330
|
+
def as_double(self) -> builtins.float: ...
|
|
331
|
+
def as_int32(self) -> builtins.int: ...
|
|
332
|
+
def as_int64(self) -> builtins.int: ...
|
|
333
|
+
def as_uint32(self) -> builtins.int: ...
|
|
334
|
+
def as_uint64(self) -> builtins.int: ...
|
|
335
|
+
def as_enum(self) -> builtins.int: ...
|
|
336
|
+
def as_bitfield(self) -> builtins.list[builtins.int]: ...
|
|
337
|
+
|
|
338
|
+
@typing.final
|
|
339
|
+
class ChannelDataTypePy(Enum):
|
|
340
|
+
Unspecified = ...
|
|
341
|
+
Double = ...
|
|
342
|
+
String = ...
|
|
343
|
+
Enum = ...
|
|
344
|
+
BitField = ...
|
|
345
|
+
Bool = ...
|
|
346
|
+
Float = ...
|
|
347
|
+
Int32 = ...
|
|
348
|
+
Uint32 = ...
|
|
349
|
+
Int64 = ...
|
|
350
|
+
Uint64 = ...
|
|
351
|
+
Bytes = ...
|
|
352
|
+
|
|
353
|
+
@typing.final
|
|
354
|
+
class MetadataValuePy(Enum):
|
|
355
|
+
String = ...
|
|
356
|
+
Number = ...
|
|
357
|
+
Boolean = ...
|
|
358
|
+
|
|
359
|
+
def __new__(cls, obj:typing.Any) -> MetadataValuePy: ...
|
|
360
|
+
|
|
361
|
+
def __str__(self) -> builtins.str: ...
|
|
362
|
+
|
|
363
|
+
def is_string(self) -> builtins.bool: ...
|
|
364
|
+
|
|
365
|
+
def is_number(self) -> builtins.bool: ...
|
|
366
|
+
|
|
367
|
+
def is_boolean(self) -> builtins.bool: ...
|
|
File without changes
|
|
Binary file
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: sift-stream-bindings
|
|
3
|
+
Version: 0.2.0rc1
|
|
4
|
+
Classifier: Programming Language :: Rust
|
|
5
|
+
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
6
|
+
Classifier: Programming Language :: Python :: Implementation :: PyPy
|
|
7
|
+
Home-Page: https://github.com/sift-stack/sift
|
|
8
|
+
Maintainer-email: Sift Software Engineers <engineering@siftstack.com>
|
|
9
|
+
Requires-Python: >=3.8
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
sift_stream_bindings-0.2.0rc1.dist-info/METADATA,sha256=efKr1hifjUdbqwSB5oTZs8sw-Prp-d3XijzgQ7qM8sI,388
|
|
2
|
+
sift_stream_bindings-0.2.0rc1.dist-info/WHEEL,sha256=dDw60IOKMEUnwq4QdXgrJa26xPb7x-hU7jnFdYP6Jyo,97
|
|
3
|
+
sift_stream_bindings/__init__.py,sha256=ArkbnVmcnLHQiPvx9hffXgrxI4fERn19dnuruVB-iW8,163
|
|
4
|
+
sift_stream_bindings/__init__.pyi,sha256=FIeFy-LRB6ObPqLEdt7rW6YA5fkRPfs2zDEFs1x_TqE,13436
|
|
5
|
+
sift_stream_bindings/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
6
|
+
sift_stream_bindings/sift_stream_bindings.cp313-win_amd64.pyd,sha256=9akVD8Y2U85Ss46JF_TOiyHRAQNDyUqlqULYZEc-FPc,7138304
|
|
7
|
+
sift_stream_bindings-0.2.0rc1.dist-info/RECORD,,
|