steem-python icon indicating copy to clipboard operation
steem-python copied to clipboard

The official Python (3) library for the Steem Blockchain.

Results 91 steem-python issues
Sort by recently updated
recently updated
newest added

I have begun the very basic framework of a new python-based steem CLI called simply `steem`. The branch is a misnomer, it is a new tool, not a rework of...

e.g. ``` { "trx_id": "0000000000000000000000000000000000000000", "block": 19348545, "trx_in_block": 45, "op_in_trx": 1, "virtual_op": 0, "timestamp": "2018-01-27T15:43:42", "op": [ "producer_reward", { "producer": "pharesim", "vesting_shares": "390.877162 VESTS" } ] } ``` the `trx_id`...

The codebase conforms to pep8 formatting now (after I fixed it) but it still doesn't pass flake8 linting checks. see current list of failures here: https://circleci.com/gh/steemit/steem-python/30 We should fix this...

Related: https://github.com/steemit/steem-python/pull/102

the `steempy` cli ignored the setting from the `--node` parameter and always used the default node due to a parameter mismatch on the `Steem()` contrutor options

I have found a potential bug in Steem Python library. The voting power returned from Python library is inconsistent from the VP returned from steemd.com. For example, I ran the...

Here is a minimal example that demonstrates the issue: ``` #!/usr/bin/env python3 import steem from steembase.transactions import SignedTransaction tx_json = {"operations": [["account_update", {"account": "initminer", "owner": {"weight_threshold": 1, "account_auths": [], "key_auths":...

https://github.com/steemit/steem-python/blob/33dc65cc6fc85c51f57e182abe5fadff573cfa6e/Pipfile#L6 Dockerfile base image doesn't support python 3.6, so build fails: `AssertionError: steem requires Python 3.6 or newer`

https://github.com/steemit/steem-python/blob/33dc65cc6fc85c51f57e182abe5fadff573cfa6e/steem/steemd.py#L21