create account

Python Libraries: Those Follower Non-Recipients, Such Disrespect, The Shame of it! by slobberchops

View this thread on: hive.blogpeakd.comecency.com
· @slobberchops ·
$109.66
Python Libraries: Those Follower Non-Recipients, Such Disrespect, The Shame of it!
![image.png](https://files.peakd.com/file/peakd-hive/slobberchops/23t76pLTgCYwtANAaDZ4pGw2RrLkYcrKfbVbm5QfyZhQ1wrz7tg1rDbpLN9MELqNsXa6n.png)

One of the things I miss about STEEM is busy.org and the ability the user had to check if an account you were interrogating was following you by hovering over it.

I remember several situations where it was a case of, '*Ohhh, that big account is following me*', and then others which were something along the lines of, '*That twat..., I have been voting for him for months and he doesn't even follow me*'. [Peakd.com](peakd.com) is missing this feature. 

Busy.org was a dapp on the STEEM blockchain which has now ceased to be and disappeared sometime around the STEEM/HIVE fork which occurred in March 2020.

<center>
![image.png](https://files.peakd.com/file/peakd-hive/slobberchops/Ep3k8kVq2W7WXU9XPM8WFfUFSTWNyMwPJ67sWmACsCb5bKs1yGhkodetTQgAa8LB6MW.png)
...***'busy.org, missed for other things as well as what I mention here'...***
[Source](https://steemit.com/busy/@francispalo/sponsorship-proposal-busy-org)
</center>

Another feature of busy.org was the breakdown of your account which was dependent on your voting power. When I was a little tiddler it motivated me to power up to try and attain the next level.

I made Minnow III but wanted Minnow II and then Minnow I. These badges have now sadly vanished and peakd.com supports neither the motivation tiers nor the ability to check those disrespectful bastards who you follow that don't reciprocate.

I figured it wouldn’t be too difficult to throw together a Python script to data gather the HIVE users you follow and then cross-reference them for reciprocation.

It took me a little longer than usual, and once again gained me a little more knowledge in this great scripting language which for me was relativity easy to pick up on (after some teething problems).

![RedLine.png](https://files.peakd.com/file/peakd-hive/slobberchops/246bHiHbRfQjcEkvuD5ZVRvw29C4Aas1iYDEwtReeDiSQvkVR31FKYpYdHUK9egHprYqW.png)

**ATTENTION:** *Before I go any further, this is all tongue-in-cheek, and you should never expect anyone to perform a follow-for-follow. Many of the accounts that don’t reciprocate your follow may be witnesses (they tend to follow other witnesses only), whales (if one follows you then count yourself blessed) or dapp-based accounts (eg.. @splinterlands, they don't follow anyone).*

![RedLine.png](https://files.peakd.com/file/peakd-hive/slobberchops/246bHiHbRfQjcEkvuD5ZVRvw29C4Aas1iYDEwtReeDiSQvkVR31FKYpYdHUK9egHprYqW.png)

I am also a choosy bastard in who I follow and keep my follow count low as I do perform manual curation daily. Follow too many and you tend to miss things.

I will show some parts of the script, but as this one is quite long will not post it all here. When I figure out how to use the GitHub UI (I have been told there is one), it will be added to my personal repository.

Getting the followers and followed is easy and involves a couple of methods provided once again with the Beem Account class.

	myaccount = "slobberchops"
	sAccount = Account(myaccount)
	sFollowers = sAccount.get_followers()
	sFollowing = sAccount.get_following()

Both methods return lists that can then be cross-referenced with this function (below) that adds those ever so terrible HIVERs to the sShamed list.

	# ---------------------------------------------------------
	# Function: getdisrespectfulhivers (sFollowing, sFollowers)
	# Get those disrespecful HIVER's!
	# Returns a List sShamed
	# ---------------------------------------------------------
	def getdisrespectfulhivers(sFollowers, sFollowing):

	    sShamed = []
	    for sDisrespecter in sFollowing:
	        if not sDisrespecter in str(sFollowers):
	            sShamed.append(sDisrespecter)

	    return sShamed
 
I had more problems displaying the data using 5 accounts per line than anything else. I'm sure there's a more elegant way of doing this besides using counters. That's my way of making things work, and it does!

	# ---------------------------------------------------------
	# Function: showresults(fishtype, acchivepower)
	# Shows result data based on comparative VP of the shamed
	# ones and if your worthyness of being followed by them
	# ---------------------------------------------------------
	def showresults(fishtype, acchivepower):

    print('=======================================================================')
    print(f'You.., {myaccount} are a {fishtype} with {acchivepower} to your name')
    print(f'These HIVE People dont follow you, but you follow them, the shame!')
    print('=======================================================================')

    linecounter = 1

    for sShamedone in sShamed:
        sAccount = Account(sShamedone)
        acchivepower = gettokenpower(sAccount)
        fishtype = fishlevel(acchivepower)

        if (linecounter < 5):
            print(f'@{sShamedone}',end=", ")
        else:
            print(f'@{sShamedone}')
        linecounter +=1
        if linecounter > 5:
            linecounter = 1

    print ()
    print('=======================================================================')
    print(f'{len(sShamed)} of the {iFollowers} users you are following are ignoring you, sheesh.. thats terrible')

fishtype and acchivepower are calculated in other routines and used sparingly in this script.

I follow less than 300 people but I know some follow thousands. I had to add the line spacing code so it would be readable and would not simply scroll up the screen when the code was running.


![image.png](https://files.peakd.com/file/peakd-hive/slobberchops/23tkjm3qhL4KFJfjfLJyES5uz6yR1vmLBVDkemqsiyf2AyY9BDtMWKUy8CmYg1xz1NNty.png)


It's been a while since I have seen something like this which shows data and I can encourage anyone to drop me a comment and ask who is showing them disrespect!

@abh12345 used to do this years ago, on STEEM but with fancy graphs and offers to other STEEM people to show their own data. I can't show you the graphs, but can respond in a comment and show you who is not reciprocating your generosity, kindness and support.

	myaccount = "slobberchops"
	sAccount = Account(myaccount)


**Please feel free to request I change this line, add your name, run the script and respond with your own data. This is all for a laugh, some fun and not to be taken seriously.**

Before I finish this, I will tag @jarvie and @asgarth requesting they add the facility to see if someone is following you (by hovering over an account) and to add those incentive accounts level tiers to [peakd.com](peakd.com)

![RedLine.png](https://files.peakd.com/file/peakd-hive/slobberchops/BqIuXs6C-RedLine.png)

<H6>
 - Earn currency while you play brewing virtual beer with [CryptoBrewMaster](https://www.cryptobrewmaster.io/game/invite?ref=9846a8af82df4dd0bc23192a135df232&code=AlphaBonus)
 - Earn currency while you play and become a global Rock Star with [Rising Star](https://www.risingstargame.com?referrer=slobberchops)
</H6>

<center>
![CurieCurator.jpg](https://files.peakd.com/file/peakd-hive/slobberchops/f5zec6UG-CurieCurator.jpg)
</center>
πŸ‘  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 860 others
πŸ‘Ž  , , , ,
properties (23)
authorslobberchops
permlinkpython-libraries-those-follower-non-recipients-such-disrespect-the-shame-of-it
categoryhive-163521
json_metadata{"app":"peakd/2022.10.3","format":"markdown","tags":["python","stemgeeks","leofinance","proofofbrain","palnet","creativecoin","neoxian","vyb","ctp"],"users":["francispalo","splinterlands","abh12345","jarvie","asgarth"],"image":["https://files.peakd.com/file/peakd-hive/slobberchops/23t76pLTgCYwtANAaDZ4pGw2RrLkYcrKfbVbm5QfyZhQ1wrz7tg1rDbpLN9MELqNsXa6n.png","https://files.peakd.com/file/peakd-hive/slobberchops/Ep3k8kVq2W7WXU9XPM8WFfUFSTWNyMwPJ67sWmACsCb5bKs1yGhkodetTQgAa8LB6MW.png","https://files.peakd.com/file/peakd-hive/slobberchops/246bHiHbRfQjcEkvuD5ZVRvw29C4Aas1iYDEwtReeDiSQvkVR31FKYpYdHUK9egHprYqW.png","https://files.peakd.com/file/peakd-hive/slobberchops/23tkjm3qhL4KFJfjfLJyES5uz6yR1vmLBVDkemqsiyf2AyY9BDtMWKUy8CmYg1xz1NNty.png","https://files.peakd.com/file/peakd-hive/slobberchops/BqIuXs6C-RedLine.png","https://files.peakd.com/file/peakd-hive/slobberchops/f5zec6UG-CurieCurator.jpg"]}
created2022-11-07 18:38:30
last_update2022-11-07 18:38:30
depth0
children43
last_payout2022-11-14 18:38:30
cashout_time1969-12-31 23:59:59
total_payout_value54.902 HBD
curator_payout_value54.759 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length7,131
author_reputation2,421,846,012,395,406
root_title"Python Libraries: Those Follower Non-Recipients, Such Disrespect, The Shame of it!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id118,146,192
net_rshares251,198,529,752,693
author_curate_reward""
vote details (929)
@blanchy ·
$0.05
Love your variables. haha. I remember Busy. I used it as my default because they gave you a few cent upvote for posting with them if you added their tag in the bad old days where I was delighted getting 10 cent for a post. . 
πŸ‘  
properties (23)
authorblanchy
permlinkre-slobberchops-rl13of
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2022.10.3"}
created2022-11-08 12:21:51
last_update2022-11-08 12:21:51
depth1
children2
last_payout2022-11-15 12:21:51
cashout_time1969-12-31 23:59:59
total_payout_value0.026 HBD
curator_payout_value0.027 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length225
author_reputation358,622,390,113,107
root_title"Python Libraries: Those Follower Non-Recipients, Such Disrespect, The Shame of it!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id118,165,284
net_rshares127,640,738,166
author_curate_reward""
vote details (1)
@slobberchops ·
I think everyone did. There was an option to donate 5% of your stash to them via a tick box. Did anyone ever tick it? πŸ˜€
πŸ‘  
properties (23)
authorslobberchops
permlinkre-blanchy-rl13re
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2022.10.3"}
created2022-11-08 12:23:39
last_update2022-11-08 12:23:39
depth2
children1
last_payout2022-11-15 12:23: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_length119
author_reputation2,421,846,012,395,406
root_title"Python Libraries: Those Follower Non-Recipients, Such Disrespect, The Shame of it!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id118,165,318
net_rshares20,680,178,731
author_curate_reward""
vote details (1)
@blanchy ·
Well they might be still around if we did 🀣
properties (22)
authorblanchy
permlinkre-slobberchops-rl16dq
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2022.10.3"}
created2022-11-08 13:20:15
last_update2022-11-08 13:20:15
depth3
children0
last_payout2022-11-15 13:20: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_length43
author_reputation358,622,390,113,107
root_title"Python Libraries: Those Follower Non-Recipients, Such Disrespect, The Shame of it!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id118,166,574
net_rshares0
@bozz ·
$0.09
HiveBuzz has level reward badges. You can see those in PeakD.  I think I am a dolphin now, not that it really means anything anymore.  It seems whatever level I newly attain it is considered the new minnow.  Didn't Busy calculate your upvote based on the staked power that your followers had?  I am guessing that is why they offered that ability.
πŸ‘  , , , , , , , , , , , , , , , , ,
properties (23)
authorbozz
permlinkre-slobberchops-rkzqwb
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2022.10.3"}
created2022-11-07 18:48:21
last_update2022-11-07 18:48:21
depth1
children2
last_payout2022-11-14 18:48:21
cashout_time1969-12-31 23:59:59
total_payout_value0.046 HBD
curator_payout_value0.046 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length346
author_reputation2,225,031,482,932,062
root_title"Python Libraries: Those Follower Non-Recipients, Such Disrespect, The Shame of it!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id118,146,494
net_rshares216,024,340,061
author_curate_reward""
vote details (18)
@slobberchops ·
$0.03
It does have fish sizes, but I miss the I, II and III breakdowns of the fish. It was attainable to move up sub-levels and busy encouraged it. It could easily be added to peakd. I need to get their attention.

>Didn't Busy calculate your upvote based on the staked power that your followers had? I am guessing that is why they offered that ability.

Yes, and for me that was super annoying as I was late on the scene. It was actually the cumulative VP of your followers.., why did they do that?
πŸ‘  , , , , , , , ,
πŸ‘Ž  ,
properties (23)
authorslobberchops
permlinkre-bozz-rkzrh7
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2022.10.3"}
created2022-11-07 19:00:45
last_update2022-11-07 19:00:45
depth2
children1
last_payout2022-11-14 19:00:45
cashout_time1969-12-31 23:59:59
total_payout_value0.014 HBD
curator_payout_value0.013 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length493
author_reputation2,421,846,012,395,406
root_title"Python Libraries: Those Follower Non-Recipients, Such Disrespect, The Shame of it!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id118,146,826
net_rshares67,370,994,452
author_curate_reward""
vote details (11)
@bozz ·
$0.04
Ah, okay.  That makes sense about the sub levels.  I am not sure why they did that.  Probably a way for a small group of people to make a larger amount of money.  Isn't that usually what it always is!
πŸ‘  , , , , , ,
properties (23)
authorbozz
permlinkre-slobberchops-rkzrsl
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2022.10.3"}
created2022-11-07 19:07:42
last_update2022-11-07 19:07:42
depth3
children0
last_payout2022-11-14 19:07:42
cashout_time1969-12-31 23:59:59
total_payout_value0.018 HBD
curator_payout_value0.018 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length200
author_reputation2,225,031,482,932,062
root_title"Python Libraries: Those Follower Non-Recipients, Such Disrespect, The Shame of it!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id118,146,984
net_rshares87,269,037,525
author_curate_reward""
vote details (7)
@championsacademy ·
Excelente post hermano, muy interesante aunque hay varias cosas que no logro entender bien del todo
properties (22)
authorchampionsacademy
permlinkre-slobberchops-rl0pka
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2022.10.3"}
created2022-11-08 07:17:00
last_update2022-11-08 07:17:00
depth1
children0
last_payout2022-11-15 07:17: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_length99
author_reputation95,824,773,768,923
root_title"Python Libraries: Those Follower Non-Recipients, Such Disrespect, The Shame of it!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id118,160,273
net_rshares0
@cryptoknight12 ·
$0.09
Hmmm do you follow me? I can't tell, you're right?! I've been following you for ages tho
πŸ‘  ,
properties (23)
authorcryptoknight12
permlinkrkzz2q
categoryhive-163521
json_metadata{"app":"hiveblog/0.1"}
created2022-11-07 21:44:57
last_update2022-11-07 21:44:57
depth1
children6
last_payout2022-11-14 21:44:57
cashout_time1969-12-31 23:59:59
total_payout_value0.044 HBD
curator_payout_value0.045 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length88
author_reputation77,839,196,919,506
root_title"Python Libraries: Those Follower Non-Recipients, Such Disrespect, The Shame of it!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id118,151,006
net_rshares209,704,062,559
author_curate_reward""
vote details (2)
@slobberchops ·
I don't believe I do, and as nobody else has asked.., I may as well run this for your account.

![image.png](https://files.peakd.com/file/peakd-hive/slobberchops/23tRvMuL8FaTepjjxWPTAvywNVEcy7N655nHfsuVXeDeiBCZVk2C9BLUigGTq2VHyAxzj.png)
πŸ‘  
properties (23)
authorslobberchops
permlinkre-cryptoknight12-rl00z3
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2022.10.3"}
created2022-11-07 22:25:51
last_update2022-11-07 22:25:51
depth2
children5
last_payout2022-11-14 22:25:51
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_length237
author_reputation2,421,846,012,395,406
root_title"Python Libraries: Those Follower Non-Recipients, Such Disrespect, The Shame of it!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id118,151,988
net_rshares0
author_curate_reward""
vote details (1)
@cryptoknight12 ·
I have some work to do. How can I earn your respected follow sir
πŸ‘  
properties (23)
authorcryptoknight12
permlinkre-slobberchops-rl031o
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2022.10.3"}
created2022-11-07 23:10:36
last_update2022-11-07 23:10:36
depth3
children0
last_payout2022-11-14 23:10: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_length64
author_reputation77,839,196,919,506
root_title"Python Libraries: Those Follower Non-Recipients, Such Disrespect, The Shame of it!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id118,152,767
net_rshares0
author_curate_reward""
vote details (1)
@cryptoknight12 ·
$0.09
Hi Sirrr... just checking in with you. Hope you are well my friend. I am trying to get back into Hive after taking a long time off. I would love some insight in how other hivers make it to the top and earn high reputation. That's one of my hive goals as well as making a network of friends I can leverage to explore business ventures together.
πŸ‘  
properties (23)
authorcryptoknight12
permlinkrl109u
categoryhive-163521
json_metadata{"app":"hiveblog/0.1"}
created2022-11-08 11:08:18
last_update2022-11-08 11:08:18
depth3
children3
last_payout2022-11-15 11:08:18
cashout_time1969-12-31 23:59:59
total_payout_value0.044 HBD
curator_payout_value0.045 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length343
author_reputation77,839,196,919,506
root_title"Python Libraries: Those Follower Non-Recipients, Such Disrespect, The Shame of it!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id118,163,859
net_rshares213,062,983,376
author_curate_reward""
vote details (1)
@karinxxl ·
$0.07
Hahaha you are even nosier than I thought chops! And nerdier (i mean this in a good way)..python is too much for this nurse to understand !

But I loved busy.org as well as it had some good features in there as well. Honestly i know peakd als has a lot of features but I can find a nice scroll modus. Ecency brings me this easier for some reason
πŸ‘  
properties (23)
authorkarinxxl
permlinkre-slobberchops-2022118t16749118z
categoryhive-163521
json_metadata{"tags":["python","stemgeeks","leofinance","proofofbrain","palnet","creativecoin","neoxian","vyb","ctp"],"app":"ecency/3.0.28-vision","format":"markdown+html"}
created2022-11-08 09:07:51
last_update2022-11-08 09:07:51
depth1
children2
last_payout2022-11-15 09:07:51
cashout_time1969-12-31 23:59:59
total_payout_value0.036 HBD
curator_payout_value0.036 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length345
author_reputation452,667,109,573,964
root_title"Python Libraries: Those Follower Non-Recipients, Such Disrespect, The Shame of it!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id118,161,895
net_rshares170,269,208,441
author_curate_reward""
vote details (1)
@slobberchops ·
$0.04
I look at many things, especially peeps who I vote for. They might be doing outrageous things such as promoting Blurt, you just never know!
πŸ‘  , ,
properties (23)
authorslobberchops
permlinkre-karinxxl-rl13n2
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2022.10.3"}
created2022-11-08 12:21:03
last_update2022-11-08 12:21:03
depth2
children1
last_payout2022-11-15 12:21:03
cashout_time1969-12-31 23:59:59
total_payout_value0.020 HBD
curator_payout_value0.019 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length139
author_reputation2,421,846,012,395,406
root_title"Python Libraries: Those Follower Non-Recipients, Such Disrespect, The Shame of it!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id118,165,276
net_rshares94,876,295,569
author_curate_reward""
vote details (3)
@karinxxl ·
Hahahahaha you never know! ;)
properties (22)
authorkarinxxl
permlinkre-slobberchops-2022118t20442965z
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"ecency/3.0.28-vision","format":"markdown+html"}
created2022-11-08 13:44:06
last_update2022-11-08 13:44:06
depth3
children0
last_payout2022-11-15 13:44:06
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_reputation452,667,109,573,964
root_title"Python Libraries: Those Follower Non-Recipients, Such Disrespect, The Shame of it!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id118,167,087
net_rshares0
@lindoro ·
Excellent πŸ‘πŸ‘πŸ‘, very nice post, congratulations and greetings πŸ™‹πŸ™‹
πŸ‘  
properties (23)
authorlindoro
permlinkre-slobberchops-2022117t19223637z
categoryhive-163521
json_metadata{"tags":["hive-163521","python","stemgeeks","leofinance","proofofbrain","palnet","creativecoin","neoxian","vyb","ctp"],"app":"ecency/3.0.34-mobile","format":"markdown+html"}
created2022-11-08 00:02:21
last_update2022-11-08 00:02:21
depth1
children0
last_payout2022-11-15 00:02: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_length63
author_reputation405,076,890,444,535
root_title"Python Libraries: Those Follower Non-Recipients, Such Disrespect, The Shame of it!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id118,153,684
net_rshares0
author_curate_reward""
vote details (1)
@meesterboom ·
$0.09
Ooo oooo ooo, can I see this? Who disrepec me?!! I have a low number of people  I follow so I don't miss things but it is still quite high and sometimes I miss things. Like this! I could do with trimming it. It is that old dillema though of when you don't have enough in your feed and you follow more then you have too much etc etc
πŸ‘  
properties (23)
authormeesterboom
permlinkre-slobberchops-rl1css
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2022.10.3"}
created2022-11-08 15:38:54
last_update2022-11-08 15:38:54
depth1
children12
last_payout2022-11-15 15:38:54
cashout_time1969-12-31 23:59:59
total_payout_value0.044 HBD
curator_payout_value0.044 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length332
author_reputation1,787,449,423,929,717
root_title"Python Libraries: Those Follower Non-Recipients, Such Disrespect, The Shame of it!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id118,170,089
net_rshares209,192,159,494
author_curate_reward""
vote details (1)
@slobberchops ·
$0.20
I was slightly disappointed more didn't ask me to run this. You have more respect than me!


![image.png](https://files.peakd.com/file/peakd-hive/slobberchops/23tRxWjyDmdTeCLXAkDpKGd9dyTN9zwBUorag3XxuufVD2MK4hq5ZH3tfzbGLtDagkc5W.png)
πŸ‘  
properties (23)
authorslobberchops
permlinkre-meesterboom-rl1fhg
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2022.10.3"}
created2022-11-08 16:36:54
last_update2022-11-08 16:36:54
depth2
children11
last_payout2022-11-15 16:36:54
cashout_time1969-12-31 23:59:59
total_payout_value0.100 HBD
curator_payout_value0.101 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length234
author_reputation2,421,846,012,395,406
root_title"Python Libraries: Those Follower Non-Recipients, Such Disrespect, The Shame of it!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id118,171,347
net_rshares472,083,333,675
author_curate_reward""
vote details (1)
@meesterboom ·
$0.18
Cheers for this! I was surprised too! At the lack of requests.

It's quite useful because I have spotted three or four that are getting punted. The rest are ok or people I have followed for the drama, lol!
πŸ‘  
properties (23)
authormeesterboom
permlinkre-slobberchops-rl1fom
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2022.10.3"}
created2022-11-08 16:41:12
last_update2022-11-08 16:41:12
depth3
children10
last_payout2022-11-15 16:41:12
cashout_time1969-12-31 23:59:59
total_payout_value0.088 HBD
curator_payout_value0.089 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length205
author_reputation1,787,449,423,929,717
root_title"Python Libraries: Those Follower Non-Recipients, Such Disrespect, The Shame of it!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id118,171,439
net_rshares418,588,758,419
author_curate_reward""
vote details (1)
@onw ·
$0.09
I'll have a chat with Owdgibber and tell him to mend his ways.

He's a bit of a stick in the mud though, so he might not listen.
πŸ‘  , ,
properties (23)
authoronw
permlinkre-slobberchops-rkzx3p
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2022.10.3"}
created2022-11-07 21:02:18
last_update2022-11-07 21:02:18
depth1
children1
last_payout2022-11-14 21:02:18
cashout_time1969-12-31 23:59:59
total_payout_value0.046 HBD
curator_payout_value0.046 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length128
author_reputation15,954,360,789,244
root_title"Python Libraries: Those Follower Non-Recipients, Such Disrespect, The Shame of it!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id118,150,027
net_rshares216,594,336,408
author_curate_reward""
vote details (3)
@slobberchops ·
The disrespect.., I have no words πŸ˜€
πŸ‘  ,
properties (23)
authorslobberchops
permlinkre-onw-rkzx7u
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2022.10.3"}
created2022-11-07 21:04:42
last_update2022-11-07 21:04:42
depth2
children0
last_payout2022-11-14 21:04: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_length35
author_reputation2,421,846,012,395,406
root_title"Python Libraries: Those Follower Non-Recipients, Such Disrespect, The Shame of it!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id118,150,089
net_rshares7,576,408,351
author_curate_reward""
vote details (2)
@pizzabot ·
<center>πŸ• PIZZA !


I gifted <strong>$PIZZA</strong> slices here:
@steevc<sub>(5/5)</sub> tipped @slobberchops (x1)


<sub>Join us in <a href="https://discord.gg/hivepizza">Discord</a>!</sub></center>
properties (22)
authorpizzabot
permlinkre-python-libraries-those-follower-non-recipients-such-disrespect-the-shame-of-it-20221107t190611z
categoryhive-163521
json_metadata"{"app": "beem/0.24.19"}"
created2022-11-07 19:06:12
last_update2022-11-07 19:06:12
depth1
children0
last_payout2022-11-14 19:06: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_length200
author_reputation7,433,382,051,921
root_title"Python Libraries: Those Follower Non-Recipients, Such Disrespect, The Shame of it!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id118,146,947
net_rshares0
@steevc ·
$0.08
Cool stuff. There's so much you can do with all the blockchain data. It may be possible to write a browser plugin that adds info to the peakd page, but I have no idea how to do that. I just remembered there was one that showed if someone was on the HW naughty list or other blacklists. Was that by Marky?

I have some other stuff I want to code up some time. Just have to fit it around actual work and other stuff.

!PIZZA
πŸ‘  , , , , , , , ,
πŸ‘Ž  ,
properties (23)
authorsteevc
permlinkre-slobberchops-rkzrps
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2022.10.3"}
created2022-11-07 19:05:54
last_update2022-11-07 19:05:54
depth1
children1
last_payout2022-11-14 19:05:54
cashout_time1969-12-31 23:59:59
total_payout_value0.040 HBD
curator_payout_value0.041 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length422
author_reputation1,367,003,772,811,122
root_title"Python Libraries: Those Follower Non-Recipients, Such Disrespect, The Shame of it!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id118,146,940
net_rshares191,253,763,166
author_curate_reward""
vote details (11)
@slobberchops ·
$0.06
> I just remembered there was one that showed if someone was on the HW naughty list or other blacklists. Was that by Marky?

I do remember that, possibly the STEEM days. That was years ago now but seems like yesterday!

>I have some other stuff I want to code up some time.

The idea of this floated into my head today. Its wasn't too hard to drum out the code. So long as I learn something new and build my library I feel its worth it.
πŸ‘  , , , , , ,
πŸ‘Ž  ,
properties (23)
authorslobberchops
permlinkre-steevc-rkzssa
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2022.10.3"}
created2022-11-07 19:29:00
last_update2022-11-07 19:29:00
depth2
children0
last_payout2022-11-14 19:29:00
cashout_time1969-12-31 23:59:59
total_payout_value0.032 HBD
curator_payout_value0.031 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length436
author_reputation2,421,846,012,395,406
root_title"Python Libraries: Those Follower Non-Recipients, Such Disrespect, The Shame of it!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id118,147,493
net_rshares147,927,457,372
author_curate_reward""
vote details (9)
@stemsocial ·
re-slobberchops-python-libraries-those-follower-non-recipients-such-disrespect-the-shame-of-it-20221107t200016997z
<div class='text-justify'> <div class='pull-left'>
 <img src='https://stem.openhive.network/images/stemsocialsupport7.png'> </div>

Thanks for your contribution to the <a href='/trending/hive-196387'>STEMsocial community</a>. Feel free to join us on <a href='https://discord.gg/9c7pKVD'>discord</a> to get to know the rest of us!

Please consider delegating to the @stemsocial account (85% of the curation rewards are returned).

You may also include @stemsocial as a beneficiary of the rewards of this post to get a stronger support.&nbsp;<br />&nbsp;<br />
</div>
πŸ‘  
properties (23)
authorstemsocial
permlinkre-slobberchops-python-libraries-those-follower-non-recipients-such-disrespect-the-shame-of-it-20221107t200016997z
categoryhive-163521
json_metadata{"app":"STEMsocial"}
created2022-11-07 20:00:15
last_update2022-11-07 20:00:15
depth1
children1
last_payout2022-11-14 20:00: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_length565
author_reputation22,902,701,722,118
root_title"Python Libraries: Those Follower Non-Recipients, Such Disrespect, The Shame of it!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id118,148,340
net_rshares0
author_curate_reward""
vote details (1)
@darth-azrael ·
Just an observation, but comments like these would be much more useful if they included what community guideline wasn't being followed. As it is, it comes across as insulting spam like "your post isn't good enough for our community but please delegate to us and give us hive" and I'm sure that is not the intent.
πŸ‘  
properties (23)
authordarth-azrael
permlinkre-stemsocial-2022117t15384880z
categoryhive-163521
json_metadata{"tags":["ecency"],"app":"ecency/3.0.28-vision","format":"markdown+html"}
created2022-11-07 20:38:03
last_update2022-11-07 20:38:03
depth2
children0
last_payout2022-11-14 20:38: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_length312
author_reputation212,675,280,031,876
root_title"Python Libraries: Those Follower Non-Recipients, Such Disrespect, The Shame of it!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id118,149,385
net_rshares0
author_curate_reward""
vote details (1)
@tengolotodo ·
$0.04
What a cool script, I should really get my arse in gear and do some playing with python. 
I know peakd does not have this feature, but ecency might.
πŸ‘  , , , , , , , , ,
properties (23)
authortengolotodo
permlinkre-slobberchops-2022117t185439353z
categoryhive-163521
json_metadata{"tags":["python","stemgeeks","leofinance","proofofbrain","palnet","creativecoin","neoxian","vyb","ctp"],"app":"ecency/3.0.28-vision","format":"markdown+html"}
created2022-11-07 18:54:39
last_update2022-11-07 18:54:39
depth1
children4
last_payout2022-11-14 18:54:39
cashout_time1969-12-31 23:59:59
total_payout_value0.018 HBD
curator_payout_value0.018 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length148
author_reputation767,533,904,416,299
root_title"Python Libraries: Those Follower Non-Recipients, Such Disrespect, The Shame of it!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id118,146,665
net_rshares87,218,341,096
author_curate_reward""
vote details (10)
@slobberchops ·
I use Ecency only when mobile, it takes some getting used to.
πŸ‘  , , , , ,
πŸ‘Ž  
properties (23)
authorslobberchops
permlinkre-tengolotodo-rkzrih
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2022.10.3"}
created2022-11-07 19:01:30
last_update2022-11-07 19:01:30
depth2
children3
last_payout2022-11-14 19:01:30
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_length61
author_reputation2,421,846,012,395,406
root_title"Python Libraries: Those Follower Non-Recipients, Such Disrespect, The Shame of it!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id118,146,845
net_rshares34,853,979,840
author_curate_reward""
vote details (7)
@tengolotodo · (edited)
$0.04
Ah I flip between peakd and ecency as quite often I get logged out of peakd and it is bit of a pain.
But yes if you are not used to something, keep to what works. Glad to see hiq.magazine on the top row of your list as I am responsible for the final translation into English now:)
πŸ‘  , , , , , ,
properties (23)
authortengolotodo
permlinkre-slobberchops-2022117t19634807z
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"ecency/3.0.28-vision","format":"markdown+html"}
created2022-11-07 19:06:36
last_update2022-11-07 19:06:51
depth3
children2
last_payout2022-11-14 19:06:36
cashout_time1969-12-31 23:59:59
total_payout_value0.018 HBD
curator_payout_value0.018 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length280
author_reputation767,533,904,416,299
root_title"Python Libraries: Those Follower Non-Recipients, Such Disrespect, The Shame of it!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id118,146,952
net_rshares87,233,430,636
author_curate_reward""
vote details (7)