vladimirmyshkovski / django-ethereum

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

License:MIT License


Languages

Language:Python 88.1%Language:HTML 9.0%Language:Makefile 2.9%