Skip to main content

Python driver for Planetmint

Project description

Join the chat at https://gitter.im/planetmint/planetmint-driver https://badge.fury.io/py/planetmint-driver.svg https://app.travis-ci.com/planetmint/planetmint-driver.svg?branch=main https://img.shields.io/codecov/c/github/planetmint/planetmint-driver/master.svg

Planetmint Python Driver

  • Free software: Apache Software License 2.0

  • Check our Documentation

Features

  • Support for preparing, fulfilling, and sending transactions to a Planetmint node.

  • Retrieval of transactions by id.

Install

The instructions below were tested on Ubuntu 16.04 LTS. They should also work on other Linux distributions and on macOS. The driver might work on Windows as well, but we do not guarantee it. We recommend to set up (e.g. via Docker on Windows) an Ubuntu VM there.

We recommend you use a virtual environment to install and update to the latest stable version using pip (or pip3):

pip install -U planetmint-driver

That will install the latest stable Planetmint Python Driver. If you want to install an Alpha, Beta or RC version of the Python Driver, use something like:

pip install -U planetmint_driver==0.11.1

The above command will install version 0.11.1. You can find a list of all versions in the release history page on PyPI.

More information on how to install the driver can be found in the Quickstart

Planetmint Documentation

Usage

Example: Create a divisible asset for Alice who issues 10 token to Bob so that he can use her Game Boy. Afterwards Bob spends 3 of these tokens.

If you want to send a transaction you need to Determine the Planetmint Root URL.

# import Planetmint and create an object
from planetmint_driver import Planetmint
bdb_root_url = 'https://example.com:9984'
bdb = Planetmint(bdb_root_url)

# generate a keypair
from planetmint_driver.crypto import generate_keypair
alice, bob = generate_keypair(), generate_keypair()

# create a digital asset for Alice
game_boy_token = {
    'data': {
        'token_for': {
            'game_boy': {
                'serial_number': 'LR35902'
            }
        },
        'description': 'Time share token. Each token equals one hour of usage.',
    },
}

# prepare the transaction with the digital asset and issue 10 tokens for Bob
prepared_token_tx = bdb.transactions.prepare(
    operation='CREATE',
    signers=alice.public_key,
    recipients=[([bob.public_key], 10)],
    asset=game_boy_token)

# fulfill and send the transaction
fulfilled_token_tx = bdb.transactions.fulfill(
    prepared_token_tx,
    private_keys=alice.private_key)
bdb.transactions.send_commit(fulfilled_token_tx)

# Use the tokens
# create the output and inout for the transaction
transfer_asset = {'id': fulfilled_token_tx['id']}
output_index = 0
output = fulfilled_token_tx['outputs'][output_index]
transfer_input = {'fulfillment': output['condition']['details'],
                  'fulfills': {'output_index': output_index,
                               'transaction_id': transfer_asset['id']},
                  'owners_before': output['public_keys']}

# prepare the transaction and use 3 tokens
prepared_transfer_tx = bdb.transactions.prepare(
    operation='TRANSFER',
    asset=transfer_asset,
    inputs=transfer_input,
    recipients=[([alice.public_key], 3), ([bob.public_key], 7)])

# fulfill and send the transaction
fulfilled_transfer_tx = bdb.transactions.fulfill(
    prepared_transfer_tx,
    private_keys=bob.private_key)
sent_transfer_tx = bdb.transactions.send_commit(fulfilled_transfer_tx)

Compatibility Matrix

Planetmint Server

Planetmint Driver

>= 2.0.0b7

0.6.2

>= 2.0.0b7

0.6.1

>= 2.0.0b7

0.6.0

>= 2.0.0b5

0.5.3

>= 2.0.0b5

0.5.2

>= 2.0.0b5

0.5.1

>= 2.0.0b1

0.5.0

>= 2.0.0a3

0.5.0a4

>= 2.0.0a2

0.5.0a2

>= 2.0.0a1

0.5.0a1

>= 1.0.0

0.4.x

== 1.0.0rc1

0.3.x

>= 0.9.1

0.2.x

>= 0.8.2

>= 0.1.3

Although we do our best to keep the master branches in sync, there may be occasional delays.

License

Credits

This package was initially created using Cookiecutter and the audreyr/cookiecutter-pypackage project template. Many Planetmint developers have contributed since then.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

planetmint_driver_python-0.17.0.tar.gz (29.4 kB view details)

Uploaded Source

Built Distribution

planetmint_driver_python-0.17.0-py3-none-any.whl (31.3 kB view details)

Uploaded Python 3

File details

Details for the file planetmint_driver_python-0.17.0.tar.gz.

File metadata

  • Download URL: planetmint_driver_python-0.17.0.tar.gz
  • Upload date:
  • Size: 29.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.3.2 CPython/3.9.16 Linux/5.15.0-1031-azure

File hashes

Hashes for planetmint_driver_python-0.17.0.tar.gz
Algorithm Hash digest
SHA256 8c85d7c18942004a68c196e47d94e2edb351aa5cb570f3e768311127d0e89a1f
MD5 29433a8c347ab2988f9f93a1a04cc15a
BLAKE2b-256 436ac600e4d9b6be30bbd951f7bfb837ff21f96b34982afe5c64114ab3b273e8

See more details on using hashes here.

File details

Details for the file planetmint_driver_python-0.17.0-py3-none-any.whl.

File metadata

File hashes

Hashes for planetmint_driver_python-0.17.0-py3-none-any.whl
Algorithm Hash digest
SHA256 8215f4ab82e5414bf64a79eed5a0925f05961b4d624d464e43357167bd95ccf6
MD5 54631294da469dc439a0441a77cdb28f
BLAKE2b-256 d1bc01e6aa87e30b2ca19efc874bf7fc589ccd8985930bc466bfff6ed1cc3d30

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page