Skip to content

egakoji/django-ethereum

 
 

Repository files navigation

Django Ethereum

https://travis-ci.org/narnikgamarnikus/django-ethereum.svg?branch=master

Django using web3.py and etherscan for working with Ethereum

Documentation

The full documentation is at https://django-ethereum.readthedocs.io.

Quickstart

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)),
    ...
]

Features

  • TODO

Running Tests

Does the code actually work?

source <YOURVIRTUALENV>/bin/activate
(myenv) $ pip install tox
(myenv) $ tox

Credits

Tools used in rendering this package:

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 88.1%
  • HTML 9.0%
  • Makefile 2.9%