{ "info": { "author": "Holger Nahrstaedt", "author_email": "holger@nahrstaedt.de", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Intended Audience :: Developers", "Intended Audience :: Financial and Insurance Industry", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Topic :: Office/Business :: Financial" ], "description": "dpaycli - Unofficial Python Library for DPay\n===============================================\n\ndpaycli is an unofficial python library for dpay, which is created new from scratch from `python-bitshares`_\nThe library name is derived from a beam machine, similar to the analogy between dpay and steam. dpaycli includes `python-graphenelib`_.\n\n.. image:: https://img.shields.io/pypi/v/dpaycli.svg\n :target: https://pypi.python.org/pypi/dpaycli/\n :alt: Latest Version\n\n.. image:: https://img.shields.io/pypi/pyversions/dpaycli.svg\n :target: https://pypi.python.org/pypi/dpaycli/\n :alt: Python Versions\n\n\n.. image:: https://anaconda.org/conda-forge/dpaycli/badges/version.svg\n :target: https://anaconda.org/conda-forge/dpaycli\n\n\n.. image:: https://anaconda.org/conda-forge/dpaycli/badges/downloads.svg\n :target: https://anaconda.org/conda-forge/dpaycli\n\n\nCurrent build status\n--------------------\n\n.. image:: https://travis-ci.org/holgern/dpaycli.svg?branch=master\n :target: https://travis-ci.org/holgern/dpaycli\n\n.. image:: https://ci.appveyor.com/api/projects/status/ig8oqp8bt2fmr09a?svg=true\n :target: https://ci.appveyor.com/project/holger80/dpaycli\n\n.. image:: https://circleci.com/gh/holgern/dpaycli.svg?style=svg\n :target: https://circleci.com/gh/holgern/dpaycli\n\n.. image:: https://readthedocs.org/projects/dpaycli/badge/?version=latest\n :target: http://dpaycli.readthedocs.org/en/latest/?badge=latest\n\n.. image:: https://api.codacy.com/project/badge/Grade/e5476faf97df4c658697b8e7a7efebd7\n :target: https://www.codacy.com/app/holgern/dpaycli?utm_source=github.com&utm_medium=referral&utm_content=holgern/dpaycli&utm_campaign=Badge_Grade\n\n.. image:: https://pyup.io/repos/github/holgern/dpaycli/shield.svg\n :target: https://pyup.io/repos/github/holgern/dpaycli/\n :alt: Updates\n\n.. image:: https://api.codeclimate.com/v1/badges/e7bdb5b4aa7ab160a780/test_coverage\n :target: https://codeclimate.com/github/holgern/dpaycli/test_coverage\n :alt: Test Coverage\n\nSupport & Documentation\n=======================\nYou may find help in the `dpaycli-discord-channel`_. The discord channel can also be used to discuss things about dpaycli.\n\nA complete library documentation is available at `dpaycli.readthedocs.io`_.\n\nAdvantages over the official dpay-python library\n=================================================\n\n* High unit test coverage\n* Support for websocket nodes\n* Native support for new Appbase calls\n* Node error handling and automatic node switching\n* Usage of pycryptodomex instead of the outdated pycrypto\n* Complete documentation of dpay and all classes including all functions\n* dpayid integration\n* Works on read-only systems\n* Own BlockchainObject class with cache\n* Contains all broadcast operations\n* Estimation of virtual account operation index from date or block number\n* the command line tool dpay uses click and has more commands\n* DPayNodeRPC can be used to execute even not implemented RPC-Calls\n* More complete implemention\n\nInstallation\n============\nThe minimal working python version is 2.7.x. or 3.4.x\n\ndpaycli can be installed parallel to python-dpay.\n\nFor Debian and Ubuntu, please ensure that the following packages are installed:\n\n.. code:: bash\n\n sudo apt-get install build-essential libssl-dev python-dev\n\nFor Fedora and RHEL-derivatives, please ensure that the following packages are installed:\n\n.. code:: bash\n\n sudo yum install gcc openssl-devel python-devel\n\nFor OSX, please do the following::\n\n brew install openssl\n export CFLAGS=\"-I$(brew --prefix openssl)/include $CFLAGS\"\n export LDFLAGS=\"-L$(brew --prefix openssl)/lib $LDFLAGS\"\n\nFor Termux on Android, please install the following packages:\n\n.. code:: bash\n\n pkg install clang openssl-dev python-dev\n\nSigning and Verify can be fasten (200 %) by installing cryptography:\n\n.. code:: bash\n\n pip install -U cryptography\n\nInstall or update dpaycli by pip::\n\n pip install -U dpaycli\n\nYou can install dpaycli from this repository if you want the latest\nbut possibly non-compiling version::\n\n git clone https://github.com/holgern/dpaycli.git\n cd dpaycli\n python setup.py build\n\n python setup.py install --user\n\nRun tests after install::\n\n pytest\n\n\nInstalling dpaycli with conda-forge\n--------------------------------\n\nInstalling dpaycli from the conda-forge channel can be achieved by adding conda-forge to your channels with::\n\n conda config --add channels conda-forge\n\nOnce the conda-forge channel has been enabled, dpaycli can be installed with::\n\n conda install dpaycli\n\nSigning and Verify can be fasten (200 %) by installing cryptography::\n\n conda install cryptography\n\ndpaycli can be updated by::\n\n conda update dpaycli\n\nCLI tool dpay\n---------------\nA command line tool is available. The help output shows the available commands:\n\n dpay --help\n\nStand alone version of CLI tool dpay\n--------------------------------------\nWith the help of pyinstaller, a stand alone version of dpay was created for Windows, OSX and linux.\nEach version has just to be unpacked and can be used in any terminal. The packed directories\ncan be found under release. Each release has a hash sum, which is created directly in the build-server\nbefore transmitting the packed file. Please check the hash-sum after downloading.\n\nChangelog\n=========\nCan be found in CHANGELOG.rst.\n\nLicense\n=======\nThis library is licensed under the MIT License.\n\nAcknowledgements\n================\n`python-bitshares`_ and `python-graphenelib`_ were created by Fabian Schuh (xeroc).\n\n\n.. _python-graphenelib: https://github.com/xeroc/python-graphenelib\n.. _python-bitshares: https://github.com/xeroc/python-bitshares\n.. _Python: http://python.org\n.. _Anaconda: https://www.continuum.io\n.. _dpaycli.readthedocs.io: http://dpaycli.readthedocs.io/en/latest/\n.. _dpaycli-discord-channel: https://discord.gg/4HM592V", "description_content_type": "", "docs_url": null, "download_url": "https://github.com/holgern/dpaycli/tarball/0.02.0", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "http://www.github.com/holgern/dpaycli", "keywords": "dpay,library,api,rpc", "license": "", "maintainer": "Holger Nahrstaedt", "maintainer_email": "holger@nahrstaedt.de", "name": "dpaycli", "package_url": "https://pypi.org/project/dpaycli/", "platform": "", "project_url": "https://pypi.org/project/dpaycli/", "project_urls": { "Download": "https://github.com/holgern/dpaycli/tarball/0.02.0", "Homepage": "http://www.github.com/holgern/dpaycli" }, "release_url": "https://pypi.org/project/dpaycli/0.2.0/", "requires_dist": null, "requires_python": "", "summary": "Unofficial Python library for dPay", "version": "0.2.0" }, "last_serial": 4376654, "releases": { "0.1.1": [ { "comment_text": "", "digests": { "md5": "69ae0023eefdf7dab155128a747537a0", "sha256": "e171506bec4089cc852aed1f0275f0a4b9778554824515e48a01661a38e904c2" }, "downloads": -1, "filename": "dpaycli-0.1.1-py3.6.egg", "has_sig": false, "md5_digest": "69ae0023eefdf7dab155128a747537a0", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 37246, "upload_time": "2018-09-04T03:33:05", "url": "https://files.pythonhosted.org/packages/13/0c/46a42cc1fea06ebde414fa2cbbb637db73dca9b32901770b1c62ff6b7767/dpaycli-0.1.1-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "cb4f8a9a6170fd55b4e1d364f4643662", "sha256": "a5a3148ba566ba7a3d987a6f05ea07fdff7adbc71683045e5f0300ab5c453688" }, "downloads": -1, "filename": "dpaycli-0.1.1.tar.gz", "has_sig": false, "md5_digest": "cb4f8a9a6170fd55b4e1d364f4643662", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17915, "upload_time": "2018-09-04T03:33:06", "url": "https://files.pythonhosted.org/packages/3f/38/3b2980fdef6aafd32b293f9ea82bf9ce14016d58ff74bfa630f0184b448d/dpaycli-0.1.1.tar.gz" } ], "0.1.2": [ { "comment_text": "", "digests": { "md5": "426b41f3f15282e88d2048bb1e9a013b", "sha256": "4137f18a307b244702a2be16abb8e0c8edbf3059446a38d81c5c6409bb62510b" }, "downloads": -1, "filename": "dpaycli-0.1.2-py3.6.egg", "has_sig": false, "md5_digest": "426b41f3f15282e88d2048bb1e9a013b", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 37227, "upload_time": "2018-09-12T18:36:41", "url": "https://files.pythonhosted.org/packages/ee/e6/f2a847ad6d70b4915e2224d22241fcad10720bc141bb796ea26774a06141/dpaycli-0.1.2-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "0ebb377a39eaacb4bf58721a9571598b", "sha256": "4b830c7f2896bb83ddb39ae24962d02ca5b4cbf91de4ea400dcb9cdbfa9a398a" }, "downloads": -1, "filename": "dpaycli-0.1.2.tar.gz", "has_sig": false, "md5_digest": "0ebb377a39eaacb4bf58721a9571598b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17891, "upload_time": "2018-09-07T06:21:26", "url": "https://files.pythonhosted.org/packages/e1/a1/e425d60b3a21a1ff7b28a43806d2e36f689e8d34b1396541dca14c6be2d3/dpaycli-0.1.2.tar.gz" } ], "0.1.3": [ { "comment_text": "", "digests": { "md5": "770a3bea63cb5057c2e63782209e4241", "sha256": "952829feef2e703fdcdb50887d56db75e464d96d0c412fec58db3d7e4d7674d9" }, "downloads": -1, "filename": "dpaycli-0.1.3-py3-none-any.whl", "has_sig": false, "md5_digest": "770a3bea63cb5057c2e63782209e4241", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 17661, "upload_time": "2018-09-12T18:36:39", "url": "https://files.pythonhosted.org/packages/a0/6e/bba0f9a2077c32187650f68b562b48c42f16978fcabdacaddb07c75f91b2/dpaycli-0.1.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8ffe665bccac69f3cffffb26a1233a38", "sha256": "d1939e2f35ea23216ef9d4dc243e51c606614e680a7b56ea974c8d3b6bb0367c" }, "downloads": -1, "filename": "dpaycli-0.1.3.tar.gz", "has_sig": false, "md5_digest": "8ffe665bccac69f3cffffb26a1233a38", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17923, "upload_time": "2018-09-12T18:36:43", "url": "https://files.pythonhosted.org/packages/05/1b/fb9f0ec3914b60ded818fca28858d43a36ecba6aff930de845cb040c86d1/dpaycli-0.1.3.tar.gz" } ], "0.1.4": [ { "comment_text": "", "digests": { "md5": "e489be4172c4f804e3b8dab9ae9af460", "sha256": "341ceed8b9d16913a1fafb528e2ea6e90bc542909e2e85c7f647d9faef12e522" }, "downloads": -1, "filename": "dpaycli-0.1.4-py3-none-any.whl", "has_sig": false, "md5_digest": "e489be4172c4f804e3b8dab9ae9af460", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 17663, "upload_time": "2018-09-12T18:37:33", "url": "https://files.pythonhosted.org/packages/a4/2b/c5f1ae89a41e5086223b6a9338ee466090e9a2ea6527cb055d7063fd563e/dpaycli-0.1.4-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6ed16ecdc1a750c9b60f5ac149543196", "sha256": "612c6a8e25ff36ba51ae1ee8ab2d43a1b8bbb3b28a34b994e591628f5c201ef4" }, "downloads": -1, "filename": "dpaycli-0.1.4.tar.gz", "has_sig": false, "md5_digest": "6ed16ecdc1a750c9b60f5ac149543196", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17926, "upload_time": "2018-09-12T18:37:37", "url": "https://files.pythonhosted.org/packages/50/0f/4138975cbed3ef6789834e14bd5d233ed4067fbcbfbae9127f60d11a58f9/dpaycli-0.1.4.tar.gz" } ], "0.1.5": [ { "comment_text": "", "digests": { "md5": "04403d59191502fafc43c26af6e5d451", "sha256": "c9933b72db43877c6f11ceafd71380a9cd0298c0b64bbdecec65149ca560544f" }, "downloads": -1, "filename": "dpaycli-0.1.5-py3-none-any.whl", "has_sig": false, "md5_digest": "04403d59191502fafc43c26af6e5d451", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 17663, "upload_time": "2018-09-12T18:38:33", "url": "https://files.pythonhosted.org/packages/a2/55/0e1ccbbde40cfd3dfec665effedc03defe3ae505c78089df22248380ac4d/dpaycli-0.1.5-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "aaf4b4f2712523a2be7be71461bdf5f1", "sha256": "213314bb7434f36cf3e2daaa8bf98c495e25203e93ed53bb3c96b6830e59f839" }, "downloads": -1, "filename": "dpaycli-0.1.5.tar.gz", "has_sig": false, "md5_digest": "aaf4b4f2712523a2be7be71461bdf5f1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17930, "upload_time": "2018-09-12T18:38:35", "url": "https://files.pythonhosted.org/packages/0a/15/a891eaf3648a5fa09090d9583fac55d09cc4962b9468f3409c713f146130/dpaycli-0.1.5.tar.gz" } ], "0.1.6": [ { "comment_text": "", "digests": { "md5": "e0e98b4f9a5a7cd1f2f7cd281c17b4d5", "sha256": "224a3351cc93666aa47d909ed02853b1dccb0937f09e15d121f654c0f555dee1" }, "downloads": -1, "filename": "dpaycli-0.1.6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e0e98b4f9a5a7cd1f2f7cd281c17b4d5", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 17678, "upload_time": "2018-09-14T05:49:11", "url": "https://files.pythonhosted.org/packages/65/3b/72aa1b1e199a8d88a8243c6830064430c1313d962d5deea3b16581baa0f4/dpaycli-0.1.6-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "cd85bb8f96633a4a1cfedf0e9686215c", "sha256": "264db2febd7f069e09327c590e5bde0b4831168a2906a5c44d9b3ee2208c5699" }, "downloads": -1, "filename": "dpaycli-0.1.6.tar.gz", "has_sig": false, "md5_digest": "cd85bb8f96633a4a1cfedf0e9686215c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17943, "upload_time": "2018-09-14T05:49:13", "url": "https://files.pythonhosted.org/packages/f5/65/f6d71efa62b807f7059adf7bc3439abc2d63d636acf956ca9cdeba07daab/dpaycli-0.1.6.tar.gz" } ], "0.1.7": [ { "comment_text": "", "digests": { "md5": "0b929e120a3e003706822ac424d62eea", "sha256": "aa35bbd0948f87310c65a87a917f21b6655b1bc1de5810fa0b6a20e5ffd2f700" }, "downloads": -1, "filename": "dpaycli-0.1.7-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "0b929e120a3e003706822ac424d62eea", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 17680, "upload_time": "2018-09-14T08:14:32", "url": "https://files.pythonhosted.org/packages/61/54/dbe3d2644f84a4fe6fb8aa508193b2caf3facc95ddf13d99148642b798f2/dpaycli-0.1.7-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8dabced7aee3681dc4d7fafface3f296", "sha256": "55d8b9be545ef058a63bdf3431eceff16206cd3b166e314105a066322a791124" }, "downloads": -1, "filename": "dpaycli-0.1.7.tar.gz", "has_sig": false, "md5_digest": "8dabced7aee3681dc4d7fafface3f296", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17941, "upload_time": "2018-09-14T08:14:33", "url": "https://files.pythonhosted.org/packages/a3/56/670b27ae0716a415af14ba9526ed2ab11413baa87f0c7eabe0f26b8b6faa/dpaycli-0.1.7.tar.gz" } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "219a5360075766338f20f07d17621ff9", "sha256": "acd521fa295e77b16ca60b18f11169a031423d1f9b9e41c2818db82dd5049943" }, "downloads": -1, "filename": "dpaycli-0.2.0-py3.6.egg", "has_sig": false, "md5_digest": "219a5360075766338f20f07d17621ff9", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 746956, "upload_time": "2018-10-15T08:01:29", "url": "https://files.pythonhosted.org/packages/cd/df/b28df7ed2852252cb25250e3088b6082232df19d696da9fc7597bd38fee9/dpaycli-0.2.0-py3.6.egg" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "219a5360075766338f20f07d17621ff9", "sha256": "acd521fa295e77b16ca60b18f11169a031423d1f9b9e41c2818db82dd5049943" }, "downloads": -1, "filename": "dpaycli-0.2.0-py3.6.egg", "has_sig": false, "md5_digest": "219a5360075766338f20f07d17621ff9", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 746956, "upload_time": "2018-10-15T08:01:29", "url": "https://files.pythonhosted.org/packages/cd/df/b28df7ed2852252cb25250e3088b6082232df19d696da9fc7597bd38fee9/dpaycli-0.2.0-py3.6.egg" } ] }