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

Not all library operations require keys and/or a wallet, eg, streaming blocks from blockchain. ```python hive_1 | Traceback (most recent call last): hive_1 | File "/app/hive/server/serve.py", line 13, in hive_1...

`yapf` and `autopep8` will be useful here. Here is a `fmt` recipe I use: https://github.com/steemit/jussi/blob/cfbfc006f4c6063e5fac54d68f98c17e26bcf883/Makefile#L46

https://github.com/steemit/steem-python/blob/fc20c9d8b0e0f9aac94e6ed65045a76c24bfe728/Makefile#L30 change this to `test-without-lint` until we pass the pylint tests. We don't want to ignore failing tests.

- either version 1 or 2 - At very least, should build docker image, but really it should run all tests, preferably inside built docker container

This is mainly a note to myself and will be fixed in my branch

Example: ``` from steem.blockchain import Blockchain from steem.steemd import Steemd steemd = Steemd() b = Blockchain(mode='head') h = b.stream_from( start_block=14500000, full_blocks=True, ) for block in h: if not block or...

The plugin seems to be unreliable. Furthermore, multiple accounts could share the same keys. Code in question: ```python def getAccountFromPublicKey(self, pub): """ Obtain account name from public key """ #...

### Version of Python you are running ### 3.6.8 ### Version of steem-python you are running ### latest master ### Expected Behavior ### python3 setup.py install successfully ### Actual Behavior...