Unofficial Python library for dPay
Project description
dpaycli - Unofficial Python Library for DPay
===============================================
dpaycli is an unofficial python library for dpay, which is created new from scratch from `python-bitshares`_
The library name is derived from a beam machine, similar to the analogy between dpay and steam. dpaycli includes `python-graphenelib`_.
.. image:: https://img.shields.io/pypi/v/dpaycli.svg
:target: https://pypi.python.org/pypi/dpaycli/
:alt: Latest Version
.. image:: https://img.shields.io/pypi/pyversions/dpaycli.svg
:target: https://pypi.python.org/pypi/dpaycli/
:alt: Python Versions
.. image:: https://anaconda.org/conda-forge/dpaycli/badges/version.svg
:target: https://anaconda.org/conda-forge/dpaycli
.. image:: https://anaconda.org/conda-forge/dpaycli/badges/downloads.svg
:target: https://anaconda.org/conda-forge/dpaycli
Current build status
--------------------
.. image:: https://travis-ci.org/holgern/dpaycli.svg?branch=master
:target: https://travis-ci.org/holgern/dpaycli
.. image:: https://ci.appveyor.com/api/projects/status/ig8oqp8bt2fmr09a?svg=true
:target: https://ci.appveyor.com/project/holger80/dpaycli
.. image:: https://circleci.com/gh/holgern/dpaycli.svg?style=svg
:target: https://circleci.com/gh/holgern/dpaycli
.. image:: https://readthedocs.org/projects/dpaycli/badge/?version=latest
:target: http://dpaycli.readthedocs.org/en/latest/?badge=latest
.. image:: https://api.codacy.com/project/badge/Grade/e5476faf97df4c658697b8e7a7efebd7
:target: https://www.codacy.com/app/holgern/dpaycli?utm_source=github.com&utm_medium=referral&utm_content=holgern/dpaycli&utm_campaign=Badge_Grade
.. image:: https://pyup.io/repos/github/holgern/dpaycli/shield.svg
:target: https://pyup.io/repos/github/holgern/dpaycli/
:alt: Updates
.. image:: https://api.codeclimate.com/v1/badges/e7bdb5b4aa7ab160a780/test_coverage
:target: https://codeclimate.com/github/holgern/dpaycli/test_coverage
:alt: Test Coverage
Support & Documentation
=======================
You may find help in the `dpaycli-discord-channel`_. The discord channel can also be used to discuss things about dpaycli.
A complete library documentation is available at `dpaycli.readthedocs.io`_.
Advantages over the official dpay-python library
=================================================
* High unit test coverage
* Support for websocket nodes
* Native support for new Appbase calls
* Node error handling and automatic node switching
* Usage of pycryptodomex instead of the outdated pycrypto
* Complete documentation of dpay and all classes including all functions
* dpayid integration
* Works on read-only systems
* Own BlockchainObject class with cache
* Contains all broadcast operations
* Estimation of virtual account operation index from date or block number
* the command line tool dpay uses click and has more commands
* DPayNodeRPC can be used to execute even not implemented RPC-Calls
* More complete implemention
Installation
============
The minimal working python version is 2.7.x. or 3.4.x
dpaycli can be installed parallel to python-dpay.
For Debian and Ubuntu, please ensure that the following packages are installed:
.. code:: bash
sudo apt-get install build-essential libssl-dev python-dev
For Fedora and RHEL-derivatives, please ensure that the following packages are installed:
.. code:: bash
sudo yum install gcc openssl-devel python-devel
For OSX, please do the following::
brew install openssl
export CFLAGS="-I$(brew --prefix openssl)/include $CFLAGS"
export LDFLAGS="-L$(brew --prefix openssl)/lib $LDFLAGS"
For Termux on Android, please install the following packages:
.. code:: bash
pkg install clang openssl-dev python-dev
Signing and Verify can be fasten (200 %) by installing cryptography:
.. code:: bash
pip install -U cryptography
Install or update dpaycli by pip::
pip install -U dpaycli
You can install dpaycli from this repository if you want the latest
but possibly non-compiling version::
git clone https://github.com/holgern/dpaycli.git
cd dpaycli
python setup.py build
python setup.py install --user
Run tests after install::
pytest
Installing dpaycli with conda-forge
--------------------------------
Installing dpaycli from the conda-forge channel can be achieved by adding conda-forge to your channels with::
conda config --add channels conda-forge
Once the conda-forge channel has been enabled, dpaycli can be installed with::
conda install dpaycli
Signing and Verify can be fasten (200 %) by installing cryptography::
conda install cryptography
dpaycli can be updated by::
conda update dpaycli
CLI tool dpay
---------------
A command line tool is available. The help output shows the available commands:
dpay --help
Stand alone version of CLI tool dpay
--------------------------------------
With the help of pyinstaller, a stand alone version of dpay was created for Windows, OSX and linux.
Each version has just to be unpacked and can be used in any terminal. The packed directories
can be found under release. Each release has a hash sum, which is created directly in the build-server
before transmitting the packed file. Please check the hash-sum after downloading.
Changelog
=========
Can be found in CHANGELOG.rst.
License
=======
This library is licensed under the MIT License.
Acknowledgements
================
`python-bitshares`_ and `python-graphenelib`_ were created by Fabian Schuh (xeroc).
.. _python-graphenelib: https://github.com/xeroc/python-graphenelib
.. _python-bitshares: https://github.com/xeroc/python-bitshares
.. _Python: http://python.org
.. _Anaconda: https://www.continuum.io
.. _dpaycli.readthedocs.io: http://dpaycli.readthedocs.io/en/latest/
.. _dpaycli-discord-channel: https://discord.gg/4HM592V
===============================================
dpaycli is an unofficial python library for dpay, which is created new from scratch from `python-bitshares`_
The library name is derived from a beam machine, similar to the analogy between dpay and steam. dpaycli includes `python-graphenelib`_.
.. image:: https://img.shields.io/pypi/v/dpaycli.svg
:target: https://pypi.python.org/pypi/dpaycli/
:alt: Latest Version
.. image:: https://img.shields.io/pypi/pyversions/dpaycli.svg
:target: https://pypi.python.org/pypi/dpaycli/
:alt: Python Versions
.. image:: https://anaconda.org/conda-forge/dpaycli/badges/version.svg
:target: https://anaconda.org/conda-forge/dpaycli
.. image:: https://anaconda.org/conda-forge/dpaycli/badges/downloads.svg
:target: https://anaconda.org/conda-forge/dpaycli
Current build status
--------------------
.. image:: https://travis-ci.org/holgern/dpaycli.svg?branch=master
:target: https://travis-ci.org/holgern/dpaycli
.. image:: https://ci.appveyor.com/api/projects/status/ig8oqp8bt2fmr09a?svg=true
:target: https://ci.appveyor.com/project/holger80/dpaycli
.. image:: https://circleci.com/gh/holgern/dpaycli.svg?style=svg
:target: https://circleci.com/gh/holgern/dpaycli
.. image:: https://readthedocs.org/projects/dpaycli/badge/?version=latest
:target: http://dpaycli.readthedocs.org/en/latest/?badge=latest
.. image:: https://api.codacy.com/project/badge/Grade/e5476faf97df4c658697b8e7a7efebd7
:target: https://www.codacy.com/app/holgern/dpaycli?utm_source=github.com&utm_medium=referral&utm_content=holgern/dpaycli&utm_campaign=Badge_Grade
.. image:: https://pyup.io/repos/github/holgern/dpaycli/shield.svg
:target: https://pyup.io/repos/github/holgern/dpaycli/
:alt: Updates
.. image:: https://api.codeclimate.com/v1/badges/e7bdb5b4aa7ab160a780/test_coverage
:target: https://codeclimate.com/github/holgern/dpaycli/test_coverage
:alt: Test Coverage
Support & Documentation
=======================
You may find help in the `dpaycli-discord-channel`_. The discord channel can also be used to discuss things about dpaycli.
A complete library documentation is available at `dpaycli.readthedocs.io`_.
Advantages over the official dpay-python library
=================================================
* High unit test coverage
* Support for websocket nodes
* Native support for new Appbase calls
* Node error handling and automatic node switching
* Usage of pycryptodomex instead of the outdated pycrypto
* Complete documentation of dpay and all classes including all functions
* dpayid integration
* Works on read-only systems
* Own BlockchainObject class with cache
* Contains all broadcast operations
* Estimation of virtual account operation index from date or block number
* the command line tool dpay uses click and has more commands
* DPayNodeRPC can be used to execute even not implemented RPC-Calls
* More complete implemention
Installation
============
The minimal working python version is 2.7.x. or 3.4.x
dpaycli can be installed parallel to python-dpay.
For Debian and Ubuntu, please ensure that the following packages are installed:
.. code:: bash
sudo apt-get install build-essential libssl-dev python-dev
For Fedora and RHEL-derivatives, please ensure that the following packages are installed:
.. code:: bash
sudo yum install gcc openssl-devel python-devel
For OSX, please do the following::
brew install openssl
export CFLAGS="-I$(brew --prefix openssl)/include $CFLAGS"
export LDFLAGS="-L$(brew --prefix openssl)/lib $LDFLAGS"
For Termux on Android, please install the following packages:
.. code:: bash
pkg install clang openssl-dev python-dev
Signing and Verify can be fasten (200 %) by installing cryptography:
.. code:: bash
pip install -U cryptography
Install or update dpaycli by pip::
pip install -U dpaycli
You can install dpaycli from this repository if you want the latest
but possibly non-compiling version::
git clone https://github.com/holgern/dpaycli.git
cd dpaycli
python setup.py build
python setup.py install --user
Run tests after install::
pytest
Installing dpaycli with conda-forge
--------------------------------
Installing dpaycli from the conda-forge channel can be achieved by adding conda-forge to your channels with::
conda config --add channels conda-forge
Once the conda-forge channel has been enabled, dpaycli can be installed with::
conda install dpaycli
Signing and Verify can be fasten (200 %) by installing cryptography::
conda install cryptography
dpaycli can be updated by::
conda update dpaycli
CLI tool dpay
---------------
A command line tool is available. The help output shows the available commands:
dpay --help
Stand alone version of CLI tool dpay
--------------------------------------
With the help of pyinstaller, a stand alone version of dpay was created for Windows, OSX and linux.
Each version has just to be unpacked and can be used in any terminal. The packed directories
can be found under release. Each release has a hash sum, which is created directly in the build-server
before transmitting the packed file. Please check the hash-sum after downloading.
Changelog
=========
Can be found in CHANGELOG.rst.
License
=======
This library is licensed under the MIT License.
Acknowledgements
================
`python-bitshares`_ and `python-graphenelib`_ were created by Fabian Schuh (xeroc).
.. _python-graphenelib: https://github.com/xeroc/python-graphenelib
.. _python-bitshares: https://github.com/xeroc/python-bitshares
.. _Python: http://python.org
.. _Anaconda: https://www.continuum.io
.. _dpaycli.readthedocs.io: http://dpaycli.readthedocs.io/en/latest/
.. _dpaycli-discord-channel: https://discord.gg/4HM592V
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
Built Distribution
dpaycli-0.2.0-py3.6.egg
(747.0 kB
view details)
File details
Details for the file dpaycli-0.2.0-py3.6.egg
.
File metadata
- Download URL: dpaycli-0.2.0-py3.6.egg
- Upload date:
- Size: 747.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.19.8 CPython/2.7.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | acd521fa295e77b16ca60b18f11169a031423d1f9b9e41c2818db82dd5049943 |
|
MD5 | 219a5360075766338f20f07d17621ff9 |
|
BLAKE2b-256 | cddfb28df7ed2852252cb25250e3088b6082232df19d696da9fc7597bd38fee9 |