Metadata-Version: 2.1
Name: pywalletscan
Version: 0.0.6
Summary: A Python Wrapper Implementation of Etherscan
Home-page: https://github.com/efssisbdyy/pywalletscan
License: MIT
Keywords: ETH,Etherium,Bitcoin,wallet,Etherscan
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
License-File: LICENSE

# pywalletscan

A Python Wrapper Implementation of Etherscan

# Prerequisite

Pywalletscan uses Etherescan API as a datasource. API key is required to run. Please refer to [Getting an API Key](https://docs.etherscan.io/getting-started/viewing-api-usage-statistics) on Etherscan Web page.

# Getting Started

```ipython
>> import pywalletscan as scan
>> scan.get_transaction(network="eth", address=f"{YOUR_WALLET_ADDRESS}", api_key=f"{YOUR_API_KEY}")
```

# Recognized network

goerli, sepolia, eth(etherium) (Case insensitive)

# Build

```sh
python setup.py sdist bdist_wheel

# Test
# twine upload --repository-url https://test.pypi.org/legacy/ dist/*

twine upload dist/*
```
