hive-nectar 0.0.11__py3-none-any.whl → 0.1.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of hive-nectar might be problematic. Click here for more details.
- {hive_nectar-0.0.11.dist-info → hive_nectar-0.1.1.dist-info}/METADATA +12 -11
- hive_nectar-0.1.1.dist-info/RECORD +88 -0
- nectar/__init__.py +1 -4
- nectar/account.py +791 -685
- nectar/amount.py +82 -21
- nectar/asset.py +1 -2
- nectar/block.py +49 -23
- nectar/blockchain.py +111 -143
- nectar/blockchaininstance.py +396 -247
- nectar/blockchainobject.py +33 -5
- nectar/cli.py +1058 -1349
- nectar/comment.py +313 -181
- nectar/community.py +39 -43
- nectar/constants.py +1 -14
- nectar/discussions.py +793 -139
- nectar/hive.py +137 -77
- nectar/hivesigner.py +106 -68
- nectar/imageuploader.py +33 -23
- nectar/instance.py +31 -79
- nectar/market.py +128 -264
- nectar/memo.py +40 -13
- nectar/message.py +23 -10
- nectar/nodelist.py +115 -81
- nectar/price.py +80 -61
- nectar/profile.py +6 -3
- nectar/rc.py +45 -25
- nectar/snapshot.py +285 -163
- nectar/storage.py +16 -5
- nectar/transactionbuilder.py +132 -41
- nectar/utils.py +37 -17
- nectar/version.py +1 -1
- nectar/vote.py +171 -30
- nectar/wallet.py +26 -19
- nectar/witness.py +153 -54
- nectarapi/graphenerpc.py +147 -133
- nectarapi/noderpc.py +12 -6
- nectarapi/rpcutils.py +12 -6
- nectarapi/version.py +1 -1
- nectarbase/ledgertransactions.py +24 -1
- nectarbase/objects.py +17 -6
- nectarbase/operations.py +160 -90
- nectarbase/signedtransactions.py +38 -2
- nectarbase/version.py +1 -1
- nectargraphenebase/account.py +295 -17
- nectargraphenebase/chains.py +0 -135
- nectargraphenebase/ecdsasig.py +152 -176
- nectargraphenebase/types.py +18 -4
- nectargraphenebase/unsignedtransactions.py +1 -1
- nectargraphenebase/version.py +1 -1
- hive_nectar-0.0.11.dist-info/RECORD +0 -91
- nectar/blurt.py +0 -562
- nectar/conveyor.py +0 -308
- nectar/steem.py +0 -581
- {hive_nectar-0.0.11.dist-info → hive_nectar-0.1.1.dist-info}/WHEEL +0 -0
- {hive_nectar-0.0.11.dist-info → hive_nectar-0.1.1.dist-info}/entry_points.txt +0 -0
- {hive_nectar-0.0.11.dist-info → hive_nectar-0.1.1.dist-info}/licenses/LICENSE.txt +0 -0
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: hive-nectar
|
|
3
|
-
Version: 0.
|
|
4
|
-
Summary:
|
|
3
|
+
Version: 0.1.1
|
|
4
|
+
Summary: Hive Blockchain Python Library
|
|
5
5
|
Project-URL: Homepage, http://www.github.com/thecrazygm/hive-nectar
|
|
6
|
-
Project-URL: Download, https://github.com/thecrazygm/hive-nectar/tarball/0.
|
|
6
|
+
Project-URL: Download, https://github.com/thecrazygm/hive-nectar/tarball/0.1.0b
|
|
7
7
|
Project-URL: Bug Tracker, https://github.com/thecrazygm/hive-nectar/issues
|
|
8
8
|
Author-email: Michael Garcia <thecrazygm@gmail.com>
|
|
9
9
|
Maintainer-email: Michael Garcia <thecrazygm@gmail.com>
|
|
@@ -49,6 +49,7 @@ Requires-Dist: appdirs
|
|
|
49
49
|
Requires-Dist: asn1crypto
|
|
50
50
|
Requires-Dist: click
|
|
51
51
|
Requires-Dist: click-shell
|
|
52
|
+
Requires-Dist: cryptography
|
|
52
53
|
Requires-Dist: diff-match-patch
|
|
53
54
|
Requires-Dist: ecdsa
|
|
54
55
|
Requires-Dist: prettytable
|
|
@@ -56,13 +57,12 @@ Requires-Dist: pycryptodomex
|
|
|
56
57
|
Requires-Dist: requests
|
|
57
58
|
Requires-Dist: ruamel-yaml
|
|
58
59
|
Requires-Dist: scrypt
|
|
59
|
-
Requires-Dist: types-requests
|
|
60
|
-
Requires-Dist: websocket-client
|
|
60
|
+
Requires-Dist: types-requests
|
|
61
61
|
Description-Content-Type: text/markdown
|
|
62
62
|
|
|
63
|
-
# nectar -
|
|
63
|
+
# nectar - Python Library for HIVE
|
|
64
64
|
|
|
65
|
-
nectar is
|
|
65
|
+
nectar is a python library for HIVE, which is
|
|
66
66
|
created from the remains of [beem](https://github.com/holgern/beem) which was derived from [python-bitshares](https://github.com/xeroc/python-bitshares)
|
|
67
67
|
The library name is derived from a nectar of a flower.
|
|
68
68
|
|
|
@@ -72,14 +72,15 @@ nectar includes [python-graphenelib](https://github.com/xeroc/python-graphenelib
|
|
|
72
72
|
|
|
73
73
|
[](https://pypi.python.org/pypi/hive-nectar/)
|
|
74
74
|
|
|
75
|
+
[](https://deepwiki.com/TheCrazyGM/hive-nectar)
|
|
76
|
+
|
|
75
77
|
## Current build status
|
|
76
78
|
|
|
77
79
|
# Support & Documentation
|
|
78
80
|
|
|
79
|
-
You may find help in the
|
|
81
|
+
You may find help in the nectar-discord. The discord channel can also be used to discuss things about nectar.
|
|
80
82
|
|
|
81
|
-
A complete library documentation is available at
|
|
82
|
-
[temporary]()
|
|
83
|
+
A complete library documentation is available at [ReadTheDocs](https://hive-nectar.readthedocs.io/en/latest/)
|
|
83
84
|
|
|
84
85
|
# About hive-nectar
|
|
85
86
|
|
|
@@ -97,7 +98,7 @@ A complete library documentation is available at
|
|
|
97
98
|
|
|
98
99
|
# Installation
|
|
99
100
|
|
|
100
|
-
The minimal working
|
|
101
|
+
The minimal working Python version is >=3.10
|
|
101
102
|
|
|
102
103
|
nectar can be installed parallel to beem.
|
|
103
104
|
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
nectar/__init__.py,sha256=zy2BLTHFDp70FCUzqxOJfXIbII78Md9FHcHYiSkvmLA,458
|
|
2
|
+
nectar/account.py,sha256=5MrlA2cdDEdVGUiqxJ4sdiw_R-F2QKW5yeS5z54rX9I,191917
|
|
3
|
+
nectar/amount.py,sha256=ZEECuR_2uwcwjaenXl96yPAv2w3X_Cs2ZU-X-_44tL8,21688
|
|
4
|
+
nectar/asciichart.py,sha256=DwPyZAqne6o9L_PPRtlw6Xj0QdOZ-aId1lpOnmbyc6Q,8828
|
|
5
|
+
nectar/asset.py,sha256=sxrxLb4yP3pwvs3gcHBeN68zH57kFmsvd6FsDb08u2k,2732
|
|
6
|
+
nectar/block.py,sha256=irRh-Bh23qkM_u9lv4WcBUiVyYROBIO_kTzutmidI9w,17757
|
|
7
|
+
nectar/blockchain.py,sha256=yLZxV7N07HTB7oMxZuXYXKWc1Q1RcdXsnM5pqA1QLCg,49501
|
|
8
|
+
nectar/blockchaininstance.py,sha256=7aVmrjyqWrRPo7gFwb2wCEC-E0bGgQN7l519N-82JyQ,104850
|
|
9
|
+
nectar/blockchainobject.py,sha256=fq_ocT_So0y5neZzs8v_LmBfKlvDdXwsBj3_ZvO7fkg,8660
|
|
10
|
+
nectar/cli.py,sha256=FgkZsuX1iXnWMoVglnAB4-4lC4u8Wcla2oP2iIxYn68,212838
|
|
11
|
+
nectar/comment.py,sha256=EzCqvFhLrWvVD4Af5lPaSR_-e-vCR9Q6Er9Ha1GXBKo,58755
|
|
12
|
+
nectar/community.py,sha256=exeYHRLfLfzylZn-dL8A-XLfO2__gd3GE4Zg2Nq9fes,31810
|
|
13
|
+
nectar/constants.py,sha256=d_B4XfCeCysvczThCtBjrMpuKwFXZ0_xmBvCIyI4FhU,4498
|
|
14
|
+
nectar/discussions.py,sha256=Nb-i_9ltLLz8gBJbPgNle6J68w906NP_aBr-LLL3has,109187
|
|
15
|
+
nectar/exceptions.py,sha256=AKA75cDNnpioZPe2XcNWvyAVPRLcHBfPyBwjYVFOJC0,2884
|
|
16
|
+
nectar/hive.py,sha256=PIOuWjg1cY2fAwf9AT3DCj7i3Tk1AGN3oHzRNvi1OwM,27597
|
|
17
|
+
nectar/hivesigner.py,sha256=RpFb8EoYYk7K-cmEPalpr0BiWV87npJoXq8z2QeLS_I,17510
|
|
18
|
+
nectar/imageuploader.py,sha256=Qz1N1BPjuQVvh1SUItyZLwGVc8xYXxmnrADVpWPld6E,3436
|
|
19
|
+
nectar/instance.py,sha256=JwHluHm1hUtjylUAqkB9IubGxyIeyCmAIpwLW1_qz6M,2718
|
|
20
|
+
nectar/market.py,sha256=oGl2CVlCaLVicKkHTNtu2UB_z3ddu1MIBlPZE2cfFCk,39002
|
|
21
|
+
nectar/memo.py,sha256=PQxF54bVqU8VnBUGy3aYxeNRMVIyAIZslqqrVZxl61o,19987
|
|
22
|
+
nectar/message.py,sha256=m53YjIY9gAXN7kjxREoeMkRxVIsyQuqRwj_Yk-Uclp4,13641
|
|
23
|
+
nectar/nodelist.py,sha256=Km9P2S1gRYRTgJ6Z1MpTVbEBK1Wymexv7GgM2_AVnYA,22208
|
|
24
|
+
nectar/price.py,sha256=5TLcWREki2Jl4U9xL6V6_a9jW8c974aJqL7EANEeuDs,22730
|
|
25
|
+
nectar/profile.py,sha256=loVIWX2CBtMqaVB-jRJeUD3uhF_0pMflqIYI0pRbZXY,2170
|
|
26
|
+
nectar/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
27
|
+
nectar/rc.py,sha256=EKiL1Hw2YhTj0zlwbjJEsRGtyNNw7WVMrtWgCvR7Zaw,14407
|
|
28
|
+
nectar/snapshot.py,sha256=z6qsTTZ0sJuP9fCVVwg1AUjAA3pjl9V9uouYUJJhywo,40967
|
|
29
|
+
nectar/storage.py,sha256=B_V_rD3xHArNfzyOMd9uKaI0qQpB9odj67iMkwDSsY0,2788
|
|
30
|
+
nectar/transactionbuilder.py,sha256=Ji5jIKDIY1-h40obTdJIfpBPdPt_QozUaLqH3HrEF8A,31663
|
|
31
|
+
nectar/utils.py,sha256=FqFy9-qePrvqMI-NloE2wEPd5AdvlPic4UljAwslrdk,19895
|
|
32
|
+
nectar/version.py,sha256=wCRHhfMdCUo68JZ0hk3D3RtahZA6FH2XxtH9K5lu020,76
|
|
33
|
+
nectar/vote.py,sha256=26OzZUw3ZNKbLFQ766vv32qMxiDld94csEjMGzeU4WU,28641
|
|
34
|
+
nectar/wallet.py,sha256=VUxsKLveb4QokfAEDQFAkxZgmiWAppqFhHOm2ayBlH4,16777
|
|
35
|
+
nectar/witness.py,sha256=lNk3CwHI21HDrckPUF1D6CTZp7HEFSoT_l4XmXnAtKY,29155
|
|
36
|
+
nectarapi/__init__.py,sha256=eyiQRdZ8agc_qi9fr8sAvYPfpStEpTN06yBWFxkCTJk,176
|
|
37
|
+
nectarapi/exceptions.py,sha256=gDaDFy1QcFkXrpOadduZ9bFWanHZpaiZRK_AOJZ-AWo,2044
|
|
38
|
+
nectarapi/graphenerpc.py,sha256=-N1aYsISEnCK803S51Sl-puLxREEvcWPIlmR0B1-_n0,25165
|
|
39
|
+
nectarapi/node.py,sha256=mjK-fMFJ2icDaOUBoiUuDU-beo3aQK0HGwt0l0pC0YQ,5456
|
|
40
|
+
nectarapi/noderpc.py,sha256=K96Mt5g5-T3npfFZoWmVl0xhFfifUrlxpQml3AixlFE,10767
|
|
41
|
+
nectarapi/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
42
|
+
nectarapi/rpcutils.py,sha256=OQQPApgzViYggeVrRKeQ15w6iWzUeIHI11rpNv4oMJQ,3096
|
|
43
|
+
nectarapi/version.py,sha256=wCRHhfMdCUo68JZ0hk3D3RtahZA6FH2XxtH9K5lu020,76
|
|
44
|
+
nectarbase/__init__.py,sha256=O11coqB-Woq_yp946kA1b8hzqSdDcK9j9gwenx7d6JE,253
|
|
45
|
+
nectarbase/ledgertransactions.py,sha256=_1vNbybdT2kGBisQJfaP0ZJHLabV7VD6_Us0Hf30cD0,3773
|
|
46
|
+
nectarbase/memo.py,sha256=Ix5Uhan7x2rz54_QMSQ-Z5rZz-FqvR3i13H3cGEnPIY,7496
|
|
47
|
+
nectarbase/objects.py,sha256=jfrAQ7y77uBM6x-mtmcrfGEaZfY8l6x4trKjymebNiQ,15429
|
|
48
|
+
nectarbase/objecttypes.py,sha256=zrKBFwoUJXvWDSn8RugWioKqf7TS7dY0EEXVAZv_-K0,690
|
|
49
|
+
nectarbase/operationids.py,sha256=wpKltPFlInpueyvLl3XCI2fjP9ziIs4MStoIj2mbPfQ,3645
|
|
50
|
+
nectarbase/operations.py,sha256=k6tYdFjebs__sIjz1cZ5k9P-X52HNdT9aSFy7KKG6mI,52424
|
|
51
|
+
nectarbase/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
52
|
+
nectarbase/signedtransactions.py,sha256=0YpmcU0hEx7rALV9IbXgk6W2ilmBzbo12dveqSlL_TI,3541
|
|
53
|
+
nectarbase/transactions.py,sha256=D7TK4Pkxr1N7p0Yh2bxvdXpOuEYpLl2tWK84Pj_93c0,319
|
|
54
|
+
nectarbase/version.py,sha256=wCRHhfMdCUo68JZ0hk3D3RtahZA6FH2XxtH9K5lu020,76
|
|
55
|
+
nectargrapheneapi/__init__.py,sha256=_Gxdt_qaQQwwYABHEFBuf4tMh93ItIa3HPBH9nk1PTw,151
|
|
56
|
+
nectargrapheneapi/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
57
|
+
nectargraphenebase/__init__.py,sha256=66IxULO3eMKcx-nRDFDLz0YfEvXCkty08xjt9M1WgyY,577
|
|
58
|
+
nectargraphenebase/account.py,sha256=ILrfxR0xyZIC09cTwsTJpmPG1o0jk0yTxV4-jNGhTZo,38582
|
|
59
|
+
nectargraphenebase/aes.py,sha256=BywHJR8F7n2IBXhBmXqyc61DlVXcJ_QIE9qkubFdX2M,1578
|
|
60
|
+
nectargraphenebase/base58.py,sha256=7ilcjbwV3YGDL3a5MCilR03P-p5kNVafrmsRsftr0d8,5410
|
|
61
|
+
nectargraphenebase/bip32.py,sha256=UjqgbBvvdya3gQRD73ccdfEQL4brxs4DWhM9vTvRMpc,16023
|
|
62
|
+
nectargraphenebase/bip38.py,sha256=EIlaNMvDHOhb4GKTcjX_8X8FWIG45pP3VTyoZD70Mh4,4458
|
|
63
|
+
nectargraphenebase/chains.py,sha256=oCf051rMXSfoaFJ1lzZ1gb2UgWI-tTigqGBdc5iF8EQ,513
|
|
64
|
+
nectargraphenebase/dictionary.py,sha256=Fooynl3XWE9ALy31jsVNb9CEHZh5N8TeJUAZJvqslnY,360748
|
|
65
|
+
nectargraphenebase/ecdsasig.py,sha256=nMqQgrKTgSdwQe7kMC05aFmF_BLdHugIt0B8JFeMEIU,13114
|
|
66
|
+
nectargraphenebase/objects.py,sha256=twOADiBOSXlZNu6y1TrdDw135zWQeIsfn12xRl5m6Fw,3896
|
|
67
|
+
nectargraphenebase/objecttypes.py,sha256=8YkRyxtd1hNZ06XvyHBRA5PatVeTd8XCFQmW_2p8MGk,160
|
|
68
|
+
nectargraphenebase/operationids.py,sha256=TLXB8FovmDwC39PNAR8OaW-NWyo1gFH0zE4ibShcMiI,65
|
|
69
|
+
nectargraphenebase/operations.py,sha256=Lp25CSjHUttzWLbcgYLeccFtPHqip8uo9iTqLKKm40U,690
|
|
70
|
+
nectargraphenebase/prefix.py,sha256=tpX2_uz5lPveUoGbmXC4zsrG-5QsaVbIGIFPWJvYRbg,280
|
|
71
|
+
nectargraphenebase/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
72
|
+
nectargraphenebase/signedtransactions.py,sha256=rhFEQDNcOau08qnNAf_3UxJDXtIpi5Y8tOFDXZK1bPw,7119
|
|
73
|
+
nectargraphenebase/types.py,sha256=d_4asPAmcQ61dmsXEAsXalUElAPfdmKBMuL6OMIysvI,10237
|
|
74
|
+
nectargraphenebase/unsignedtransactions.py,sha256=02jtLuTp-xNV1ujNOmMoUvx364kLMT5x7txeWeA_PJE,9238
|
|
75
|
+
nectargraphenebase/version.py,sha256=wCRHhfMdCUo68JZ0hk3D3RtahZA6FH2XxtH9K5lu020,76
|
|
76
|
+
nectarstorage/__init__.py,sha256=nEM9OMoHqHPS6IoV_JzVyxPRORz0DCeS7Yv-MwjmWoQ,1772
|
|
77
|
+
nectarstorage/base.py,sha256=h7Oca1_RaJw39P1I_xXRKup016pS8zCLOs3e4IHKKdE,9734
|
|
78
|
+
nectarstorage/exceptions.py,sha256=0erk_d0Ejia9td_Ke7XFBl17H1BxbM42gFpkej8EbV0,421
|
|
79
|
+
nectarstorage/interfaces.py,sha256=WK2YR2mKUk1Qts50ZYLd407gECywA02A8iWr_p0KfCw,6786
|
|
80
|
+
nectarstorage/masterpassword.py,sha256=xOAOZvVfIctfGiwIed_XpKnWcGDla95qp8osTLyYYCk,8654
|
|
81
|
+
nectarstorage/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
82
|
+
nectarstorage/ram.py,sha256=Cy6JbMrlgcEG673_KqfyaofhAdJR-luRKTedj3qTZEE,1034
|
|
83
|
+
nectarstorage/sqlite.py,sha256=ZKJxPL0AZjJIlwjxCEh6GGcjQzlBPuWs6tj40oPZz3M,10635
|
|
84
|
+
hive_nectar-0.1.1.dist-info/METADATA,sha256=3LZzNZ0B7jJbVRANxrN7F_S0N1bPso2eCHxiLnR2moM,6246
|
|
85
|
+
hive_nectar-0.1.1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
86
|
+
hive_nectar-0.1.1.dist-info/entry_points.txt,sha256=DbqiJb5fFpQvGZ0ojvc2w3dXZitTg6FPz09CobKq4m8,47
|
|
87
|
+
hive_nectar-0.1.1.dist-info/licenses/LICENSE.txt,sha256=WjJRNR4r7FuLEO2BTBLGa05T7bBecGGgH47NgKsSY0E,1158
|
|
88
|
+
hive_nectar-0.1.1.dist-info/RECORD,,
|
nectar/__init__.py
CHANGED
|
@@ -1,18 +1,15 @@
|
|
|
1
1
|
"""nectar."""
|
|
2
2
|
|
|
3
|
-
from .blurt import Blurt
|
|
4
3
|
from .hive import Hive
|
|
5
|
-
from .steem import Steem
|
|
6
4
|
from .version import version as __version__
|
|
7
5
|
|
|
8
6
|
__all__ = [
|
|
9
7
|
"__version__",
|
|
10
|
-
"
|
|
8
|
+
"Hive",
|
|
11
9
|
"account",
|
|
12
10
|
"amount",
|
|
13
11
|
"asset",
|
|
14
12
|
"block",
|
|
15
|
-
"blurt",
|
|
16
13
|
"blockchain",
|
|
17
14
|
"blockchaininstance",
|
|
18
15
|
"market",
|