/django-eth-fields

Helpers for Python Django projects using ethereum

Primary LanguagePythonMIT LicenseMIT

Django Eth Fields

Helpers for Python Django projects using ethereum

Installation

Using pip

$ pip install django-eth-fields

Example

from django_eth_fields.fields import EthereumAddressField, HexField, Uint256Field

class MyModel(models.Model):
    address = EthereumAddressField()
    hex = HexField()
    unit_255 = Uint256Field()