create account

steem-python experiments #1 - Detect steemians who don't follow you back by emrebeyler

View this thread on: hive.blogpeakd.comecency.com
· @emrebeyler · (edited)
$8.59
steem-python experiments #1 - Detect steemians who don't follow you back
I have been experimenting with the [steem-python](https://github.com/steemit/steem-python) lately. Not following a steemian who does follow you is totally okay. Not all feelings mutual, I get it.

But for the sake of experiments with the python package (this will be also helpful for new devs to see how things work out on steem package.) let's find out these guys. :)

### The steem-python package
***

It's available on the PYPI. You can just install it by typing 

```bash
$ [sudo] pip install steem

```
or if you like 90s:

```bash
$ [sudo] easy_install steem
```

### Getting the steem instance
***
```python
from steem import Steem
s = Steem()
```

We're all set. Now you're capable of doing a lot of stuff with steem blockchain. By default, Steem class uses default nodes to gather information about the network. If you decide to something time-sensitive or if you need to do send a lot of requests to nodes, you have probably think of setting up your own. 

*RPC requests to remote nodes are slow. You can bypass it by using it on your own.*

### Getting the follower list
***

steem-python also includes some additional classes like Account. This class has some helper functions to get information about the accounts.

You can get an account instance like this:

```python
steem = Steem()
account = Account('emrebeyler', steem)
```

After this step; getting followers or following list is very easy.

```
followers = account.get_followers()
following = account.get_following()
```

This will output a list of string (usernames). Most of the work is done; let's see the diff.

```
print(set(followings) - set(followers))
```

This will output with a list of steemians who don't you follow you back. If you want to unfollow these guys, you can just use steem.unfollow() function.

Let's put these together into one script:

```
from steem import Steem
from steem.account import Account


def users_dont_follow_back(account):
    followers = set(account.get_followers())
    following = set(account.get_following())

    return following - followers


if __name__ == '__main__':
    steem = Steem(
        keys=['<posting_key>']
    )
    account = Account('emrebeyler', steem)
    users = users_dont_follow_back(account)
    print("%s users don't follow you back. Here is the list: \n %s" % (
        len(users), users)
    )

    for user in users:
        print("Unfollowing %s" % user)
        steem.unfollow(user, what=['blog'], account='emrebeyler')
                
```

Aaaand,  action!

https://i.hizliresim.com/3podor.png
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
properties (23)
authoremrebeyler
permlinksteem-python-experiments-1-detect-steemians-who-don-t-follow-you-back
categorypython
json_metadata{"tags":["python","programming","steem"],"image":["https://i.hizliresim.com/3podor.png"],"links":["https://github.com/steemit/steem-python"],"app":"steemit/0.1","format":"markdown"}
created2017-10-14 00:46:39
last_update2017-10-14 01:16:57
depth0
children21
last_payout2017-10-21 00:46:39
cashout_time1969-12-31 23:59:59
total_payout_value6.877 HBD
curator_payout_value1.717 HBD
pending_payout_value0.000 HBD
promoted0.500 HBD
body_length2,538
author_reputation448,535,049,068,622
root_title"steem-python experiments #1 - Detect steemians who don't follow you back"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id17,625,832
net_rshares3,578,400,687,008
author_curate_reward""
vote details (52)
@beerlover ·
<div class='pull-right'>https://cdn.steemitimages.com/DQmaHThyECGhEx8tSfHZbiMFRNYjJ35K92cDgiJjkzBUaJo/One%20sip%20of%20BEER%20for%20you.gif<p><sup><a href='https://steem-engine.com/?p=market&t=BEER'>View or trade </a> <code>BEER</code>.</sup></p></div><center><br><br> <p> Hey @emrebeyler, here is a little bit of  <code>BEER</code> for you. Enjoy it!</p> </center>
properties (22)
authorbeerlover
permlinkre-steem-python-experiments-1-detect-steemians-who-don-t-follow-you-back-20191014t050719z
categorypython
json_metadata"{"app": "beem/0.21.1"}"
created2019-10-14 05:07:21
last_update2019-10-14 05:07:21
depth1
children0
last_payout2019-10-21 05:07:21
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_length365
author_reputation25,782,738,404,647
root_title"steem-python experiments #1 - Detect steemians who don't follow you back"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id91,533,128
net_rshares0
@bellyrub ·
<p>This wonderful post has received a bellyrub 1.59 % upvote from @bellyrub thanks to this cool cat: @emrebeyler.
My pops @zeartul is one of your top steemit witness, if you like my bellyrubs please go vote for him, if you love what he is doing vote for this comment as well.</p>
properties (22)
authorbellyrub
permlinkre-emrebeyler-steem-python-experiments-1-detect-steemians-who-don-t-follow-you-back-20171014t014849149z
categorypython
json_metadata{"tags":["python"],"app":"drotto/0.0.2"}
created2017-10-14 01:49:03
last_update2017-10-14 01:49:03
depth1
children0
last_payout2017-10-21 01:49:03
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_length280
author_reputation7,904,765,975,109
root_title"steem-python experiments #1 - Detect steemians who don't follow you back"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id17,628,809
net_rshares0
@boomerang ·
This post has received a 1.98 % upvote from @boomerang thanks to: @emrebeyler<br><br>@boomerang distributes 100% of the SBD and up to 80% of the Curation Rewards to STEEM POWER Delegators. If you want to bid for votes or want to delegate SP please read <a href="https://steemit.com/steemit/@boomerang/boomerang-a-new-steemit-bid-bot-for-all-steemians-whitepaper">the @boomerang whitepaper</a>.
properties (22)
authorboomerang
permlinkre-steem-python-experiments-1-detect-steemians-who-don-t-follow-you-back-20171014t025046
categorypython
json_metadata"{"app": "pysteem/0.5.2"}"
created2017-10-14 02:50:48
last_update2017-10-14 02:50:48
depth1
children0
last_payout2017-10-21 02:50: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_length393
author_reputation1,273,205,827,891
root_title"steem-python experiments #1 - Detect steemians who don't follow you back"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id17,631,569
net_rshares0
@booster ·
<p>This post has received a 4.44 % upvote from @booster thanks to: @emrebeyler.</p>
properties (22)
authorbooster
permlinkre-emrebeyler-steem-python-experiments-1-detect-steemians-who-don-t-follow-you-back-20171014t015944642z
categorypython
json_metadata{"tags":["python"],"app":"drotto/0.0.2c"}
created2017-10-14 01:59:57
last_update2017-10-14 01:59:57
depth1
children0
last_payout2017-10-21 01:59: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_length84
author_reputation68,767,115,776,562
root_title"steem-python experiments #1 - Detect steemians who don't follow you back"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id17,629,297
net_rshares0
@drotto ·
<p>This post has received a 1.56 % upvote from @drotto thanks to: @banjo.</p>
properties (22)
authordrotto
permlinkre-emrebeyler-steem-python-experiments-1-detect-steemians-who-don-t-follow-you-back-20171014t011223896z
categorypython
json_metadata{"tags":["python"],"app":"drotto/0.0.2c"}
created2017-10-14 01:12:39
last_update2017-10-14 01:12:39
depth1
children0
last_payout2017-10-21 01:12:39
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_length78
author_reputation419,916,705,599
root_title"steem-python experiments #1 - Detect steemians who don't follow you back"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id17,627,031
net_rshares0
@followforupvotes ·
As a follower of @followforupvotes this post has been randomly selected and upvoted! Enjoy your upvote and have a great day!
properties (22)
authorfollowforupvotes
permlinkre-emrebeyler-steem-python-experiments-1-detect-steemians-who-don-t-follow-you-back-20171014t004728204z
categorypython
json_metadata{"app":"my_app"}
created2017-10-14 01:06:39
last_update2017-10-14 01:06:39
depth1
children0
last_payout2017-10-21 01:06:39
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_length124
author_reputation24,665,782,446,239
root_title"steem-python experiments #1 - Detect steemians who don't follow you back"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id17,626,760
net_rshares0
@hdmed ·
Thanks for this nice post @emrebeyler I'm looking forward to Your next post
👍  
properties (23)
authorhdmed
permlinkre-emrebeyler-steem-python-experiments-1-detect-steemians-who-don-t-follow-you-back-20171014t005615465z
categorypython
json_metadata""
created2017-10-14 00:56:15
last_update2017-10-14 00:56:15
depth1
children0
last_payout2017-10-21 00: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_length75
author_reputation66,254,816,822,123
root_title"steem-python experiments #1 - Detect steemians who don't follow you back"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id17,626,286
net_rshares0
author_curate_reward""
vote details (1)
@isnochys ·
If I could turn back !BEER
👍  
properties (23)
authorisnochys
permlinkre-steem-python-experiments-1-detect-steemians-who-don-t-follow-you-back-20191014t050703z
categorypython
json_metadata"{"app": "beem/0.20.23"}"
created2019-10-14 05:07:09
last_update2019-10-14 05:07:09
depth1
children0
last_payout2019-10-21 05:07:09
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_length26
author_reputation47,917,144,909,021
root_title"steem-python experiments #1 - Detect steemians who don't follow you back"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id91,533,126
net_rshares0
author_curate_reward""
vote details (1)
@minnowbooster ·
@minnowbooster upvoted this post!
![Calling @originalworks :)](http://minnowshares.net/upgoat/?user=emrebeyler&receiver=emrebeyler&sender=kamikaze&value=1.04&hash=961)
*<sub>img credz: pixabay.com</sub>*
*Nice, you got a 71.0% @kamikaze upgoat, thanks to @emrebeyler*
*Want a boost? [Minnowbooster's](https://steemit.com/minnowbooster/@minnowbooster/6rt2mn-introducing-minnowbooster-beta) got your back!*
    
👍  
properties (23)
authorminnowbooster
permlinkcomment-1508148103348
categorypython
json_metadata""
created2017-10-16 10:01:42
last_update2017-10-16 10:01:42
depth1
children0
last_payout2017-10-23 10:01: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_length376
author_reputation230,546,282,483,083
root_title"steem-python experiments #1 - Detect steemians who don't follow you back"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id17,814,821
net_rshares0
author_curate_reward""
vote details (1)
@minnowpond ·
@reported has voted on behalf of @minnowpond. If you would like to recieve upvotes from minnowponds team on all your posts, simply FOLLOW @minnowpond. 

            To receive an upvote send 0.25 SBD to @minnowpond with your posts url as the memo
            To receive an reSteem send 0.75 SBD to @minnowpond with your posts url as the memo
            To receive an upvote and a reSteem send 1.00SBD to @minnowpond with your posts url as the memo
properties (22)
authorminnowpond
permlinkre-steem-python-experiments-1-detect-steemians-who-don-t-follow-you-back-20171014t010436
categorypython
json_metadata"{"app": "pysteem/0.5.4"}"
created2017-10-14 01:04:36
last_update2017-10-14 01:04:36
depth1
children0
last_payout2017-10-21 01:04:36
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_length448
author_reputation13,239,048,956,578
root_title"steem-python experiments #1 - Detect steemians who don't follow you back"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id17,626,659
net_rshares0
@minnowpond1 ·
@minnowpond1 has voted on behalf of @minnowpond. If you would like to recieve upvotes from minnowponds team on all your posts, simply FOLLOW @minnowpond. 

            To receive an upvote send 0.25 SBD to @minnowpond with your posts url as the memo
            To receive an reSteem send 0.75 SBD to @minnowpond with your posts url as the memo
            To receive an upvote and a reSteem send 1.00SBD to @minnowpond with your posts url as the memo
properties (22)
authorminnowpond1
permlinkre-steem-python-experiments-1-detect-steemians-who-don-t-follow-you-back-20171014t010422
categorypython
json_metadata"{"app": "pysteem/0.5.4"}"
created2017-10-14 01:04:24
last_update2017-10-14 01:04:24
depth1
children0
last_payout2017-10-21 01:04:24
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_length451
author_reputation383,828,786,455
root_title"steem-python experiments #1 - Detect steemians who don't follow you back"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id17,626,652
net_rshares0
@morwhale ·
This post received a 54% upvote from @morwhale team thanks to @emrebeyler! For more information, [click here](https://steemit.com/@morwhale)! , [TeamMorocco](https://steemit.com/@teammorocco)!  . this is @originalworks . steem  @steemprice BTC 
👍  
properties (23)
authormorwhale
permlinkre-emrebeyler-steem-python-experiments-1-detect-steemians-who-don-t-follow-you-back-20171014t005615465z
categorypython
json_metadata""
created2017-10-14 00:56:15
last_update2017-10-14 00:56:15
depth1
children3
last_payout2017-10-21 00: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_length244
author_reputation767,197,612,874
root_title"steem-python experiments #1 - Detect steemians who don't follow you back"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id17,626,290
net_rshares198,548,950
author_curate_reward""
vote details (1)
@originalworks ·
originalworks
The @OriginalWorks bot has determined this post by @emrebeyler to be original material and upvoted it! 
<center>![ezgif.com-resize.gif](https://steemitimages.com/DQmaBi37A5oTnQ9NBLH8YU4jpvhhmFauyvgg3YRrEJwskM9/ezgif.com-resize.gif)</center> 

To call @OriginalWorks, simply reply to any post with @originalworks or !originalworks in your message! 
### To enter this post into the daily RESTEEM contest, upvote this comment! The user with the most upvotes on their @OriginalWorks comment will win!<h3>
For more information, [Click Here!](https://steemit.com/writing/@originalworks/originalworks-bot-explanation-and-info) || [Click here to participate in the @OriginalWorks sponsored writing contest(125 SBD in prizes)!!!](https://steemit.com/cryptocurrency/@originalworks/125-sbd-sponsored-writing-contest-miniapps)
Special thanks to @reggaemuffin for being a supporter! Vote him as a witness to help make Steemit a better place! 
👍  
properties (23)
authororiginalworks
permlinkre-re-emrebeyler-steem-python-experiments-1-detect-steemians-who-don-t-follow-you-back-20171014t005615465z-20171014t005732
categorypython
json_metadata"{"app": "pysteem/0.5.4"}"
created2017-10-14 00:57:33
last_update2017-10-14 00:57:33
depth2
children0
last_payout2017-10-21 00:57:33
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_length929
author_reputation79,292,026,602,057
root_title"steem-python experiments #1 - Detect steemians who don't follow you back"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id17,626,353
net_rshares367,242,793
author_curate_reward""
vote details (1)
@red-rose ·
GREAT I WILL JOIN YOU SOON, IF I DEPOSIT 0.05 HOW MUCH CAN I GET ?
👍  
properties (23)
authorred-rose
permlinkre-morwhale-re-emrebeyler-steem-python-experiments-1-detect-steemians-who-don-t-follow-you-back-20171014t020544427z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-10-14 02:05:45
last_update2017-10-14 02:05:45
depth2
children0
last_payout2017-10-21 02:05:45
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_length66
author_reputation531,394,715,242
root_title"steem-python experiments #1 - Detect steemians who don't follow you back"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id17,629,519
net_rshares2,319,272,910
author_curate_reward""
vote details (1)
@steemprice ·
BTC PRICE
<code>$5608.89 USD/BTC</code><br><code>Volume: 151301.69 BTC ($848634931.22 USD)</code><br><code>Last Updated Sat Oct 14 00:53:40 2017</code>
👍  
properties (23)
authorsteemprice
permlinkre-re-emrebeyler-steem-python-experiments-1-detect-steemians-who-don-t-follow-you-back-20171014t005615465z-20171014t005726
categorypython
json_metadata"{"app": "pysteem/0.5.4"}"
created2017-10-14 00:57:27
last_update2017-10-14 00:57:27
depth2
children0
last_payout2017-10-21 00:57:27
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_length141
author_reputation260,361,248,612
root_title"steem-python experiments #1 - Detect steemians who don't follow you back"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id17,626,346
net_rshares367,242,793
author_curate_reward""
vote details (1)
@murattatar ·
Yey! Üstad eline sağlık! 
Ne tatlı bir modülmüş böyle ;)
👍  ,
properties (23)
authormurattatar
permlinkre-emrebeyler-steem-python-experiments-1-detect-steemians-who-don-t-follow-you-back-20171014t022801641z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-10-14 02:28:00
last_update2017-10-14 02:28:00
depth1
children1
last_payout2017-10-21 02:28: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_length56
author_reputation48,825,843,967,967
root_title"steem-python experiments #1 - Detect steemians who don't follow you back"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id17,630,451
net_rshares6,058,406,930
author_curate_reward""
vote details (2)
@emrebeyler ·
cok guzel bir interface'e sahip. Iyi dusunmusler,
👍  
properties (23)
authoremrebeyler
permlinkre-murattatar-re-emrebeyler-steem-python-experiments-1-detect-steemians-who-don-t-follow-you-back-20171014t121437777z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-10-14 12:14:36
last_update2017-10-14 12:14:36
depth2
children0
last_payout2017-10-21 12:14:36
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_length49
author_reputation448,535,049,068,622
root_title"steem-python experiments #1 - Detect steemians who don't follow you back"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id17,662,384
net_rshares703,960,540
author_curate_reward""
vote details (1)
@qurator ·
<center>Qurator</center> | <center>Your Quality Content Curator</center>
-|-|
![](https://steemitimages.com/DQmNzJZFNXnViq9Ebmccf3rLi7kiYrcHFnFqeKK7QnWYtRs/COMMENT.png) | This post has been upvoted and given the stamp of authenticity by @qurator. To join the quality content creators and receive daily upvotes click [here](https://steemit.com/qurator/@qurator/qurator-update-cheaper-tier-access-and-increased-registration-fee) for more info.
properties (22)
authorqurator
permlinkre-emrebeyler-steem-python-experiments-1-detect-steemians-who-don-t-follow-you-back-20171014t004731697z
categorypython
json_metadata{"app":"my_app"}
created2017-10-14 01:07:39
last_update2017-10-14 01:07:39
depth1
children0
last_payout2017-10-21 01:07:39
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_length441
author_reputation1,641,586,098,580,259
root_title"steem-python experiments #1 - Detect steemians who don't follow you back"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id17,626,801
net_rshares0
@randowhale0 ·
This post received a 6.19% upvote from @randowhale thanks to @emrebeyler! To learn more, check out [@randowhale 101 - Everything You Need to Know](https://steemit.com/steemit/@randowhale/randowhale-101-everything-you-need-to-know-about-randowhale)!
properties (22)
authorrandowhale0
permlinkre-steem-python-experiments-1-detect-steemians-who-don-t-follow-you-back-20171015t165054
categorypython
json_metadata"{"order": "c7e40994c8a41c645ed8760b0d594de8daa8a5ab", "reward": 1, "format": "markdown", "app": "randowhale/0.2"}"
created2017-10-15 16:50:54
last_update2017-10-15 16:50:54
depth1
children0
last_payout2017-10-22 16:50: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_length248
author_reputation155,356,679,113
root_title"steem-python experiments #1 - Detect steemians who don't follow you back"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id17,762,829
net_rshares0
@steemdiffuser ·
<p>This post has received a 25.00 % upvote from @steemdiffuser thanks to: @emrebeyler. Steem on my friend!</p>

<p><a href="https://steemit.com/introduceyourself/@steemdiffuser/chello-steemit-friends-here-to-upvote-blaze-a-trail-and-crack-some-bot-like-jokes">Get Upvotes</a>, <a href="goo.gl/forms/xpEw3ydYIm4xyjZF3">Join Our Trail</a>, or <a href="https://goo.gl/forms/fdmsKYYUpFMY4OUw1">Delegate Some SP</a></p>
properties (22)
authorsteemdiffuser
permlinkre-emrebeyler-steem-python-experiments-1-detect-steemians-who-don-t-follow-you-back-20171014t025223366z
categorypython
json_metadata{"tags":["python"],"app":"drotto/0.0.2c"}
created2017-10-14 02:52:36
last_update2017-10-14 02:52:36
depth1
children0
last_payout2017-10-21 02:52:36
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_length415
author_reputation42,883,860,240
root_title"steem-python experiments #1 - Detect steemians who don't follow you back"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id17,631,657
net_rshares0
@upgoater ·
<p>This post has received a 100.00 % upvote from @upgoater thanks to: @emrebeyler.</p>
properties (22)
authorupgoater
permlinkre-emrebeyler-steem-python-experiments-1-detect-steemians-who-don-t-follow-you-back-20171014t015251088z
categorypython
json_metadata{"tags":["python"],"app":"drotto/0.0.2c"}
created2017-10-14 01:53:00
last_update2017-10-14 01:53:00
depth1
children0
last_payout2017-10-21 01:53: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_length87
author_reputation178,778,574,744
root_title"steem-python experiments #1 - Detect steemians who don't follow you back"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id17,628,997
net_rshares0