forked from gmatrixuniverse/web3_data_center
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path__init__.py
More file actions
40 lines (33 loc) · 1.2 KB
/
__init__.py
File metadata and controls
40 lines (33 loc) · 1.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# Import the main class that users will interact with
from web3_data_center.core.data_center import DataCenter
# Import important models that users might need directly
from web3_data_center.models.token import Token
from web3_data_center.models.holder import Holder
from web3_data_center.models.transaction import Transaction
from web3_data_center.models.price_history_point import PriceHistoryPoint
# Import utility functions that might be useful
# You can also import and expose the version of your package
__version__ = "0.1.7"
# Define what gets imported when someone does `from web3_data_center import *`
__all__ = [
'DataCenter',
'Token',
'Holder',
'Transaction',
'PriceHistoryPoint'
]
# You can also include a brief description of your package
__doc__ = """
Web3 Data Center
This package provides a unified interface for accessing blockchain and Web3 data
from various sources. It integrates multiple APIs to offer comprehensive data
analysis capabilities for blockchain networks.
Main Features:
- Token information retrieval
- Holder analysis
- Transaction data
- Price history
- DeFi protocol integration
- Cross-chain data access
For more information, please refer to the documentation.
"""