Skip to main content

Python client library for Stellar

Project description

stellar-py
==========

Python client library for Stellar

[![PyPI version](https://badge.fury.io/py/stellar-py.svg)](http://badge.fury.io/py/stellar-py)

# Generating keys

```python
account, secret = generate_keypair(password=None)
```

# Signing and submitting transactions

At the highest level of abstraction there are functions like these,
```python
send_payment(secret, account, destination, amount)
set_regular_key(secret, account, regular_key)
```

Lower down the operations are separated for easy offline usage,
where you create the transaction json object, sign the transaction,
and then submit it as separate steps.
```python
tc_json = get_payment_tx_json(account, destination, amount)
tx_blob = sign_transaction(secret, tx_json)
res, msg = submit_transaction(tx_blob)
```

At an even lower level, you can create your own transaction json object,
and have stellar-py take over from there.

```python
import stellar

tx_json = {
'TransactionType': 'Payment',
'Account': account,
'Amount': amount,
'Destination': dest,
}

stellar.complete_transaction_fields(tx_json)
tx_blob = stellar.sign_transaction(secret, tx_json)
stellar.submit_transaction(tx_blob)
```


# Installation

Only tested on Python 2.7

In most cases, this is enough to install:

$ pip install stellar-py

If not, then you might need these too:

$ apt-get install python-pip
$ apt-get install python-dev

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

stellar-py-0.1.1.tar.gz (6.5 kB view details)

Uploaded Source

File details

Details for the file stellar-py-0.1.1.tar.gz.

File metadata

  • Download URL: stellar-py-0.1.1.tar.gz
  • Upload date:
  • Size: 6.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for stellar-py-0.1.1.tar.gz
Algorithm Hash digest
SHA256 6fed3095d3e0addb550209abc5cb51d030dd5d8a12ffc4db85139fe3f712530c
MD5 ea8bb4daf31d111362e837da1c563377
BLAKE2b-256 11d0d958d3f5ce4199f5e7c24744d7aef1ea0c4c1b21d96ffa2c54d32d7ce27c

See more details on using hashes here.

Supported by

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