Django using web3.py and etherscan for working with Ethereum
The full documentation is at https://django-ethereum.readthedocs.io.
Install Django Ethereum:
pip install django-ethereum
Add it to your INSTALLED_APPS:
INSTALLED_APPS = (
...
'django_ethereum.apps.EthereumConfig',
...
)
Add Django Ethereum's URL patterns:
from django_ethereum import urls as django_ethereum_urls
urlpatterns = [
...
url(r'^', include(django_ethereum_urls)),
...
]
- TODO
Does the code actually work?
source <YOURVIRTUALENV>/bin/activate (myenv) $ pip install tox (myenv) $ tox
Tools used in rendering this package: