piston-lib
piston-lib copied to clipboard
Python Library for Steem
Should fix Traceback (most recent call last): File "/opt/code/telegram.py", line 16, in from piston import Steem File "/usr/local/lib/python3.6/site-packages/piston/__init__.py", line 1, in from .steem import Steem File "/usr/local/lib/python3.6/site-packages/piston/steem.py", line 9, in...
My app built with steem-piston hasn't been able to properly connect to a node ever since the depreciation of 'steemd.steemit.com' on January 6th, 2018. Can someone advise how to remedy?...
I copied a script that works on steem and changed the node, but the transactions are refused by wss://ws.golos.io The Missing Posting Authority error contains a "sigs" param in the...
Here's the error messages while installing: Running scrypt-0.8.0\setup.py -q bdist_egg --dist-dir C:\Users\123\AppData\Local\Temp\easy_install-vkmb1bvq\scrypt-0.8.0\egg-dist-tmp-l5hx6anj scrypt.c scrypt-1.2.0/lib/crypto\crypto_scrypt.h(33): fatal error C1083: Cannot open include file: 'unistd.h': No such file or directory error: Setup script...
Hello, I have trouble to transfer funds with piston-cli ```python steem = Steem(wif=posting, node="wss://this.piston.rocks") steem.transfer(to="someone-else", amount=55, asset="SBD", memo=memo, account=steemit_account) ``` It gave me this error: ```python Traceback (most recent call...
I'm running the code from the example [here](https://github.com/xeroc/piston-lib/blob/master/examples/blockchain.py) ``` from steem.blockchain import Blockchain # parse only payments from specific datetime until now b = Blockchain() history = b.replay( start_block=b.get_block_from_time("2017-03-01T00:00:00"), end_block=b.get_current_block(),...
The method get_comments() in the file post.py throws an error if the comments are sorted by total_payout_value (Python 3.5, Windows 10). > ValueError: could not convert string to float: '0.000...
When trying to run tests in the `develop` and `master` branches of the projects they fail while testing `get_categories` method. Here is a traceback: ``` self = , payload =...
The function dex.transfer(10, "SBD", "fabian", "foobar") is not working as documented in the tutorial piston-lib/docs/tutorials.rst It fail on parameter order: assert asset == self.symbol("SBD") or asset == self.symbol("steem") If you...