Metadata-Version: 2.1
Name: crypto_scan
Version: 0.3.4
Summary: Python SDK for query crypto data from various API services.
Home-page: https://github.com/ENsu/crypto-scan
Author: Ian Su
Author-email: ian@ivcrypto.io
License: none
Platform: UNKNOWN
Description-Content-Type: text/markdown

# Build and update package
1. `rm -rf ./dist ./build`
2. Update version in `setup.py`
3. `python setup.py sdist bdist_wheel`
4. `twine check dist/*` to check error
4. `twine upload dist/*` to deploy pkg


# Use below command to update the latest version
`pip install --no-cache-dir --upgrade crypto-scan`


# Example
```python
from crypto_scan.configs import ETH_CHAIN
from crypto_scan.scan import Scan

scan = Scan(ETH_CHAIN, env['ETHSCAN_API_KEY'])
scan.get_contract(addr)
scan.get_all_trans(addr, startblock=qr.max_block_num)
```

