{ "info": { "author": "Creativechain Foundation", "author_email": "info@creativechain.org", "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", "Programming Language :: Python :: 3.7", "Topic :: Office/Business :: Financial" ], "description": "crea - Unofficial Python Library for Crea\n===============================================\n\ncrea is an unofficial python library for crea, which is created new from scratch from `python-bitshares`_\nThe library name is derived from a beam machine, similar to the analogy between crea and steam. crea includes `python-graphenelib`_.\n\n.. image:: https://img.shields.io/pypi/v/crea.svg\n :target: https://pypi.python.org/pypi/crea/\n :alt: Latest Version\n\n.. image:: https://img.shields.io/pypi/pyversions/crea.svg\n :target: https://pypi.python.org/pypi/crea/\n :alt: Python Versions\n\n\n.. image:: https://anaconda.org/conda-forge/crea/badges/version.svg\n :target: https://anaconda.org/conda-forge/crea\n\n\n.. image:: https://anaconda.org/conda-forge/crea/badges/downloads.svg\n :target: https://anaconda.org/conda-forge/crea\n\n\nCurrent build status\n--------------------\n\n.. image:: https://travis-ci.org/holgern/crea.svg?branch=master\n :target: https://travis-ci.org/holgern/crea\n\n.. image:: https://ci.appveyor.com/api/projects/status/ig8oqp8bt2fmr09a?svg=true\n :target: https://ci.appveyor.com/project/holger80/crea\n\n.. image:: https://circleci.com/gh/holgern/crea.svg?style=svg\n :target: https://circleci.com/gh/holgern/crea\n\n.. image:: https://readthedocs.org/projects/crea/badge/?version=latest\n :target: http://crea.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/crea?utm_source=github.com&utm_medium=referral&utm_content=holgern/crea&utm_campaign=Badge_Grade\n\n.. image:: https://pyup.io/repos/github/holgern/crea/shield.svg\n :target: https://pyup.io/repos/github/holgern/crea/\n :alt: Updates\n\n.. image:: https://api.codeclimate.com/v1/badges/e7bdb5b4aa7ab160a780/test_coverage\n :target: https://codeclimate.com/github/holgern/crea/test_coverage\n :alt: Test Coverage\n\nSupport & Documentation\n=======================\nYou may find help in the `crea-discord-channel`_. The discord channel can also be used to discuss things about crea.\n\nA complete library documentation is available at `crea.readthedocs.io`_.\n\nAdvantages over the official crea-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 creapy and all classes including all functions\n* creaconnect 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 creapy uses click and has more commands\n* CreaNodeRPC 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\ncrea can be installed parallel to python-crea.\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\nor:\n\n.. code:: bash\n\n pip install -U secp256k1prp\n\nInstall or update crea by pip::\n\n pip install -U crea\n\nYou can install crea from this repository if you want the latest\nbut possibly non-compiling version::\n\n git clone https://github.com/holgern/crea.git\n cd crea\n python setup.py build\n\n python setup.py install --user\n\nRun tests after install::\n\n pytest\n\n\nInstalling crea with conda-forge\n--------------------------------\n\nInstalling crea 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, crea can be installed with::\n\n conda install crea\n\nSigning and Verify can be fasten (200 %) by installing cryptography::\n\n conda install cryptography\n\ncrea can be updated by::\n\n conda update crea\n\nCLI tool creapy\n---------------\nA command line tool is available. The help output shows the available commands:\n\n creapy --help\n\nStand alone version of CLI tool creapy\n--------------------------------------\nWith the help of pyinstaller, a stand alone version of creapy 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.. _crea.readthedocs.io: http://crea.readthedocs.io/en/latest/\n.. _crea-discord-channel: https://discord.gg/4HM592V\n\n\n", "description_content_type": "", "docs_url": null, "download_url": "https://github.com/creativechain/crea-python-lib/tarball/0.1.6", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/creativechain/crea-python-lib", "keywords": "crea,library,api,rpc", "license": "", "maintainer": "", "maintainer_email": "", "name": "crea", "package_url": "https://pypi.org/project/crea/", "platform": "", "project_url": "https://pypi.org/project/crea/", "project_urls": { "Download": "https://github.com/creativechain/crea-python-lib/tarball/0.1.6", "Homepage": "https://github.com/creativechain/crea-python-lib" }, "release_url": "https://pypi.org/project/crea/0.1.6/", "requires_dist": [ "future", "ecdsa", "requests", "websocket-client", "appdirs", "Events", "scrypt", "pylibscrypt", "pycryptodomex", "pytz", "Click", "prettytable", "pyyaml" ], "requires_python": "", "summary": "Unofficial Python library for CREA", "version": "0.1.6" }, "last_serial": 4857635, "releases": { "0.1.0": [ { "comment_text": "", "digests": { "md5": "543d3e735acb2d2019f5bd8a3b157b28", "sha256": "b4a0d3a0cc04e159dcfbfcbb5174f86d5e7cdf11c0e9b300f6a975d6fde8c25f" }, "downloads": -1, "filename": "crea-0.1.0-py3-none-any.whl", "has_sig": false, "md5_digest": "543d3e735acb2d2019f5bd8a3b157b28", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 219661, "upload_time": "2018-09-17T19:40:18", "url": "https://files.pythonhosted.org/packages/7c/c3/82e0e944b00478e071a5750d70e4b313f54bcffb819df8df202d6ef19a5f/crea-0.1.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "95bf2c43e59d2e85c5126cab57e5f7e6", "sha256": "cc235cea15c1208e2055eee628209f442cd1f63131319f426d65216e87fe18aa" }, "downloads": -1, "filename": "crea-0.1.0.tar.gz", "has_sig": false, "md5_digest": "95bf2c43e59d2e85c5126cab57e5f7e6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 211318, "upload_time": "2018-09-17T19:40:21", "url": "https://files.pythonhosted.org/packages/0e/30/44b66418e4cad43f027481bc3372f24db9758768d9eb6622eb9410e00361/crea-0.1.0.tar.gz" } ], "0.1.4": [ { "comment_text": "", "digests": { "md5": "487b174122c3ddd9c50af257aea14cfe", "sha256": "bf407638434526ccff906c99166fabab075e863df35b0e71aead159c17c94aa8" }, "downloads": -1, "filename": "crea-0.1.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "487b174122c3ddd9c50af257aea14cfe", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 334078, "upload_time": "2019-02-01T13:30:00", "url": "https://files.pythonhosted.org/packages/4d/1e/a4876b01a00dcca5a1e9154e5e2d94f30df0eda11929ac49ffcc529f5455/crea-0.1.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c69874e9912aef7db5e0af8c1a9d2dd8", "sha256": "e21f3c90909ae98d090a5e6a9872e56b9411d2099046fe4342203c37ba825761" }, "downloads": -1, "filename": "crea-0.1.4.tar.gz", "has_sig": false, "md5_digest": "c69874e9912aef7db5e0af8c1a9d2dd8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 495245, "upload_time": "2019-02-01T13:30:03", "url": "https://files.pythonhosted.org/packages/6a/31/18715da1cd8d71719aa9d7feba539c59a417ac26b56df0dfbfbbd33510a7/crea-0.1.4.tar.gz" } ], "0.1.5": [ { "comment_text": "", "digests": { "md5": "be33fd45cad2a4ecc425c749023a3701", "sha256": "a931e817c495edeaae3d52a2e60f5fa4c247090c9a6ca13d76f6f10abe664d3e" }, "downloads": -1, "filename": "crea-0.1.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "be33fd45cad2a4ecc425c749023a3701", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 334061, "upload_time": "2019-02-01T15:30:45", "url": "https://files.pythonhosted.org/packages/94/5a/d76406d680b5eece66ee462e50c934b00e1c09c903eac310fb2e586966c1/crea-0.1.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b56db3b6ebcd81e404a860a6bfb441e0", "sha256": "639688445e6e5fa3b5979a9fd3075a3fe8c175e81452cb74e2a9e43b35e01d2a" }, "downloads": -1, "filename": "crea-0.1.5.tar.gz", "has_sig": false, "md5_digest": "b56db3b6ebcd81e404a860a6bfb441e0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 495229, "upload_time": "2019-02-01T15:30:47", "url": "https://files.pythonhosted.org/packages/0d/e0/3aed0d8de29320974bc60914c8a0f71d84db594caa49741b961b538b875f/crea-0.1.5.tar.gz" } ], "0.1.6": [ { "comment_text": "", "digests": { "md5": "15e7d46edde2d9a44961f5466af430fe", "sha256": "fbfd1e0b5c9c9f840079a9399dabf53da0ee58b5ccbdf62d461acc802753a794" }, "downloads": -1, "filename": "crea-0.1.6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "15e7d46edde2d9a44961f5466af430fe", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 334061, "upload_time": "2019-02-23T08:15:38", "url": "https://files.pythonhosted.org/packages/a6/d3/5df1e385d770b663b5c76b7d869b88a644d03ed626fbba075a418c364a83/crea-0.1.6-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b02dc27ba72d034cdbabd6dd757bcbb5", "sha256": "05a56aefcca88f7a092c27c199fb782e6c10d3986a95c5efb88348968ddb6e10" }, "downloads": -1, "filename": "crea-0.1.6.tar.gz", "has_sig": false, "md5_digest": "b02dc27ba72d034cdbabd6dd757bcbb5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 495269, "upload_time": "2019-02-23T08:15:52", "url": "https://files.pythonhosted.org/packages/04/27/85de2344d406aaa0e0a58c1ddf9d2fea14d5e3e19d55f37be24d4b9af388/crea-0.1.6.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "15e7d46edde2d9a44961f5466af430fe", "sha256": "fbfd1e0b5c9c9f840079a9399dabf53da0ee58b5ccbdf62d461acc802753a794" }, "downloads": -1, "filename": "crea-0.1.6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "15e7d46edde2d9a44961f5466af430fe", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 334061, "upload_time": "2019-02-23T08:15:38", "url": "https://files.pythonhosted.org/packages/a6/d3/5df1e385d770b663b5c76b7d869b88a644d03ed626fbba075a418c364a83/crea-0.1.6-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b02dc27ba72d034cdbabd6dd757bcbb5", "sha256": "05a56aefcca88f7a092c27c199fb782e6c10d3986a95c5efb88348968ddb6e10" }, "downloads": -1, "filename": "crea-0.1.6.tar.gz", "has_sig": false, "md5_digest": "b02dc27ba72d034cdbabd6dd757bcbb5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 495269, "upload_time": "2019-02-23T08:15:52", "url": "https://files.pythonhosted.org/packages/04/27/85de2344d406aaa0e0a58c1ddf9d2fea14d5e3e19d55f37be24d4b9af388/crea-0.1.6.tar.gz" } ] }