Skycoin Python Library
Project description
#PySkycoin
Python extension for Skycoin API. A Python extension generated with SWIG to access Skycoin API from Python.
Table of Contents
Installation
Download the repository from http://github.com/simelo/pyskycoin.git.
Execute (python setup.py install
) to install the library. Although executing (python setup.py develop) is a better choice for making changes to the library. However, when using tox these commands are not required at all because calling tox will make any necessary installation and execute the tests.
Usage
Naming
The exported function in PySkycoin have the following naming format: SKY_package_func_name
where package is replace by the package where the original Skycoin function is and func_name is the name of the function. For example, LoadConfig
function from cli
package is called in Python SKY_cli_LoadConfig
Parameters
All skycoin exported functions return an error object as the last of the return parameters. In Pyskycoin error is return as an integer and it is the first return parameter. The rest of the parameters are returned in the same order.
Receivers in Skycoin are the first of the input parameters. Simple types, like integer, float, string will be used as the corresponding types in Python.
Handles
Some of Skycoin types are too complex to be exported to a scripting language. So, handles are used instead. Therefore all functions taking a complex type will receive a handle instead of the original Skycoin type. For example, having these functions exported from Skycoin:
func LoadConfig() (Config, error)
func (c Config) FullWalletPath() string
Config is a struct type that is treated as a handle in Pyskycoin. The usage in Python will be:
import skycoin
def main:
error, configHandle = skycoin.SKY_cli_LoadConfig()
if error == 0: # 0 then no error
fullWalletPath = skycoin.SKY_cli_FullWalletPath(configHandle)
print fullWallerPath
#Close the handle after using the it
#so the garbage collector can delete the object associated with it.
skycoin.SKY_handle_close( configHandle )
else:
#Error
print error
Byte slices
Parameters of type byte[] will treated as string . Example, this function in Skycoin:
func (s ScryptChacha20poly1305) Encrypt(data, password []byte) ([]byte, error)
Will be called like this:
encrypt_settings = skycoin.encrypt__ScryptChacha20poly1305()
data = "Data to encrypt" #It will be passed as a parameter of type []byte
pwd = "password" #As []byte too
error, encrypted = skycoin.SKY_encrypt_ScryptChacha20poly1305_Encrypt(encrypt_settings, data, pwd)
if error == 0:
print encrypted #Encrypted is string
Structures
Structures that are not exported as handles are treated like classes in Python. In the previous example type ScryptChacha20poly1305 is created in Python like:
encrypt_settings = skycoin.encrypt__ScryptChacha20poly1305()
And passed as first parameter in call to SKY_encrypt_ScryptChacha20poly1305_Encrypt.
Fixed Sized Arrays
Parameters of fixed size array are wrapped in structures when called from python.
Given these types in Skycoin:
type PubKey [33]byte
type SecKey [32]byte
And this exported function:
func GenerateDeterministicKeyPair(seed []byte) (PubKey, SecKey)
This is how it is used in Python:
#Generates random seed
error, data = skycoin.SKY_cipher_RandByte(32)
assert error == 0
pubkey = skycoin.cipher_PubKey()
seckey = skycoin.cipher_SecKey()
error = skycoin.SKY_cipher_GenerateDeterministicKeyPair(data, pubkey, seckey)
pubkey and seckey are objects of type structure containing a field name data for the corresponding type of PubKey and SecKey. Something like:
cipher_PubKey struct{
data [33]byte;
} cipher_PubKey;
cipher_SecKey struct{
data [32]byte;
} ;
Other Slices
Other slices of type different than byte were wrapped inside classes. Calling the following function:
func GenerateDeterministicKeyPairs(seed []byte, n int) []SecKey
Would be like:
#Generates random seed
error, seed = skycoin.SKY_cipher_RandByte(32)
error, seckeys = skycoin.SKY_cipher_GenerateDeterministicKeyPairs(seed, 2)
for seckey in seckeys:
pubkey = skycoin.cipher_PubKey()
skycoin.SKY_cipher_PubKeyFromSecKey(seckey, pubkey)
error = skycoin.SKY_cipher_PubKey_Verify(pubkey)
assert error == 0
Memory Management
Memory management is transparent to the user. Any object allocated inside the library is left to be managed by Python garbage collector.
Make Rules
All these make rules require skycoin to be a git submodule of pyskycoin
- build-libc
- Compiles skycoin C language library.
- build-swig
- Creates the wrapper C code to generate the Python library.
- develop
- Install a developer version of the module.
- test
- Compiles skycoin C language library, creates the wrapper and execute Tox. Tox installs compiles the Python library and executes the tests.
Development setup
It is highly recommended for developers to setup their environment using the available Docker images. Read the PySkycoin Docker docs for further details.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file Pyskycoin-0.24.5.tar.gz
.
File metadata
- Download URL: Pyskycoin-0.24.5.tar.gz
- Upload date:
- Size: 21.8 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/3.4.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4cb2a3fedc421c0f2a198328475c4ee5efa887a83d7dcd868534046633667da1 |
|
MD5 | 212ee37c0243d87b35ee0036ec8fe938 |
|
BLAKE2b-256 | 7a1e465917c40733ad6b638717965080cf26ce98a45be5b912f35340004636ab |