Skip to content

Latest commit

 

History

History
57 lines (35 loc) · 1.15 KB

README.md

File metadata and controls

57 lines (35 loc) · 1.15 KB

django_bitgo

Django library for BitGo

Downloads

Overview

Django BitGo is a powerful and flexible library for connecting your BitGo account and integrate it with your Django project.


Requirements

  • 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.

Installation

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',
]

API Reference

The wallets module

The top-level module for wallets.

Refer to the documentation for details on the use of this package.

Address

Example of get an address object.

    address = Address()
    address.get_address(address_id=ADDRESS_ID, coin=COIN, wallet_id=WALLET_ID)