dexscreen 0.0.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.
- dexscreen/__init__.py +31 -0
- dexscreen/api/__init__.py +3 -0
- dexscreen/api/client.py +672 -0
- dexscreen/config/__init__.py +0 -0
- dexscreen/core/__init__.py +27 -0
- dexscreen/core/http.py +460 -0
- dexscreen/core/models.py +106 -0
- dexscreen/stream/__init__.py +3 -0
- dexscreen/stream/polling.py +462 -0
- dexscreen/utils/__init__.py +4 -0
- dexscreen/utils/browser_selector.py +57 -0
- dexscreen/utils/filters.py +226 -0
- dexscreen/utils/ratelimit.py +65 -0
- dexscreen-0.0.1.dist-info/METADATA +278 -0
- dexscreen-0.0.1.dist-info/RECORD +17 -0
- dexscreen-0.0.1.dist-info/WHEEL +4 -0
- dexscreen-0.0.1.dist-info/licenses/LICENSE +21 -0
dexscreen/__init__.py
ADDED
@@ -0,0 +1,31 @@
|
|
1
|
+
"""
|
2
|
+
Dexscreen - Python SDK for DexScreener API
|
3
|
+
|
4
|
+
A modern, stable, and reliable Python SDK for DexScreener API with HTTP support.
|
5
|
+
"""
|
6
|
+
|
7
|
+
from .api.client import DexscreenerClient
|
8
|
+
from .core.models import (
|
9
|
+
BaseToken,
|
10
|
+
Liquidity,
|
11
|
+
PairTransactionCounts,
|
12
|
+
PriceChangePeriods,
|
13
|
+
TokenPair,
|
14
|
+
TransactionCount,
|
15
|
+
VolumeChangePeriods,
|
16
|
+
)
|
17
|
+
from .utils.filters import FilterConfig, FilterPresets
|
18
|
+
|
19
|
+
__version__ = "1.0.0"
|
20
|
+
__all__ = [
|
21
|
+
"BaseToken",
|
22
|
+
"DexscreenerClient",
|
23
|
+
"FilterConfig",
|
24
|
+
"FilterPresets",
|
25
|
+
"Liquidity",
|
26
|
+
"PairTransactionCounts",
|
27
|
+
"PriceChangePeriods",
|
28
|
+
"TokenPair",
|
29
|
+
"TransactionCount",
|
30
|
+
"VolumeChangePeriods",
|
31
|
+
]
|