create account

Introducing Lightsteem: A thin Python client for Steem by emrebeyler

View this thread on: hive.blogpeakd.comecency.com
· @emrebeyler · (edited)
$170.72
Introducing Lightsteem: A thin Python client for Steem
![Screen Shot 2018-08-07 at 7.14.36 PM.png](https://cdn.steemitimages.com/DQmV9ziht8AJYi3YhqR1gjKT96pCAe6FMiEAD7TC8nE5r13/Screen%20Shot%202018-08-07%20at%207.14.36%20PM.png)
***

### lightsteem

[Lightsteem](https://github.com/emre/lightsteem) is a light python 3.6+ client to interact with the STEEM blockchain. It's simple and stupid. You ask something, you get something.

After working extensively with steem-python and beem in the past, I found myself frusturated while debugging simple scripts. Both of these libraries include enourmous amount of work, but they do a good amount of encapsulation and magic inside.

> Simple is better than complex.

is from the Zen of Python. That brought the idea of having a simple client myself with my design decisions.

#### What's supported?

lightsteem is designed for appbase nodes. Every call supported by the appbase is
accessible via the ```Client``` interface. It also supports jussi's batch calls.

It also supports auto retry and node failovers out of the box.

#### Installation

```
$ (sudo) pip install lightsteem
```

#### Usage

```python
from lightsteem.client import Client

client = Client(nodes=["https://api.steemit.com"])

print(client.get_dynamic_global_properties())
```

By default, client uses **condenser_api** to make the calls. If you
want to change the api, just call the client instance
with the api name.

#### Examples

##### Get Account History
```python
from lightsteem.client import Client

c = Client()

history = c.get_account_history("emrebeyler", 1000, 10)

for op in history:
    print(op)
```


##### Get accounts by key (account_by_key_api)

```python

from lightsteem.client import Client

client = Client()

accounts = client('account_by_key_api').get_key_references({
    "keys":["STM5jZtLoV8YbxCxr4imnbWn61zMB24wwonpnVhfXRmv7j6fk3dTH"]
})

print(accounts)
```

##### Get last 10 posts of a user (tags_api)

```python
from lightsteem.client import Client

c = Client()

posts = c('tags_api').get_discussions_by_blog({"tag": "ned", "limit": 10})
for p in posts["discussions"]:
    print(p["title"])
```

##### Get block detail (block_api)

```python
from lightsteem.client import Client

c = Client()

block = c('block_api').get_block({"block_num": 24858937})

print(block)
```

#### Get current reserve ratio (witness_api)

```python
from lightsteem.client import Client

c = Client()

ratio = c('witness_api').get_reserve_ratio()

print(ratio)
```

##### Get list of supported methods by RPC node (jsonrpc)

```python
from lightsteem.client import Client

c = Client()

methods = c('jsonrpc').get_methods()

print(methods)

```

##### Get vesting delegations of an account (database_api)

```python
from lightsteem.client import Client

c = Client()

outgoing_delegations = c('database_api').find_vesting_delegations({"account": "emrebeyler"})

print(outgoing_delegations)

```

#### Batch calls

If a JUSSI instance is set on the appbase node, you can enjoy batch calls. 

```python
from lightsteem.client import Client

c = Client()

c.get_block(24858937, batch=True)
c.get_block(24858938, batch=True)

blocks = c.process_batch()

print(blocks)

```
#### Roadmap

- Transaction signing, support for broadcast APIs.
- Helpers for different kind of topics. (Account, Witness, Streaming helpers, etc.)
- Having a good code coverage in terms of unit tests.

#### Contributing

- You can stop by [Lightsteem discord](https://discord.gg/jPYDmCJ) and join the development with your feedback and ideas.

- You can pick an [open issue](https://github.com/emre/lightsteem/issues) and start working on it. But we should reach a consensus about the design decisions before any merge.


#### Notes

- You can see the list of api types at [Steem Developers Portal](https://developers.steem.io/apidefinitions/#apidefinitions-condenser-api)

Consider using condenser_api methods until the other apis becomes stable. A warning from the official portal:

> While the condenser_api.* calls are ready for use, all other appbase methods are currently works in progress and may change, or be unsuitable for production use.
πŸ‘  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 206 others
πŸ‘Ž  
properties (23)
authoremrebeyler
permlinkintroducing-lightsteem-a-thin-python-client-for-steem
categoryutopian-io
json_metadata{"tags":["utopian-io","development","steem","python","sndbox"],"image":["https://cdn.steemitimages.com/DQmV9ziht8AJYi3YhqR1gjKT96pCAe6FMiEAD7TC8nE5r13/Screen%20Shot%202018-08-07%20at%207.14.36%20PM.png"],"links":["https://github.com/emre/lightsteem","https://discord.gg/jPYDmCJ","https://github.com/emre/lightsteem/issues","https://developers.steem.io/apidefinitions/#apidefinitions-condenser-api"],"app":"steemit/0.1","format":"markdown"}
created2018-08-07 16:22:33
last_update2018-08-09 06:53:39
depth0
children19
last_payout2018-08-14 16:22:33
cashout_time1969-12-31 23:59:59
total_payout_value133.809 HBD
curator_payout_value36.907 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length4,091
author_reputation448,535,049,068,622
root_title"Introducing Lightsteem: A thin Python client for Steem"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id67,428,083
net_rshares117,610,440,233,601
author_curate_reward""
vote details (271)
@anthonyadavisii ·
$0.69
Ok, gave it spin.

Tried pulling number of posts for a user. It's really fast. Think it just might be my go-to for that sort of thing. Also, think I like the time format for active votes may work better for us.

Of course, I'll still need to leverage Beem for the transfers but I'll likely do a side by side performance comparison in the future.

Nice work, @emrebeyler.


Here's the link to the vid of my trying it out.


https://dlive.io/video/anthonyadavisii/27f69ea1-9aa8-11e8-9e1e-0242ac110003
πŸ‘  , , , , , ,
properties (23)
authoranthonyadavisii
permlinkre-emrebeyler-introducing-lightsteem-a-thin-python-client-for-steem-20180808t020931225z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["emrebeyler"],"links":["https://dlive.io/video/anthonyadavisii/27f69ea1-9aa8-11e8-9e1e-0242ac110003"],"app":"steemit/0.1"}
created2018-08-08 02:09:33
last_update2018-08-08 02:09:33
depth1
children0
last_payout2018-08-15 02:09:33
cashout_time1969-12-31 23:59:59
total_payout_value0.521 HBD
curator_payout_value0.171 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length498
author_reputation212,723,519,430,380
root_title"Introducing Lightsteem: A thin Python client for Steem"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id67,474,788
net_rshares481,968,308,733
author_curate_reward""
vote details (7)
@danielsaori ·
I guess it’s true that they say, β€œthe more the merrier” πŸ˜‰
I’m still behind testing out beem, but maybe I find some time to try out your light.

Well done putting it together!
properties (22)
authordanielsaori
permlinkre-emrebeyler-introducing-lightsteem-a-thin-python-client-for-steem-20180807t165614360z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-08-07 16:56:15
last_update2018-08-07 16:56:15
depth1
children2
last_payout2018-08-14 16:56:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length174
author_reputation19,949,800,673,455
root_title"Introducing Lightsteem: A thin Python client for Steem"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id67,431,103
net_rshares0
@emrebeyler · (edited)
$0.02
Transaction signing is not there yet, but it will come soon.
πŸ‘  
properties (23)
authoremrebeyler
permlinkre-danielsaori-re-emrebeyler-introducing-lightsteem-a-thin-python-client-for-steem-20180807t170234680z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-08-07 17:02:33
last_update2018-08-07 17:04:27
depth2
children1
last_payout2018-08-14 17:02:33
cashout_time1969-12-31 23:59:59
total_payout_value0.019 HBD
curator_payout_value0.005 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length60
author_reputation448,535,049,068,622
root_title"Introducing Lightsteem: A thin Python client for Steem"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id67,431,741
net_rshares17,423,572,605
author_curate_reward""
vote details (1)
@danielsaori ·
I'm sure it will be there before I get around trying it out...
properties (22)
authordanielsaori
permlinkre-emrebeyler-re-danielsaori-re-emrebeyler-introducing-lightsteem-a-thin-python-client-for-steem-20180807t194557655z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-08-07 19:45:57
last_update2018-08-07 19:45:57
depth3
children0
last_payout2018-08-14 19:45:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length62
author_reputation19,949,800,673,455
root_title"Introducing Lightsteem: A thin Python client for Steem"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id67,445,916
net_rshares0
@dhimmel ·
$0.37
Nice to see you going 3 only! I like using packages that take advantage of the latest features and aren't burdened by 2 support.
πŸ‘  
properties (23)
authordhimmel
permlinkre-emrebeyler-introducing-lightsteem-a-thin-python-client-for-steem-20180808t103736553z
categoryutopian-io
json_metadata{"community":"busy","app":"busy/2.5.4","format":"markdown","tags":["utopian-io"],"users":[],"links":[],"image":[]}
created2018-08-08 10:37:36
last_update2018-08-08 10:37:36
depth1
children0
last_payout2018-08-15 10:37:36
cashout_time1969-12-31 23:59:59
total_payout_value0.369 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length128
author_reputation39,788,295,023,882
root_title"Introducing Lightsteem: A thin Python client for Steem"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id67,511,797
net_rshares256,470,329,386
author_curate_reward""
vote details (1)
@helo ·
$0.56
* Great foundation for many future projects and development on STEEM.


Your contribution has been evaluated according to [Utopian policies and guidelines](https://join.utopian.io/guidelines), as well as a predefined set of questions pertaining to the category.

To view those questions and the relevant answers related to your post, [click here](https://review.utopian.io/result/3/2111122).

---- 
Need help? Write a ticket on https://support.utopian.io/. 
Chat with us on [Discord](https://discord.gg/uTyJkNm). 
[[utopian-moderator]](https://join.utopian.io/)
πŸ‘  , , ,
properties (23)
authorhelo
permlinkre-emrebeyler-introducing-lightsteem-a-thin-python-client-for-steem-20180807t171728734z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"links":["https://join.utopian.io/guidelines","https://review.utopian.io/result/3/2111122","https://support.utopian.io/","https://discord.gg/uTyJkNm","https://join.utopian.io/"],"app":"steemit/0.1"}
created2018-08-07 17:17:27
last_update2018-08-07 17:17:27
depth1
children1
last_payout2018-08-14 17:17:27
cashout_time1969-12-31 23:59:59
total_payout_value0.421 HBD
curator_payout_value0.138 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length561
author_reputation121,547,934,535,311
root_title"Introducing Lightsteem: A thin Python client for Steem"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id67,433,144
net_rshares386,545,600,736
author_curate_reward""
vote details (4)
@emrebeyler ·
Thanks for the fast review. :)
properties (22)
authoremrebeyler
permlinkre-helo-re-emrebeyler-introducing-lightsteem-a-thin-python-client-for-steem-20180807t172748886z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-08-07 17:27:48
last_update2018-08-07 17:27:48
depth2
children0
last_payout2018-08-14 17:27:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length30
author_reputation448,535,049,068,622
root_title"Introducing Lightsteem: A thin Python client for Steem"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id67,434,118
net_rshares0
@holger80 ·
$0.05
Good work, can't wait until all points in your roadmap are finished :).
πŸ‘  ,
properties (23)
authorholger80
permlinkre-emrebeyler-introducing-lightsteem-a-thin-python-client-for-steem-20180807t165304648z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-08-07 16:53:09
last_update2018-08-07 16:53:09
depth1
children1
last_payout2018-08-14 16:53:09
cashout_time1969-12-31 23:59:59
total_payout_value0.042 HBD
curator_payout_value0.012 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length71
author_reputation358,857,509,568,825
root_title"Introducing Lightsteem: A thin Python client for Steem"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id67,430,819
net_rshares37,738,144,755
author_curate_reward""
vote details (2)
@emrebeyler ·
Thanks! :)
properties (22)
authoremrebeyler
permlinkre-holger80-re-emrebeyler-introducing-lightsteem-a-thin-python-client-for-steem-20180807t170255702z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-08-07 17:02:54
last_update2018-08-07 17:02:54
depth2
children0
last_payout2018-08-14 17:02:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length10
author_reputation448,535,049,068,622
root_title"Introducing Lightsteem: A thin Python client for Steem"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id67,431,782
net_rshares0
@isnochys ·
$0.05
I am excited.
This is a huge gain for the python family here on steem.
πŸ‘  ,
properties (23)
authorisnochys
permlinkre-emrebeyler-introducing-lightsteem-a-thin-python-client-for-steem-20180807t163241777z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-08-07 16:32:45
last_update2018-08-07 16:32:45
depth1
children1
last_payout2018-08-14 16:32:45
cashout_time1969-12-31 23:59:59
total_payout_value0.042 HBD
curator_payout_value0.012 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length70
author_reputation47,908,707,540,347
root_title"Introducing Lightsteem: A thin Python client for Steem"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id67,429,004
net_rshares37,738,144,755
author_curate_reward""
vote details (2)
@emrebeyler ·
$2.61
Python family is the best. :)
πŸ‘  
properties (23)
authoremrebeyler
permlinkre-isnochys-re-emrebeyler-introducing-lightsteem-a-thin-python-client-for-steem-20180807t164102840z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-08-07 16:41:03
last_update2018-08-07 16:41:03
depth2
children0
last_payout2018-08-14 16:41:03
cashout_time1969-12-31 23:59:59
total_payout_value1.960 HBD
curator_payout_value0.652 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length29
author_reputation448,535,049,068,622
root_title"Introducing Lightsteem: A thin Python client for Steem"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id67,429,684
net_rshares1,799,299,433,537
author_curate_reward""
vote details (1)
@mys ·
How is it different from beem? It will grow to the same sizes in the future..
properties (22)
authormys
permlinkre-emrebeyler-introducing-lightsteem-a-thin-python-client-for-steem-20180807t201141027z
categoryutopian-io
json_metadata{"community":"busy","app":"busy/2.5.4","format":"markdown","tags":["utopian-io"],"users":[],"links":[],"image":[]}
created2018-08-07 20:11:42
last_update2018-08-07 20:11:42
depth1
children1
last_payout2018-08-14 20:11:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length77
author_reputation14,948,575,541,320
root_title"Introducing Lightsteem: A thin Python client for Steem"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id67,448,012
net_rshares0
@emrebeyler · (edited)
$0.52
It won't grow the same size with Beem, or steem-python.

- No planned support serializations. (get_transaction_hex call helps with that.)

- No support for pre-app base nodes. 

There will be helper modules for well-known objects in the chain and broadcasting support. That's all.
πŸ‘  
properties (23)
authoremrebeyler
permlinkre-mys-re-emrebeyler-introducing-lightsteem-a-thin-python-client-for-steem-20180807t201759738z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-08-07 20:18:00
last_update2018-08-07 20:19:18
depth2
children0
last_payout2018-08-14 20:18:00
cashout_time1969-12-31 23:59:59
total_payout_value0.390 HBD
curator_payout_value0.129 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length280
author_reputation448,535,049,068,622
root_title"Introducing Lightsteem: A thin Python client for Steem"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id67,448,538
net_rshares362,478,065,533
author_curate_reward""
vote details (1)
@roelandp ·
$0.04
great job!! thanks for making this client. I know from experience KISS the enduser (end-developer in this case) result indeed means a lot of work. :)

are you contemplating also adding the sign & broadcast libs or do u want to keep it for light and easy access to reads on the chain?
πŸ‘  , ,
properties (23)
authorroelandp
permlinkre-emrebeyler-introducing-lightsteem-a-thin-python-client-for-steem-20180810t171705616z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-08-10 17:17:06
last_update2018-08-10 17:17:06
depth1
children1
last_payout2018-08-17 17:17:06
cashout_time1969-12-31 23:59:59
total_payout_value0.032 HBD
curator_payout_value0.008 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length283
author_reputation662,936,810,561,284
root_title"Introducing Lightsteem: A thin Python client for Steem"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id67,777,222
net_rshares32,445,939,392
author_curate_reward""
vote details (3)
@emrebeyler · (edited)
$3.64
Thanks @roelandp :)

Transaction signing and broadcasting support is already merged to master. See the [pull request](https://github.com/emre/lightsteem/pull/13).

I have decoupled the signing stuff from steem-python. (without serializers) It's still light considering the amount of boilerplate code for signing. (only 2 extra dependencies.) 

I have not released the new version to the PyPI yet, but it will land this weekend and I will announce the new version.
πŸ‘  
properties (23)
authoremrebeyler
permlinkre-roelandp-re-emrebeyler-introducing-lightsteem-a-thin-python-client-for-steem-20180810t172616504z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["roelandp"],"links":["https://github.com/emre/lightsteem/pull/13"],"app":"steemit/0.1"}
created2018-08-10 17:26:18
last_update2018-08-10 17:28:03
depth2
children0
last_payout2018-08-17 17:26:18
cashout_time1969-12-31 23:59:59
total_payout_value2.733 HBD
curator_payout_value0.910 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length463
author_reputation448,535,049,068,622
root_title"Introducing Lightsteem: A thin Python client for Steem"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id67,778,094
net_rshares2,831,430,509,954
author_curate_reward""
vote details (1)
@seif ·
Good stuff bro, i' ll definitely give it a try
properties (22)
authorseif
permlinkre-emrebeyler-introducing-lightsteem-a-thin-python-client-for-steem-20180817t230647647z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-08-17 23:07:00
last_update2018-08-17 23:07:00
depth1
children0
last_payout2018-08-24 23:07:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length46
author_reputation177,264,629,282
root_title"Introducing Lightsteem: A thin Python client for Steem"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id68,544,862
net_rshares0
@steeminator3000 ·
FENA BİŞEY
properties (22)
authorsteeminator3000
permlinkre-emrebeyler-introducing-lightsteem-a-thin-python-client-for-steem-20180808t063020842z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-08-08 06:30:18
last_update2018-08-08 06:30:18
depth1
children1
last_payout2018-08-15 06:30:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length10
author_reputation330,895,832,016,756
root_title"Introducing Lightsteem: A thin Python client for Steem"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id67,491,189
net_rshares0
@emrebeyler ·
reis seni python dev yapalim.
properties (22)
authoremrebeyler
permlinkre-steeminator3000-re-emrebeyler-introducing-lightsteem-a-thin-python-client-for-steem-20180808t073645783z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-08-08 07:36:48
last_update2018-08-08 07:36:48
depth2
children0
last_payout2018-08-15 07:36:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length29
author_reputation448,535,049,068,622
root_title"Introducing Lightsteem: A thin Python client for Steem"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id67,497,011
net_rshares0
@utopian-io ·
Hey @emrebeyler
**Thanks for contributing on Utopian**.
We’re already looking forward to your next contribution!

**Want to chat? Join us on Discord https://discord.gg/h52nFrV.**

<a href='https://v2.steemconnect.com/sign/account-witness-vote?witness=utopian-io&approve=1'>Vote for Utopian Witness!</a>
properties (22)
authorutopian-io
permlinkre-introducing-lightsteem-a-thin-python-client-for-steem-20180812t080211z
categoryutopian-io
json_metadata"{"app": "beem/0.19.42"}"
created2018-08-12 08:02:12
last_update2018-08-12 08:02:12
depth1
children0
last_payout2018-08-19 08:02:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length302
author_reputation152,955,367,999,756
root_title"Introducing Lightsteem: A thin Python client for Steem"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id67,930,255
net_rshares0