Django library for BitGo
Django BitGo is a powerful and flexible library for connecting your BitGo account and integrate it with your Django project.
- Python (3.7, 3.8, 3.9, 3.10)
- Django (3.2, 4.0, 4.1)
We highly recommend and only officially support the latest patch release of each Python and Django series.
Install using pip
...
pip install django-bitgo
Install using poetry
...
poetry add django-bitgo
Add 'django_bitgo'
to your INSTALLED_APPS
setting.
INSTALLED_APPS = [
...
'django_bitgo',
]
The top-level module for wallets.
Refer to the documentation for details on the use of this package.
Example of get an address object.
address = Address()
address.get_address(address_id=ADDRESS_ID, coin=COIN, wallet_id=WALLET_ID)