An open API service indexing awesome lists of open source software.

https://github.com/null-none/django-eth-fields

Helpers for Python Django projects using ethereum
https://github.com/null-none/django-eth-fields

blockchain blockchain-technology eth ethereum python python3 web3

Last synced: 2 months ago
JSON representation

Helpers for Python Django projects using ethereum

Awesome Lists containing this project

README

        

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()