https://github.com/null-none/django-blockchain
Wrap the Blockchain API in Django!
https://github.com/null-none/django-blockchain
api blockchain chain django django-rest-framework
Last synced: about 1 year ago
JSON representation
Wrap the Blockchain API in Django!
- Host: GitHub
- URL: https://github.com/null-none/django-blockchain
- Owner: null-none
- License: mit
- Created: 2021-10-20T07:35:50.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-08-15T20:23:14.000Z (over 3 years ago)
- Last Synced: 2025-04-08T01:47:32.282Z (about 1 year ago)
- Topics: api, blockchain, chain, django, django-rest-framework
- Language: Python
- Homepage:
- Size: 17.6 KB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
django-blockchain
=================
Wrap the Blockchain API in Django.
Installation
------------
pip install django-blockchain
Add app in your ``settings.py``
INSTALLED_APPS = [
"django_blockchain",
]
And something in your ``urls.py``
urlpatterns = patterns('',
url(r'^blockchain$', 'django_blockchain.urls', name='blockchain_urls'),
)