defistream 1.0.6__py3-none-any.whl → 1.1.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.
- defistream/__init__.py +1 -1
- defistream/client.py +4 -0
- defistream/query.py +158 -24
- {defistream-1.0.6.dist-info → defistream-1.1.1.dist-info}/METADATA +87 -3
- defistream-1.1.1.dist-info/RECORD +11 -0
- defistream-1.0.6.dist-info/RECORD +0 -11
- {defistream-1.0.6.dist-info → defistream-1.1.1.dist-info}/WHEEL +0 -0
- {defistream-1.0.6.dist-info → defistream-1.1.1.dist-info}/licenses/LICENSE +0 -0
defistream/__init__.py
CHANGED
defistream/client.py
CHANGED
|
@@ -289,6 +289,8 @@ class DeFiStream(BaseClient):
|
|
|
289
289
|
if response.status_code >= 400:
|
|
290
290
|
self._handle_error_response(response)
|
|
291
291
|
data = response.json()
|
|
292
|
+
if isinstance(data, list):
|
|
293
|
+
return data
|
|
292
294
|
return data.get("decoders", [])
|
|
293
295
|
|
|
294
296
|
|
|
@@ -377,4 +379,6 @@ class AsyncDeFiStream(BaseClient):
|
|
|
377
379
|
if response.status_code >= 400:
|
|
378
380
|
self._handle_error_response(response)
|
|
379
381
|
data = response.json()
|
|
382
|
+
if isinstance(data, list):
|
|
383
|
+
return data
|
|
380
384
|
return data.get("decoders", [])
|
defistream/query.py
CHANGED
|
@@ -4,10 +4,84 @@ from __future__ import annotations
|
|
|
4
4
|
|
|
5
5
|
from typing import TYPE_CHECKING, Any
|
|
6
6
|
|
|
7
|
+
from .exceptions import ValidationError
|
|
8
|
+
|
|
7
9
|
if TYPE_CHECKING:
|
|
8
10
|
from .client import BaseClient
|
|
9
11
|
|
|
10
12
|
|
|
13
|
+
# Label/category parameter names that need SQL safety checks
|
|
14
|
+
_LABEL_CATEGORY_PARAMS = frozenset({
|
|
15
|
+
"involving_label", "involving_category",
|
|
16
|
+
"sender_label", "sender_category",
|
|
17
|
+
"receiver_label", "receiver_category",
|
|
18
|
+
})
|
|
19
|
+
|
|
20
|
+
# Mutual exclusivity groups: within each slot, only one key is allowed
|
|
21
|
+
_INVOLVING_SLOT = ("involving", "involving_label", "involving_category")
|
|
22
|
+
_SENDER_SLOT = ("sender", "sender_label", "sender_category")
|
|
23
|
+
_RECEIVER_SLOT = ("receiver", "receiver_label", "receiver_category")
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
def _normalize_multi(*args: str) -> str:
|
|
27
|
+
"""Join varargs into a comma-separated string.
|
|
28
|
+
|
|
29
|
+
Accepts one or more strings. If a single pre-joined string is passed
|
|
30
|
+
(e.g. "a,b") it passes through unchanged.
|
|
31
|
+
|
|
32
|
+
Raises:
|
|
33
|
+
ValueError: If no arguments are provided.
|
|
34
|
+
"""
|
|
35
|
+
if not args:
|
|
36
|
+
raise ValueError("At least one value is required")
|
|
37
|
+
return ",".join(args)
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
def _validate_sql_safety(params: dict[str, Any]) -> None:
|
|
41
|
+
"""Reject label/category values containing quotes or backslashes.
|
|
42
|
+
|
|
43
|
+
Raises:
|
|
44
|
+
ValidationError: If any label/category value contains ' or \\.
|
|
45
|
+
"""
|
|
46
|
+
for key in _LABEL_CATEGORY_PARAMS:
|
|
47
|
+
value = params.get(key)
|
|
48
|
+
if value is not None and isinstance(value, str):
|
|
49
|
+
if "'" in value or "\\" in value:
|
|
50
|
+
raise ValidationError(
|
|
51
|
+
f"Parameter '{key}' contains unsafe characters (single quote or backslash)"
|
|
52
|
+
)
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+
def _validate_mutual_exclusivity(params: dict[str, Any]) -> None:
|
|
56
|
+
"""Enforce mutual exclusivity between filter slots.
|
|
57
|
+
|
|
58
|
+
Within each slot (involving, sender, receiver) only one key is allowed.
|
|
59
|
+
Cross-slot: involving* cannot combine with sender* or receiver*.
|
|
60
|
+
|
|
61
|
+
Raises:
|
|
62
|
+
ValidationError: If conflicting parameters are present.
|
|
63
|
+
"""
|
|
64
|
+
def _check_slot(slot: tuple[str, ...], slot_name: str) -> str | None:
|
|
65
|
+
present = [k for k in slot if k in params]
|
|
66
|
+
if len(present) > 1:
|
|
67
|
+
raise ValidationError(
|
|
68
|
+
f"Cannot combine {present[0]} with {present[1]} — "
|
|
69
|
+
f"pick one {slot_name} filter"
|
|
70
|
+
)
|
|
71
|
+
return present[0] if present else None
|
|
72
|
+
|
|
73
|
+
involving_key = _check_slot(_INVOLVING_SLOT, "involving")
|
|
74
|
+
sender_key = _check_slot(_SENDER_SLOT, "sender")
|
|
75
|
+
receiver_key = _check_slot(_RECEIVER_SLOT, "receiver")
|
|
76
|
+
|
|
77
|
+
if involving_key and (sender_key or receiver_key):
|
|
78
|
+
other = sender_key or receiver_key
|
|
79
|
+
raise ValidationError(
|
|
80
|
+
f"Cannot combine {involving_key} with {other} — "
|
|
81
|
+
f"use involving* or sender*/receiver*, not both"
|
|
82
|
+
)
|
|
83
|
+
|
|
84
|
+
|
|
11
85
|
class QueryBuilder:
|
|
12
86
|
"""
|
|
13
87
|
Builder for constructing and executing DeFiStream API queries.
|
|
@@ -78,21 +152,49 @@ class QueryBuilder:
|
|
|
78
152
|
return self._copy_with(since=start, until=end)
|
|
79
153
|
|
|
80
154
|
# ERC20 and Native Token filters
|
|
81
|
-
def sender(self,
|
|
82
|
-
"""Filter by sender address (ERC20, Native Token)."""
|
|
83
|
-
return self._copy_with(sender=
|
|
155
|
+
def sender(self, *addresses: str) -> "QueryBuilder":
|
|
156
|
+
"""Filter by sender address (ERC20, Native Token). Accepts multiple addresses."""
|
|
157
|
+
return self._copy_with(sender=_normalize_multi(*addresses))
|
|
158
|
+
|
|
159
|
+
def receiver(self, *addresses: str) -> "QueryBuilder":
|
|
160
|
+
"""Filter by receiver address (ERC20, Native Token). Accepts multiple addresses."""
|
|
161
|
+
return self._copy_with(receiver=_normalize_multi(*addresses))
|
|
162
|
+
|
|
163
|
+
def from_address(self, *addresses: str) -> "QueryBuilder":
|
|
164
|
+
"""Filter by sender address (alias for sender). Accepts multiple addresses."""
|
|
165
|
+
return self.sender(*addresses)
|
|
166
|
+
|
|
167
|
+
def to_address(self, *addresses: str) -> "QueryBuilder":
|
|
168
|
+
"""Filter by receiver address (alias for receiver). Accepts multiple addresses."""
|
|
169
|
+
return self.receiver(*addresses)
|
|
170
|
+
|
|
171
|
+
def involving(self, *addresses: str) -> "QueryBuilder":
|
|
172
|
+
"""Filter by any involved address (all protocols). Accepts multiple addresses."""
|
|
173
|
+
return self._copy_with(involving=_normalize_multi(*addresses))
|
|
174
|
+
|
|
175
|
+
def involving_label(self, *labels: str) -> "QueryBuilder":
|
|
176
|
+
"""Filter by label on any involved address (all protocols)."""
|
|
177
|
+
return self._copy_with(involving_label=_normalize_multi(*labels))
|
|
178
|
+
|
|
179
|
+
def involving_category(self, *categories: str) -> "QueryBuilder":
|
|
180
|
+
"""Filter by category on any involved address (all protocols)."""
|
|
181
|
+
return self._copy_with(involving_category=_normalize_multi(*categories))
|
|
84
182
|
|
|
85
|
-
def
|
|
86
|
-
"""Filter by
|
|
87
|
-
return self._copy_with(
|
|
183
|
+
def sender_label(self, *labels: str) -> "QueryBuilder":
|
|
184
|
+
"""Filter sender by label (ERC20, Native Token)."""
|
|
185
|
+
return self._copy_with(sender_label=_normalize_multi(*labels))
|
|
88
186
|
|
|
89
|
-
def
|
|
90
|
-
"""Filter by
|
|
91
|
-
return self.
|
|
187
|
+
def sender_category(self, *categories: str) -> "QueryBuilder":
|
|
188
|
+
"""Filter sender by category (ERC20, Native Token)."""
|
|
189
|
+
return self._copy_with(sender_category=_normalize_multi(*categories))
|
|
92
190
|
|
|
93
|
-
def
|
|
94
|
-
"""Filter by
|
|
95
|
-
return self.
|
|
191
|
+
def receiver_label(self, *labels: str) -> "QueryBuilder":
|
|
192
|
+
"""Filter receiver by label (ERC20, Native Token)."""
|
|
193
|
+
return self._copy_with(receiver_label=_normalize_multi(*labels))
|
|
194
|
+
|
|
195
|
+
def receiver_category(self, *categories: str) -> "QueryBuilder":
|
|
196
|
+
"""Filter receiver by category (ERC20, Native Token)."""
|
|
197
|
+
return self._copy_with(receiver_category=_normalize_multi(*categories))
|
|
96
198
|
|
|
97
199
|
def min_amount(self, amount: float) -> "QueryBuilder":
|
|
98
200
|
"""Filter by minimum amount (ERC20, Native Token)."""
|
|
@@ -134,6 +236,8 @@ class QueryBuilder:
|
|
|
134
236
|
def _build_params(self) -> dict[str, Any]:
|
|
135
237
|
"""Build the final query parameters."""
|
|
136
238
|
params = self._params.copy()
|
|
239
|
+
_validate_sql_safety(params)
|
|
240
|
+
_validate_mutual_exclusivity(params)
|
|
137
241
|
if self._verbose:
|
|
138
242
|
params["verbose"] = "true"
|
|
139
243
|
return params
|
|
@@ -294,21 +398,49 @@ class AsyncQueryBuilder:
|
|
|
294
398
|
return self._copy_with(since=start, until=end)
|
|
295
399
|
|
|
296
400
|
# ERC20 and Native Token filters
|
|
297
|
-
def sender(self,
|
|
298
|
-
"""Filter by sender address (ERC20, Native Token)."""
|
|
299
|
-
return self._copy_with(sender=
|
|
401
|
+
def sender(self, *addresses: str) -> "AsyncQueryBuilder":
|
|
402
|
+
"""Filter by sender address (ERC20, Native Token). Accepts multiple addresses."""
|
|
403
|
+
return self._copy_with(sender=_normalize_multi(*addresses))
|
|
404
|
+
|
|
405
|
+
def receiver(self, *addresses: str) -> "AsyncQueryBuilder":
|
|
406
|
+
"""Filter by receiver address (ERC20, Native Token). Accepts multiple addresses."""
|
|
407
|
+
return self._copy_with(receiver=_normalize_multi(*addresses))
|
|
408
|
+
|
|
409
|
+
def from_address(self, *addresses: str) -> "AsyncQueryBuilder":
|
|
410
|
+
"""Filter by sender address (alias for sender). Accepts multiple addresses."""
|
|
411
|
+
return self.sender(*addresses)
|
|
412
|
+
|
|
413
|
+
def to_address(self, *addresses: str) -> "AsyncQueryBuilder":
|
|
414
|
+
"""Filter by receiver address (alias for receiver). Accepts multiple addresses."""
|
|
415
|
+
return self.receiver(*addresses)
|
|
416
|
+
|
|
417
|
+
def involving(self, *addresses: str) -> "AsyncQueryBuilder":
|
|
418
|
+
"""Filter by any involved address (all protocols). Accepts multiple addresses."""
|
|
419
|
+
return self._copy_with(involving=_normalize_multi(*addresses))
|
|
420
|
+
|
|
421
|
+
def involving_label(self, *labels: str) -> "AsyncQueryBuilder":
|
|
422
|
+
"""Filter by label on any involved address (all protocols)."""
|
|
423
|
+
return self._copy_with(involving_label=_normalize_multi(*labels))
|
|
424
|
+
|
|
425
|
+
def involving_category(self, *categories: str) -> "AsyncQueryBuilder":
|
|
426
|
+
"""Filter by category on any involved address (all protocols)."""
|
|
427
|
+
return self._copy_with(involving_category=_normalize_multi(*categories))
|
|
428
|
+
|
|
429
|
+
def sender_label(self, *labels: str) -> "AsyncQueryBuilder":
|
|
430
|
+
"""Filter sender by label (ERC20, Native Token)."""
|
|
431
|
+
return self._copy_with(sender_label=_normalize_multi(*labels))
|
|
300
432
|
|
|
301
|
-
def
|
|
302
|
-
"""Filter by
|
|
303
|
-
return self._copy_with(
|
|
433
|
+
def sender_category(self, *categories: str) -> "AsyncQueryBuilder":
|
|
434
|
+
"""Filter sender by category (ERC20, Native Token)."""
|
|
435
|
+
return self._copy_with(sender_category=_normalize_multi(*categories))
|
|
304
436
|
|
|
305
|
-
def
|
|
306
|
-
"""Filter by
|
|
307
|
-
return self.
|
|
437
|
+
def receiver_label(self, *labels: str) -> "AsyncQueryBuilder":
|
|
438
|
+
"""Filter receiver by label (ERC20, Native Token)."""
|
|
439
|
+
return self._copy_with(receiver_label=_normalize_multi(*labels))
|
|
308
440
|
|
|
309
|
-
def
|
|
310
|
-
"""Filter by
|
|
311
|
-
return self.
|
|
441
|
+
def receiver_category(self, *categories: str) -> "AsyncQueryBuilder":
|
|
442
|
+
"""Filter receiver by category (ERC20, Native Token)."""
|
|
443
|
+
return self._copy_with(receiver_category=_normalize_multi(*categories))
|
|
312
444
|
|
|
313
445
|
def min_amount(self, amount: float) -> "AsyncQueryBuilder":
|
|
314
446
|
"""Filter by minimum amount (ERC20, Native Token)."""
|
|
@@ -350,6 +482,8 @@ class AsyncQueryBuilder:
|
|
|
350
482
|
def _build_params(self) -> dict[str, Any]:
|
|
351
483
|
"""Build the final query parameters."""
|
|
352
484
|
params = self._params.copy()
|
|
485
|
+
_validate_sql_safety(params)
|
|
486
|
+
_validate_mutual_exclusivity(params)
|
|
353
487
|
if self._verbose:
|
|
354
488
|
params["verbose"] = "true"
|
|
355
489
|
return params
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: defistream
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.1.1
|
|
4
4
|
Summary: Python client for the DeFiStream API
|
|
5
5
|
Project-URL: Homepage, https://defistream.dev
|
|
6
6
|
Project-URL: Documentation, https://docs.defistream.dev
|
|
@@ -204,6 +204,47 @@ df = (
|
|
|
204
204
|
)
|
|
205
205
|
```
|
|
206
206
|
|
|
207
|
+
### Label & Category Filters
|
|
208
|
+
|
|
209
|
+
```python
|
|
210
|
+
# Get USDT transfers involving Binance wallets
|
|
211
|
+
df = (
|
|
212
|
+
client.erc20.transfers("USDT")
|
|
213
|
+
.network("ETH")
|
|
214
|
+
.block_range(21000000, 21010000)
|
|
215
|
+
.involving_label("Binance")
|
|
216
|
+
.as_df()
|
|
217
|
+
)
|
|
218
|
+
|
|
219
|
+
# Get USDT transfers FROM exchanges TO DeFi protocols
|
|
220
|
+
df = (
|
|
221
|
+
client.erc20.transfers("USDT")
|
|
222
|
+
.network("ETH")
|
|
223
|
+
.block_range(21000000, 21010000)
|
|
224
|
+
.sender_category("exchange")
|
|
225
|
+
.receiver_category("defi")
|
|
226
|
+
.as_df()
|
|
227
|
+
)
|
|
228
|
+
|
|
229
|
+
# Get AAVE deposits involving exchange addresses
|
|
230
|
+
df = (
|
|
231
|
+
client.aave.deposits()
|
|
232
|
+
.network("ETH")
|
|
233
|
+
.block_range(21000000, 21010000)
|
|
234
|
+
.involving_category("exchange")
|
|
235
|
+
.as_df()
|
|
236
|
+
)
|
|
237
|
+
|
|
238
|
+
# Get native ETH transfers FROM Binance or Coinbase (multi-value)
|
|
239
|
+
df = (
|
|
240
|
+
client.native_token.transfers()
|
|
241
|
+
.network("ETH")
|
|
242
|
+
.block_range(21000000, 21010000)
|
|
243
|
+
.sender_label("Binance,Coinbase")
|
|
244
|
+
.as_df()
|
|
245
|
+
)
|
|
246
|
+
```
|
|
247
|
+
|
|
207
248
|
### Verbose Mode
|
|
208
249
|
|
|
209
250
|
By default, responses omit metadata fields to reduce payload size. Use `.verbose()` to include all fields:
|
|
@@ -295,6 +336,21 @@ for transfer in transfers:
|
|
|
295
336
|
|
|
296
337
|
> **Note:** `as_dict()` and `as_file("*.json")` use JSON format which has a **10,000 block limit**. For larger block ranges, use `as_df()` or `as_file()` with `.parquet` or `.csv` extensions, which support up to 1,000,000 blocks.
|
|
297
338
|
|
|
339
|
+
### Context Manager
|
|
340
|
+
|
|
341
|
+
Both sync and async clients support context managers to automatically close connections:
|
|
342
|
+
|
|
343
|
+
```python
|
|
344
|
+
# Sync
|
|
345
|
+
with DeFiStream() as client:
|
|
346
|
+
df = (
|
|
347
|
+
client.erc20.transfers("USDT")
|
|
348
|
+
.network("ETH")
|
|
349
|
+
.block_range(21000000, 21010000)
|
|
350
|
+
.as_df()
|
|
351
|
+
)
|
|
352
|
+
```
|
|
353
|
+
|
|
298
354
|
### Async Usage
|
|
299
355
|
|
|
300
356
|
```python
|
|
@@ -314,6 +370,14 @@ async def main():
|
|
|
314
370
|
asyncio.run(main())
|
|
315
371
|
```
|
|
316
372
|
|
|
373
|
+
### List Available Decoders
|
|
374
|
+
|
|
375
|
+
```python
|
|
376
|
+
client = DeFiStream()
|
|
377
|
+
decoders = client.decoders()
|
|
378
|
+
print(decoders) # ['native_token', 'erc20', 'aave', 'uniswap', 'lido', 'stader', 'threshold']
|
|
379
|
+
```
|
|
380
|
+
|
|
317
381
|
## Configuration
|
|
318
382
|
|
|
319
383
|
### Environment Variables
|
|
@@ -414,8 +478,11 @@ print(f"Request cost: {client.last_response.request_cost}")
|
|
|
414
478
|
| Method | Protocols | Description |
|
|
415
479
|
|--------|-----------|-------------|
|
|
416
480
|
| `.token(symbol)` | ERC20 | Token symbol (USDT, USDC) or contract address (required) |
|
|
417
|
-
| `.sender(
|
|
418
|
-
| `.receiver(
|
|
481
|
+
| `.sender(*addrs)` | ERC20, Native | Filter by sender address (multi-value) |
|
|
482
|
+
| `.receiver(*addrs)` | ERC20, Native | Filter by receiver address (multi-value) |
|
|
483
|
+
| `.involving(*addrs)` | All | Filter by any involved address (multi-value) |
|
|
484
|
+
| `.from_address(*addrs)` | ERC20, Native | Alias for `.sender()` |
|
|
485
|
+
| `.to_address(*addrs)` | ERC20, Native | Alias for `.receiver()` |
|
|
419
486
|
| `.min_amount(amt)` | ERC20, Native | Minimum transfer amount |
|
|
420
487
|
| `.max_amount(amt)` | ERC20, Native | Maximum transfer amount |
|
|
421
488
|
| `.eth_market_type(type)` | AAVE | Market type for ETH: 'Core', 'Prime', 'EtherFi' |
|
|
@@ -423,6 +490,23 @@ print(f"Request cost: {client.last_response.request_cost}")
|
|
|
423
490
|
| `.symbol1(sym)` | Uniswap | Second token symbol (required) |
|
|
424
491
|
| `.fee(tier)` | Uniswap | Fee tier: 100, 500, 3000, 10000 (required) |
|
|
425
492
|
|
|
493
|
+
### Address Label & Category Filters
|
|
494
|
+
|
|
495
|
+
Filter events by entity names or categories using the labels database. Available on all protocols.
|
|
496
|
+
|
|
497
|
+
| Method | Protocols | Description |
|
|
498
|
+
|--------|-----------|-------------|
|
|
499
|
+
| `.involving_label(label)` | All | Filter where any involved address matches a label substring (e.g., "Binance") |
|
|
500
|
+
| `.involving_category(cat)` | All | Filter where any involved address matches a category (e.g., "exchange") |
|
|
501
|
+
| `.sender_label(label)` | ERC20, Native | Filter sender by label substring |
|
|
502
|
+
| `.sender_category(cat)` | ERC20, Native | Filter sender by category |
|
|
503
|
+
| `.receiver_label(label)` | ERC20, Native | Filter receiver by label substring |
|
|
504
|
+
| `.receiver_category(cat)` | ERC20, Native | Filter receiver by category |
|
|
505
|
+
|
|
506
|
+
**Multi-value support:** Pass multiple values as separate arguments (e.g., `.sender_label("Binance", "Coinbase")`) or as a comma-separated string (e.g., `.sender_label("Binance,Coinbase")`). Both forms are equivalent.
|
|
507
|
+
|
|
508
|
+
**Mutual exclusivity:** Within each slot (involving/sender/receiver), only one of address/label/category can be set. `involving*` filters cannot be combined with `sender*`/`receiver*` filters.
|
|
509
|
+
|
|
426
510
|
### Terminal Methods
|
|
427
511
|
|
|
428
512
|
| Method | Description |
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
defistream/__init__.py,sha256=h-ca8lWZyPYPDd-rFTvO9J2ptW_p-SvspvgmgAe_wIc,1089
|
|
2
|
+
defistream/client.py,sha256=14Md_GOmzijBxhPPKuTRQbm7d7iXyL6OvWR7AQitY88,12835
|
|
3
|
+
defistream/exceptions.py,sha256=_GxZQ18_YvXFtmNHeddWV8fHPIllHgFeP7fP0CmHF1k,1492
|
|
4
|
+
defistream/models.py,sha256=Zw3DHAISxB6pivKybNzyHXR5IcRwvTZl23DHbjfyKwM,622
|
|
5
|
+
defistream/protocols.py,sha256=5_bYd46lDy-mK6LZ8sTGW0Z2IVH4g0cQ5rBbbOXsw0U,15368
|
|
6
|
+
defistream/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
7
|
+
defistream/query.py,sha256=yzrVfeRDZqoTYdQtj7SoYa7yd-NfO8heQ85YxhefU7c,22904
|
|
8
|
+
defistream-1.1.1.dist-info/METADATA,sha256=XznMYpoLXcIf6rn_NqOWpR8lUnFZGwfbLv17zRa1GkE,13657
|
|
9
|
+
defistream-1.1.1.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
10
|
+
defistream-1.1.1.dist-info/licenses/LICENSE,sha256=72DWAof8dMePfFQmfaswClW5d-sE6k7p-7VpuSKLmU4,1067
|
|
11
|
+
defistream-1.1.1.dist-info/RECORD,,
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
defistream/__init__.py,sha256=duUlI1d-H7mP16D6dd0zbCslu45ARItE_pwQ5N7o05M,1089
|
|
2
|
-
defistream/client.py,sha256=Ku8ouDbM6Mx4lVmqvBwNvNt-h2FkvqauPMSjKyPkjU4,12717
|
|
3
|
-
defistream/exceptions.py,sha256=_GxZQ18_YvXFtmNHeddWV8fHPIllHgFeP7fP0CmHF1k,1492
|
|
4
|
-
defistream/models.py,sha256=Zw3DHAISxB6pivKybNzyHXR5IcRwvTZl23DHbjfyKwM,622
|
|
5
|
-
defistream/protocols.py,sha256=5_bYd46lDy-mK6LZ8sTGW0Z2IVH4g0cQ5rBbbOXsw0U,15368
|
|
6
|
-
defistream/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
7
|
-
defistream/query.py,sha256=sNn_0OzNDlsp4N74Grumsb08R5OFPPoppPok3vh8Y6Q,16775
|
|
8
|
-
defistream-1.0.6.dist-info/METADATA,sha256=2VBBk9BJNGQiGOyya3YCTB23rFTbes0UjNhma-4R4ig,10877
|
|
9
|
-
defistream-1.0.6.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
10
|
-
defistream-1.0.6.dist-info/licenses/LICENSE,sha256=72DWAof8dMePfFQmfaswClW5d-sE6k7p-7VpuSKLmU4,1067
|
|
11
|
-
defistream-1.0.6.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|