Name | hive-nectar JSON |
Version |
0.0.9
JSON |
| download |
home_page | None |
Summary | Unofficial Python library for HIVE |
upload_time | 2025-07-11 14:31:30 |
maintainer | None |
docs_url | None |
author | None |
requires_python | >=3.10 |
license | The MIT License (MIT) Copyright (c) 2015 Fabian Schuh 2018, 2019 Holger Nahrstaedt 2025, Michael Garcia Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
keywords |
api
hive
library
rpc
|
VCS |
 |
bugtrack_url |
|
requirements |
No requirements were recorded.
|
Travis-CI |
No Travis.
|
coveralls test coverage |
No coveralls.
|
# nectar - Unofficial Python Library for HIVE
nectar is an unofficial python library for HIVE, which is
created from the remains of [beem](https://github.com/holgern/beem) which was derived from [python-bitshares](https://github.com/xeroc/python-bitshares)
The library name is derived from a nectar of a flower.
nectar includes [python-graphenelib](https://github.com/xeroc/python-graphenelib).
[](https://pypi.python.org/pypi/hive-nectar/)
[](https://pypi.python.org/pypi/hive-nectar/)
## Current build status
# Support & Documentation
You may find help in the [nectar-discord-channel](). The discord channel can also be used to discuss things about nectar.
A complete library documentation is available at
[temporary]()
# About hive-nectar
- Highly opinionated fork of beem
- High unit test coverage
- Complete documentation of hive-nectar and all classes including all functions
- hivesigner 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 hive-nectar uses click and has more commands
- NodeRPC can be used to execute even not implemented RPC-Calls
- More complete implemention
# Installation
The minimal working python version is 3.12.x
nectar can be installed parallel to beem.
For Debian and Ubuntu, please ensure that the following packages are installed:
```bash
sudo apt-get install build-essential libssl-dev python3-dev python3-pip python3-setuptools
```
The following package speeds up hive-nectar:
> sudo apt-get install python3-gmpy2
For Fedora and RHEL-derivatives, please ensure that the following
packages are installed:
```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:
```bash
pkg install clang openssl python
```
Signing and Verify can be fasten (200 %) by installing cryptography (you
may need to replace pip3 by pip):
```bash
pip3 install -U cryptography
```
or (you may need to replace pip3 by pip):
```bash
pip3 install -U secp256k1prp
```
Install or update nectar by pip(you may need to replace pip3 by pip):
```bash
pip3 install -U hive-nectar
```
You can install nectar from this repository if you want the latest but
possibly non-compiling version:
```bash
git clone https://github.com/thecrazygm/hive-nectar.git
cd hive-nectar
uv sync
uv sync --dev
```
Run tests after install:
```bash
pytest
```
## Ledger support
For Ledger (Nano S) signing, the following package must be installed:
```bash
pip3 install ledgerblue
```
# Changelog
Can be found in CHANGELOG.md.
# License
This library is licensed under the MIT License.
# Acknowledgements
[beem](https://github.com/holgern/beem) was created by Holger Nahrstaedt
[python-bitshares](https://github.com/xeroc/python-bitshares) and [python-graphenelib](https://github.com/xeroc/python-graphenelib) were created by Fabian Schuh (xeroc).
Raw data
{
"_id": null,
"home_page": null,
"name": "hive-nectar",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.10",
"maintainer_email": "Michael Garcia <thecrazygm@gmail.com>",
"keywords": "api, hive, library, rpc",
"author": null,
"author_email": "Michael Garcia <thecrazygm@gmail.com>",
"download_url": "https://files.pythonhosted.org/packages/f6/5c/df6bbf23af0dc4934969d9c6132bd44c4da98e5b8f187bccafe268e48b75/hive_nectar-0.0.9.tar.gz",
"platform": null,
"description": "# nectar - Unofficial Python Library for HIVE\n\nnectar is an unofficial python library for HIVE, which is\ncreated from the remains of [beem](https://github.com/holgern/beem) which was derived from [python-bitshares](https://github.com/xeroc/python-bitshares)\nThe library name is derived from a nectar of a flower.\n\nnectar includes [python-graphenelib](https://github.com/xeroc/python-graphenelib).\n\n[](https://pypi.python.org/pypi/hive-nectar/)\n\n[](https://pypi.python.org/pypi/hive-nectar/)\n\n## Current build status\n\n# Support & Documentation\n\nYou may find help in the [nectar-discord-channel](). The discord channel can also be used to discuss things about nectar.\n\nA complete library documentation is available at\n[temporary]()\n\n# About hive-nectar\n\n- Highly opinionated fork of beem\n- High unit test coverage\n- Complete documentation of hive-nectar and all classes including all functions\n- hivesigner 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 hive-nectar uses click and has more commands\n- NodeRPC can be used to execute even not implemented RPC-Calls\n- More complete implemention\n\n# Installation\n\nThe minimal working python version is 3.12.x\n\nnectar can be installed parallel to beem.\n\nFor Debian and Ubuntu, please ensure that the following packages are installed:\n\n```bash\nsudo apt-get install build-essential libssl-dev python3-dev python3-pip python3-setuptools\n```\n\nThe following package speeds up hive-nectar:\n\n> sudo apt-get install python3-gmpy2\n\nFor Fedora and RHEL-derivatives, please ensure that the following\npackages are installed:\n\n```bash\nsudo yum install gcc openssl-devel python-devel\n```\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```bash\npkg install clang openssl python\n```\n\nSigning and Verify can be fasten (200 %) by installing cryptography (you\nmay need to replace pip3 by pip):\n\n```bash\npip3 install -U cryptography\n```\n\nor (you may need to replace pip3 by pip):\n\n```bash\npip3 install -U secp256k1prp\n```\n\nInstall or update nectar by pip(you may need to replace pip3 by pip):\n\n```bash\npip3 install -U hive-nectar\n```\n\nYou can install nectar from this repository if you want the latest but\npossibly non-compiling version:\n\n```bash\ngit clone https://github.com/thecrazygm/hive-nectar.git\ncd hive-nectar\nuv sync\nuv sync --dev\n```\n\nRun tests after install:\n\n```bash\npytest\n```\n\n## Ledger support\n\nFor Ledger (Nano S) signing, the following package must be installed:\n\n```bash\npip3 install ledgerblue\n```\n\n# Changelog\n\nCan be found in CHANGELOG.md.\n\n# License\n\nThis library is licensed under the MIT License.\n\n# Acknowledgements\n\n[beem](https://github.com/holgern/beem) was created by Holger Nahrstaedt\n[python-bitshares](https://github.com/xeroc/python-bitshares) and [python-graphenelib](https://github.com/xeroc/python-graphenelib) were created by Fabian Schuh (xeroc).\n",
"bugtrack_url": null,
"license": "The MIT License (MIT) Copyright (c) 2015 Fabian Schuh 2018, 2019 Holger Nahrstaedt 2025, Michael Garcia Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.",
"summary": "Unofficial Python library for HIVE",
"version": "0.0.9",
"project_urls": {
"Bug Tracker": "https://github.com/thecrazygm/hive-nectar/issues",
"Download": "https://github.com/thecrazygm/hive-nectar/tarball/0.0.7",
"Homepage": "http://www.github.com/thecrazygm/hive-nectar"
},
"split_keywords": [
"api",
" hive",
" library",
" rpc"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "b3c63ffa5e92cb4b02afbf2937894069a36edc370738e42820484a38503a8d19",
"md5": "b4894e416baeec7f42e3cb7c6ecb87b0",
"sha256": "b2a87c3864b1f148865139771f613e65dbb07b24614f5145d2d218d2da0c3a0f"
},
"downloads": -1,
"filename": "hive_nectar-0.0.9-py3-none-any.whl",
"has_sig": false,
"md5_digest": "b4894e416baeec7f42e3cb7c6ecb87b0",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.10",
"size": 410835,
"upload_time": "2025-07-11T14:31:28",
"upload_time_iso_8601": "2025-07-11T14:31:28.072779Z",
"url": "https://files.pythonhosted.org/packages/b3/c6/3ffa5e92cb4b02afbf2937894069a36edc370738e42820484a38503a8d19/hive_nectar-0.0.9-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f65cdf6bbf23af0dc4934969d9c6132bd44c4da98e5b8f187bccafe268e48b75",
"md5": "aeaaad3b9ea3d5f0b4d58eafaf52ecf8",
"sha256": "b5b2bd2d46ac29c439d492a6fd73fd28a1ff531cf24602eec336f827c4b19b47"
},
"downloads": -1,
"filename": "hive_nectar-0.0.9.tar.gz",
"has_sig": false,
"md5_digest": "aeaaad3b9ea3d5f0b4d58eafaf52ecf8",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.10",
"size": 653758,
"upload_time": "2025-07-11T14:31:30",
"upload_time_iso_8601": "2025-07-11T14:31:30.008707Z",
"url": "https://files.pythonhosted.org/packages/f6/5c/df6bbf23af0dc4934969d9c6132bd44c4da98e5b8f187bccafe268e48b75/hive_nectar-0.0.9.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-07-11 14:31:30",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "thecrazygm",
"github_project": "hive-nectar",
"travis_ci": false,
"coveralls": false,
"github_actions": false,
"lcname": "hive-nectar"
}