create account

Python Libraries: Sending an Argument via the Command Line by slobberchops

View this thread on: hive.blogpeakd.comecency.com
· @slobberchops ·
$156.27
Python Libraries: Sending an Argument via the Command Line
The Random Voter script is still being developed and now sends random votes to over 200 different accounts. If you want to be considered as an addition and you don't write a big pile of dogshit then comment below. I am always looking for good deserving authors.

My surplus accounts, @chops.support, @dismayedworld, @bingbabe, and @wanker all send 100% votes, and if my main account is flush with voting power, adds a further 5% vote to the mix.

![Caption.JPG](https://files.peakd.com/file/peakd-hive/slobberchops/23tHb6kphj6a5DR1Fc4fApsJjvDK3ruowuYrnppec6JGEhMxBLiFxhzzNBrKiDFHZsfGi.JPG)

My memory occasionally drifts back to March 2018, STEEM, and the random vote of @hr1 who I had the pleasure of shaking hands during STEEMFest 3 in Krakow. @hr1 voted people, mostly new people at random, had a massive pile of STEEM and was a kind of saviour to me.

![IMG_4565.JPG](https://files.peakd.com/file/peakd-hive/slobberchops/23xosPpVb1UmSvCRGjYKF3zodnLnopzVtG4BxBQoGnfg6DLpy1GsDUBEMnqRcAYpxPpYQ.JPG)
<center>***...'@hr1 does exist... accompanied with a smiling @detlev, I thought him a myth until I witnessed this sight'...***</center>

How cool would it be to be '*another @hr1*' and to dish out votes to other struggling HIVE authors who consistently deliver?

I never for one minute thought I would ever be in the position to do so, and @hr1’s algorithm was for new posts, whereas mine is whenever I run the script.

<center>
![image.png](https://files.peakd.com/file/peakd-hive/slobberchops/23t7FAoFNPbYtj4vK7VWgb6CK4vzrqe5EAMTFsg6wzmGkhcA6WpBy2aFK9VSNXNTgMGPB.png)
***...'@the hr1 account now sits alone with little HP. How things change'...***</center>

What I wanted was the ability to change the @slobberchops vote weight without changing the core script code.

I am familiar with other scripting languages and knew this would be in the form of an argument on the command line.

The way that I learn new functions, methods, or routines is to get examples from the internet. Figure out how they work, and then write them into your code.

Once you have done it, then you have a working example that can then be re-used.

I tried [here]( https://www.tutorialspoint.com/python/python_command_line_arguments.htm) first and the code kept giving me an error.

![no brackets example.JPG](https://files.peakd.com/file/peakd-hive/slobberchops/EoCpMjpbnjYGTA45DfVswZMRPg7Q13KQEuWGYLHTwYuVf2b4pDqxdg9iYMCg9m2F8Xq.JPG)

[Source]( https://www.tutorialspoint.com/python/python_command_line_arguments.htm)

It appears some variants of Python don't require brackets around print statements, whereas Anaconda does. You learn something every day. 

***print ('Number of arguments:', len(sys.argv), 'arguments.')***

Adding the brackets so it would work I was initially confused about the type of property sys.argv was. The len method generally tells us the length and a little homework tells me it’s an array.


![egsoutput.jpg](https://files.peakd.com/file/peakd-hive/slobberchops/244xs6rn1XX5aPTeSKS1vAdvZGA16YTC3gfC6ZpFkZumpEjmMS29HrMLgkPWMN8jofSRa.jpg)


The output from this script now made sense and so I was looking to add a second argument which would be a variable integer containing the vote weight.

Another search brought me the answer, although many other more over-complex solutions were presented to me.

![one way.JPG](https://files.peakd.com/file/peakd-hive/slobberchops/23t8D1dmsLewpFWERf6PHJCNixJvemiih8FPmkh5Prm1WqicjnjRg96Vd3u3MmwDcSRSG.JPG)
[Source](https://stackoverflow.com/questions/2194163/python-empty-argument)

I like to keep it simple otherwise when looking back at old code I will forget what I did.

It made sense; this line of code if true meant that no parameter was sent on the command line and that the @slobberchops account should vote at a 5% weight.

***if len(sys.argv) == 1:***

All I needed to do was incorporate this into my script and I could determine the vote weight, and add a little more if I had some to spare.


![functioncall_getweights.JPG](https://files.peakd.com/file/peakd-hive/slobberchops/23yxEJuK2actUZysVftVqNs9dxisqciWehfxQr9VfDKaqne1KvoKqfLWP3AiQNkK9NwBJ.JPG)


This line of code calls the function, sends the account name from a list, and expects two return values.

Unlike some other scripting languages, Python allows the programmer to return more than a single value; most useful!

The function has now been modified to check, in hardcoding terms for the @slobberchops account, intercept anything other than the first argument and utilize it (if it exists).


![GetWeights_Func.JPG](https://files.peakd.com/file/peakd-hive/slobberchops/23tHbkjTM6tY9udEhe2FGQsjo9xa4L3eQ6ekjH4cjo8pdqnPD5Loz6Xh22YE7Mhcb4wUy.JPG)


To make this a little clearer if the @slobberchops is above a voting power of 87% then it will vote at 5% unless an alternate numeric parameter was sent via the command line

This would be equal to the property found in the sys.argv[1]. Like many other languages, the first element in Python arrays starts at 0.

![10% votes.JPG](https://files.peakd.com/file/peakd-hive/slobberchops/23sxnMbKKzEpodtLzhXfRTZR58SiCjF5g7zNmzVHrr48fdTUQKUATYSFikAndENvAHzZo.JPG)
<center>***...'typically I would use an optional argument of '10' to send 10% weight votes instead of 5% during times when I have excess VP'...***</center>

The other voting accounts will cease to vote below 75% VP and will always vote at a weight of 100%.

![10weight.jpg](https://files.peakd.com/file/peakd-hive/slobberchops/48su7Nsk8asoq8JRWevTEpP71nrJmRvbCREAminZuBzntyyHY5krXotq77MsP8KvYw.jpg)

I hope this is a little clearer by example. I learned to code without courses, books, exams. Over the years I have found you either have the head for it or you don't.

If this seems complex then you may be the type who would never understand it. I have tried umpteen times to teach other '*techies*' the basics of VBScript and failed.

![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 488 others
πŸ‘Ž  , ,
properties (23)
authorslobberchops
permlinkpython-libraries-sending-an-argument-via-the-command-line
categoryhive-163521
json_metadata{"app":"peakd/2022.03.9","format":"markdown","tags":["python","stemgeeks","leofinance","proofofbrain","palnet","creativecoin","neoxian","vyb","ctp"],"users":["chops.support","dismayedworld","bingbabe","wanker","hr1","detlev","the","slobberchops"],"image":["https://files.peakd.com/file/peakd-hive/slobberchops/23tHb6kphj6a5DR1Fc4fApsJjvDK3ruowuYrnppec6JGEhMxBLiFxhzzNBrKiDFHZsfGi.JPG","https://files.peakd.com/file/peakd-hive/slobberchops/23xosPpVb1UmSvCRGjYKF3zodnLnopzVtG4BxBQoGnfg6DLpy1GsDUBEMnqRcAYpxPpYQ.JPG","https://files.peakd.com/file/peakd-hive/slobberchops/23t7FAoFNPbYtj4vK7VWgb6CK4vzrqe5EAMTFsg6wzmGkhcA6WpBy2aFK9VSNXNTgMGPB.png","https://files.peakd.com/file/peakd-hive/slobberchops/EoCpMjpbnjYGTA45DfVswZMRPg7Q13KQEuWGYLHTwYuVf2b4pDqxdg9iYMCg9m2F8Xq.JPG","https://files.peakd.com/file/peakd-hive/slobberchops/244xs6rn1XX5aPTeSKS1vAdvZGA16YTC3gfC6ZpFkZumpEjmMS29HrMLgkPWMN8jofSRa.jpg","https://files.peakd.com/file/peakd-hive/slobberchops/23t8D1dmsLewpFWERf6PHJCNixJvemiih8FPmkh5Prm1WqicjnjRg96Vd3u3MmwDcSRSG.JPG","https://files.peakd.com/file/peakd-hive/slobberchops/23yxEJuK2actUZysVftVqNs9dxisqciWehfxQr9VfDKaqne1KvoKqfLWP3AiQNkK9NwBJ.JPG","https://files.peakd.com/file/peakd-hive/slobberchops/23tHbkjTM6tY9udEhe2FGQsjo9xa4L3eQ6ekjH4cjo8pdqnPD5Loz6Xh22YE7Mhcb4wUy.JPG","https://files.peakd.com/file/peakd-hive/slobberchops/23sxnMbKKzEpodtLzhXfRTZR58SiCjF5g7zNmzVHrr48fdTUQKUATYSFikAndENvAHzZo.JPG","https://files.peakd.com/file/peakd-hive/slobberchops/48su7Nsk8asoq8JRWevTEpP71nrJmRvbCREAminZuBzntyyHY5krXotq77MsP8KvYw.jpg","https://files.peakd.com/file/peakd-hive/slobberchops/BqIuXs6C-RedLine.png","https://files.peakd.com/file/peakd-hive/slobberchops/f5zec6UG-CurieCurator.jpg"]}
created2022-03-30 20:08:33
last_update2022-03-30 20:08:33
depth0
children56
last_payout2022-04-06 20:08:33
cashout_time1969-12-31 23:59:59
total_payout_value78.280 HBD
curator_payout_value77.991 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length6,393
author_reputation2,436,339,775,230,334
root_title"Python Libraries: Sending an Argument via the Command Line"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id111,835,000
net_rshares111,229,863,926,821
author_curate_reward""
vote details (555)
@ambiguity ·
$0.58
I am not good at coding, I thought about trying to write something like this but did not have enough knowledge. Great Job! 

I really hope you will think about putting me on the list.
πŸ‘  , , , , ,
properties (23)
authorambiguity
permlinkre-slobberchops-r9l51v
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2022.03.9"}
created2022-03-31 01:20:54
last_update2022-03-31 01:20:54
depth1
children0
last_payout2022-04-07 01:20:54
cashout_time1969-12-31 23:59:59
total_payout_value0.292 HBD
curator_payout_value0.290 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length183
author_reputation36,549,167,515,225
root_title"Python Libraries: Sending an Argument via the Command Line"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id111,841,450
net_rshares418,980,464,809
author_curate_reward""
vote details (6)
@aronnok ·
$0.10
Learning python is my dream. Though I am now trying to get c++ for some reason. I have a plan to learn about python.
πŸ‘  , , , ,
properties (23)
authoraronnok
permlinkr9l4m7
categoryhive-163521
json_metadata{"app":"hiveblog/0.1"}
created2022-03-31 01:11:00
last_update2022-03-31 01:11:00
depth1
children2
last_payout2022-04-07 01:11:00
cashout_time1969-12-31 23:59:59
total_payout_value0.050 HBD
curator_payout_value0.049 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length116
author_reputation278,422,568,054
root_title"Python Libraries: Sending an Argument via the Command Line"
beneficiaries
0.
accounthiveonboard
weight100
1.
accountocdb
weight100
2.
accountpeakd
weight300
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id111,841,273
net_rshares73,459,060,643
author_curate_reward""
vote details (5)
@slobberchops ·
C sharp developers are in demand in my country. Python devs also demand decent $$$.
πŸ‘  , , , ,
πŸ‘Ž  
properties (23)
authorslobberchops
permlinkre-aronnok-r9lqht
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2022.03.9"}
created2022-03-31 09:03:30
last_update2022-03-31 09:03:30
depth2
children1
last_payout2022-04-07 09:03: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_length83
author_reputation2,436,339,775,230,334
root_title"Python Libraries: Sending an Argument via the Command Line"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id111,851,520
net_rshares10,458,473,873
author_curate_reward""
vote details (6)
@aronnok ·
After knowing the demand of c and its upgraded version, I had decided to learn it first. I want to go ahead as my plan. I have belief in myself.
πŸ‘  , , ,
properties (23)
authoraronnok
permlinkr9lutb
categoryhive-163521
json_metadata{"app":"hiveblog/0.1"}
created2022-03-31 10:36:54
last_update2022-03-31 10:36:54
depth3
children0
last_payout2022-04-07 10:36: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_length144
author_reputation278,422,568,054
root_title"Python Libraries: Sending an Argument via the Command Line"
beneficiaries
0.
accounthiveonboard
weight100
1.
accountocdb
weight100
2.
accountpeakd
weight300
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id111,853,020
net_rshares1,816,692,491
author_curate_reward""
vote details (4)
@bengy · (edited)
$0.24
I'm going to try doing something like this as well! I've been meaning to find a Python project. Got any hints for a Python noob? 
πŸ‘  , , , ,
properties (23)
authorbengy
permlinkre-slobberchops-r9kvrc
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2022.03.9"}
created2022-03-30 21:59:39
last_update2022-03-30 22:03:54
depth1
children1
last_payout2022-04-06 21:59:39
cashout_time1969-12-31 23:59:59
total_payout_value0.121 HBD
curator_payout_value0.121 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length129
author_reputation1,239,604,980,393,032
root_title"Python Libraries: Sending an Argument via the Command Line"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id111,837,705
net_rshares175,135,861,503
author_curate_reward""
vote details (5)
@slobberchops · (edited)
$0.27
I initially got some help, especially from @steevc who gave me the vote routine. Since then I built it up, and it's getting more complex the more I add to it. Best thing is.. it taught me the language.

>Got any hints for a Python noob?

I am no expert in it. @geekgirl and @felixxx are much more accomplished than I.
πŸ‘  , , , , ,
properties (23)
authorslobberchops
permlinkre-bengy-r9kw05
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2022.03.9"}
created2022-03-30 22:04:54
last_update2022-03-30 22:07:36
depth2
children0
last_payout2022-04-06 22:04:54
cashout_time1969-12-31 23:59:59
total_payout_value0.136 HBD
curator_payout_value0.135 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length317
author_reputation2,436,339,775,230,334
root_title"Python Libraries: Sending an Argument via the Command Line"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id111,837,822
net_rshares195,970,385,863
author_curate_reward""
vote details (6)
@freedomring ·
$0.10
I don't write much just trying to get an account built up to help nomads and travelers, hoping to bring some to Hive. 
Looking to get a place to help them build out DIY and work on vehicles when they need a place to do so.

This is a great idea, as long as it is not crap posts that many users write. 

πŸ‘  , , , ,
properties (23)
authorfreedomring
permlinkre-slobberchops-r9l4jd
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2022.03.9"}
created2022-03-31 01:09:51
last_update2022-03-31 01:09:51
depth1
children0
last_payout2022-04-07 01:09:51
cashout_time1969-12-31 23:59:59
total_payout_value0.051 HBD
curator_payout_value0.049 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length303
author_reputation838,443,790,218
root_title"Python Libraries: Sending an Argument via the Command Line"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id111,841,246
net_rshares73,472,063,859
author_curate_reward""
vote details (5)
@geekgirl ·
$0.34
Why send arguments from command line? Why not include them within the code? Are you using beem or something else?
πŸ‘  , , , ,
properties (23)
authorgeekgirl
permlinkr9krq4
categoryhive-163521
json_metadata{"app":"hiveblog/0.1"}
created2022-03-30 20:32:30
last_update2022-03-30 20:32:30
depth1
children1
last_payout2022-04-06 20:32:30
cashout_time1969-12-31 23:59:59
total_payout_value0.173 HBD
curator_payout_value0.171 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length113
author_reputation1,588,017,852,468,897
root_title"Python Libraries: Sending an Argument via the Command Line"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id111,835,719
net_rshares246,959,444,427
author_curate_reward""
vote details (5)
@slobberchops ·
$0.77
Yes using BEEM.., or should I say struggling with it if I need to do something new!

For the most part I can simply run the script, but occasionally I wanted to up the weight, and so needed an optional argument to do this sent as an integer. 

Other things I want to incorporate are checks to ActiFit posts (wont vote them), and maybe grant larger votes to content with more substance.

It's all a reason to practice coding and keep my brain fresh!
πŸ‘  , , , ,
properties (23)
authorslobberchops
permlinkre-geekgirl-r9krzj
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2022.03.9"}
created2022-03-30 20:38:06
last_update2022-03-30 20:38:06
depth2
children0
last_payout2022-04-06 20:38:06
cashout_time1969-12-31 23:59:59
total_payout_value0.386 HBD
curator_payout_value0.385 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length448
author_reputation2,436,339,775,230,334
root_title"Python Libraries: Sending an Argument via the Command Line"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id111,835,870
net_rshares551,712,501,636
author_curate_reward""
vote details (5)
@grindle ·
$0.24
you are not fucking human!
πŸ‘  , , , ,
properties (23)
authorgrindle
permlinkre-slobberchops-r9lja4
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2022.03.9"}
created2022-03-31 06:27:42
last_update2022-03-31 06:27:42
depth1
children2
last_payout2022-04-07 06:27:42
cashout_time1969-12-31 23:59:59
total_payout_value0.123 HBD
curator_payout_value0.121 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length26
author_reputation1,019,249,314,930,043
root_title"Python Libraries: Sending an Argument via the Command Line"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id111,849,115
net_rshares180,696,859,429
author_curate_reward""
vote details (5)
@slobberchops ·
Years of pouring over BASIC listings in the derelict Kwiksave canteen brought me here. While being forced to make coffee for Mort, (and trying to poison him), I took in a little more every day.
πŸ‘  , , , ,
πŸ‘Ž  
properties (23)
authorslobberchops
permlinkre-grindle-r9lp55
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2022.03.9"}
created2022-03-31 08:34:18
last_update2022-03-31 08:34:18
depth2
children1
last_payout2022-04-07 08:34: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_length193
author_reputation2,436,339,775,230,334
root_title"Python Libraries: Sending an Argument via the Command Line"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id111,851,078
net_rshares10,223,880,728
author_curate_reward""
vote details (6)
@grindle ·
$0.09
LOL!!!!!!!!!!!!
see Kwickies stood you in good stead, and made you what you are today
All hail to the Mort
πŸ‘  
properties (23)
authorgrindle
permlinkre-slobberchops-r9pagu
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2022.03.9"}
created2022-04-02 07:07:45
last_update2022-04-02 07:07:45
depth3
children0
last_payout2022-04-09 07:07:45
cashout_time1969-12-31 23:59:59
total_payout_value0.044 HBD
curator_payout_value0.043 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length106
author_reputation1,019,249,314,930,043
root_title"Python Libraries: Sending an Argument via the Command Line"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id111,912,308
net_rshares73,409,459,906
author_curate_reward""
vote details (1)
@harlowjourney · (edited)
$0.17
This is very interesting.  I can think of so many writers who consistently deliver, but are not always rewarded commensurately.  

The two who immediately spring to mind are @consciouscat and @wolfofnostreet.  I enjoy all of their posts, but sometimes, they are very under-rewarded.  Such is life, but they certainly deserve consideration for your list.

Coincidentally, I recently also started learning Python.  Early days, but still...

(I notice I have a new downvoter, positivum, who has posted nothing, but has 1000 HP and downvotes people like me but upvotes people like you and edicted.  Is that insanity or do they have a goal that I don't understand because I am naΓ―ve?  What is this individual's strategy?  It removes about two cents from my pocket per day, which is irrelevant,  but if 500 accounts did the same thing...)

!WINE 
!PIZZA 
!hivebits
πŸ‘  , , , , ,
properties (23)
authorharlowjourney
permlinkre-slobberchops-2022331t01551682z
categoryhive-163521
json_metadata{"tags":["hive-163521","python","stemgeeks","leofinance","proofofbrain","palnet","creativecoin","neoxian","vyb","ctp"],"app":"ecency/3.0.27-mobile","format":"markdown+html","users":["consciouscat","wolfofnostreet"]}
created2022-03-31 06:15:51
last_update2022-03-31 06:17:12
depth1
children6
last_payout2022-04-07 06:15:51
cashout_time1969-12-31 23:59:59
total_payout_value0.088 HBD
curator_payout_value0.086 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length858
author_reputation28,179,866,256,451
root_title"Python Libraries: Sending an Argument via the Command Line"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id111,848,956
net_rshares131,491,602,664
author_curate_reward""
vote details (6)
@consciouscat ·
Thank you for your kind thoughts and inclusion here, Harlow. It's a lovely surprise. Indeed, I care about writing meaningful, useful things as often as possible. Thanks for the tag, dear one. !LUV
πŸ‘  
properties (23)
authorconsciouscat
permlinkre-harlowjourney-202241t123817646z
categoryhive-163521
json_metadata{"tags":["hive-163521","python","stemgeeks","leofinance","proofofbrain","palnet","creativecoin","neoxian","vyb","ctp"],"app":"ecency/3.0.22-vision","format":"markdown+html"}
created2022-04-01 02:38:21
last_update2022-04-01 02:38:21
depth2
children2
last_payout2022-04-08 02:38: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_length196
author_reputation199,885,702,599,874
root_title"Python Libraries: Sending an Argument via the Command Line"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id111,878,227
net_rshares0
author_curate_reward""
vote details (1)
@consciouscat ·
Meanwhile, I love that you understand enough about coding that you even clicked on this post @harlowjourney. I may be a wordsmith but I struggle to understand most of this post. I guess, as you said @slobberchops, I must be one of those types who will never understand it. Oh well, I guess it's back to the never-ending study of psychology for me 🀣 !LOL
properties (22)
authorconsciouscat
permlinkre-consciouscat-202241t12413140z
categoryhive-163521
json_metadata{"tags":[],"app":"ecency/3.0.22-vision","format":"markdown+html"}
created2022-04-01 02:41:03
last_update2022-04-01 02:41:03
depth3
children0
last_payout2022-04-08 02:41: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_length353
author_reputation199,885,702,599,874
root_title"Python Libraries: Sending an Argument via the Command Line"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id111,878,283
net_rshares0
@luvshares ·
@consciouscat<sub>(2/4)</sub> gave you LUV. <a href="https://peakd.com/@luvshares/about" style="text-decoration:none"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/AKU7oyCXxGwYyudB42kJ7JtoZ63bdeHvm4icoT9xdGNxA4i4BwudGyPvTQrEwPd.gif"></a> <a
    href="https://crrdlx.websavvy.work/" style="text-decoration:none">H-E tools</a> | <a 
    href="https://discord.gg/K5GvNhcPqR" style="text-decoration:none">connect</a> | <a href="https://ichthys.netlify.app" style="text-decoration:none"><><</a>
<br><center><a href="https://peakd.com/nftforpeace/@hivebuzz/nft-for-peace" target="_blank"><img src="https://files.peakd.com/file/peakd-hive/luvshares/242henrWsje7ivLwY3jxy15af3LJqvUzEmrEKAViGAowE1XsPqkDUuQ6QnwYpVJUWKN7c.gif"></a><br><a href="https://peakd.com/nftforpeace/@hivebuzz/nft-for-peace" target="_blank">HiveBuzz.me NFT for Peace</a></center>
properties (22)
authorluvshares
permlinkre-re-harlowjourney-202241t123817646z-20220401t023926z
categoryhive-163521
json_metadata"{"app": "beem/0.24.26"}"
created2022-04-01 02:39:27
last_update2022-04-01 02:39:27
depth3
children0
last_payout2022-04-08 02:39: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_length854
author_reputation5,651,102,754,153
root_title"Python Libraries: Sending an Argument via the Command Line"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id111,878,255
net_rshares0
@slobberchops ·
$0.10
>The two who immediately spring to mind are @consciouscat and @wolfofnostreet.

Thanks, one of them had already caught my eye and is on the list.

>(I notice I have a new downvoter, positivum, who has posted nothing, but has 1000 HP and downvotes people like me but upvotes people like you and edicted.

No idea who it is, the recovery account gives nothing away of it's origins. I have a stalker who has downvoted everything I post for the last 4 years. Ignore it, or mute the account if you don't want to see. It's not as if they can cause you much damage.
πŸ‘  , , , , , , ,
πŸ‘Ž  ,
properties (23)
authorslobberchops
permlinkre-harlowjourney-r9lqbr
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2022.03.9"}
created2022-03-31 08:59:51
last_update2022-03-31 08:59:51
depth2
children0
last_payout2022-04-07 08:59:51
cashout_time1969-12-31 23:59:59
total_payout_value0.052 HBD
curator_payout_value0.047 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length558
author_reputation2,436,339,775,230,334
root_title"Python Libraries: Sending an Argument via the Command Line"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id111,851,444
net_rshares75,708,803,858
author_curate_reward""
vote details (10)
@wine.bot ·
<center>
<sup>Congratulations, @harlowjourney You Successfully Shared <b>0.100</b> <b>WINEX</b> With @slobberchops.</sup>
<sup>You Earned <b>0.100</b> <b>WINEX</b> As Curation Reward.</sup>
<sup>You Utilized <b>1/1</b> Successful Calls.</sup>

<img src="https://images.hive.blog/DQmSWfbie9MTC172sENiA16bsMaz1ofT6AAyTo1ishasrcX/winexcomment.png" alt="wine_logo">

---
<sup>Contact Us : [WINEX Token Discord Channel](https://discord.gg/rS3KzjJDCx)</sup>
<sup>[WINEX Current Market Price](https://hive-engine.com/?p=market&t=WINEX) : <b>0.400</b></sup>
---
<sup>Swap Your <b>Hive <=> Swap.Hive</b> With Industry <b>Lowest Fee (0.1%)</b> : [Click This Link](https://swaphive.github.io/swap/)</sup>
<sup>[Read Latest Updates](https://peakd.com/@hiveupme/posts) Or [Contact Us](https://discord.gg/rS3KzjJDCx)</sup>
</center>
properties (22)
authorwine.bot
permlink20220331t061729699z
categoryhive-163521
json_metadata{"tags":["wine","token","winebot"],"app":"wine-bot/4.0","format":"markdown"}
created2022-03-31 06:17:30
last_update2022-03-31 06:17:30
depth2
children0
last_payout2022-04-07 06:17: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_length833
author_reputation8,493,567,555,539
root_title"Python Libraries: Sending an Argument via the Command Line"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id111,848,986
net_rshares0
@wolfofnostreet ·
$0.08
Thanks for the mention @harlowjourney πŸ˜€ Knowing you and some others who continue engaging me keeps me going. 
πŸ‘  , , , , ,
properties (23)
authorwolfofnostreet
permlinkre-harlowjourney-r9lnvm
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2022.03.9"}
created2022-03-31 08:07:00
last_update2022-03-31 08:07:00
depth2
children0
last_payout2022-04-07 08:07:00
cashout_time1969-12-31 23:59:59
total_payout_value0.041 HBD
curator_payout_value0.040 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length109
author_reputation170,243,679,612,720
root_title"Python Libraries: Sending an Argument via the Command Line"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id111,850,649
net_rshares61,623,906,762
author_curate_reward""
vote details (6)
@myjob ·
$0.24
Someone who writes every day and could use help is @jacobpeacock  
πŸ‘  , ,
properties (23)
authormyjob
permlinkre-slobberchops-r9l6md
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2022.03.9"}
created2022-03-31 01:54:15
last_update2022-03-31 01:54:15
depth1
children2
last_payout2022-04-07 01:54:15
cashout_time1969-12-31 23:59:59
total_payout_value0.120 HBD
curator_payout_value0.120 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length66
author_reputation173,396,886,283,561
root_title"Python Libraries: Sending an Argument via the Command Line"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id111,841,962
net_rshares173,572,363,509
author_curate_reward""
vote details (3)
@slobberchops ·
Agreed,.. added thanks.
πŸ‘  
properties (23)
authorslobberchops
permlinkre-myjob-r9lo4a
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2022.03.9"}
created2022-03-31 08:12:12
last_update2022-03-31 08:12:12
depth2
children1
last_payout2022-04-07 08:12: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_length23
author_reputation2,436,339,775,230,334
root_title"Python Libraries: Sending an Argument via the Command Line"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id111,850,754
net_rshares0
author_curate_reward""
vote details (1)
@myjob ·
thank you for adding him
πŸ‘  
properties (23)
authormyjob
permlinkre-slobberchops-r9mryt
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2022.03.9"}
created2022-03-31 22:32:54
last_update2022-03-31 22:32:54
depth3
children0
last_payout2022-04-07 22:32: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_length24
author_reputation173,396,886,283,561
root_title"Python Libraries: Sending an Argument via the Command Line"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id111,870,378
net_rshares0
author_curate_reward""
vote details (1)
@oblivioncubed ·
$0.40
I'd like to toss @zedcell, @alonicus, and @killerwot into the ring as potentials for the random votes. They're all fantastic, and work their asses off! 
πŸ‘  , , ,
properties (23)
authoroblivioncubed
permlinkre-slobberchops-r9m8d1
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2022.03.9"}
created2022-03-31 15:29:36
last_update2022-03-31 15:29:36
depth1
children4
last_payout2022-04-07 15:29:36
cashout_time1969-12-31 23:59:59
total_payout_value0.200 HBD
curator_payout_value0.200 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length152
author_reputation169,192,892,065,236
root_title"Python Libraries: Sending an Argument via the Command Line"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id111,859,602
net_rshares295,168,908,093
author_curate_reward""
vote details (4)
@detlev ·
cool, will stop by at this accounts
properties (22)
authordetlev
permlinkre-oblivioncubed-r9pq69
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2022.03.9"}
created2022-04-02 12:46:57
last_update2022-04-02 12:46:57
depth2
children0
last_payout2022-04-09 12:46: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_length35
author_reputation1,726,897,473,687,743
root_title"Python Libraries: Sending an Argument via the Command Line"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id111,918,116
net_rshares0
@killerwot ·
$0.14
Thanks for the mention @oblivioncubed 

!PIZZA
πŸ‘  ,
properties (23)
authorkillerwot
permlinkre-oblivioncubed-2022331t163228253z
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"ecency/3.0.22-vision","format":"markdown+html"}
created2022-03-31 15:32:42
last_update2022-03-31 15:32:42
depth2
children0
last_payout2022-04-07 15:32:42
cashout_time1969-12-31 23:59:59
total_payout_value0.070 HBD
curator_payout_value0.070 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length46
author_reputation349,033,910,710,956
root_title"Python Libraries: Sending an Argument via the Command Line"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id111,859,682
net_rshares104,361,945,543
author_curate_reward""
vote details (2)
@slobberchops ·
$0.23
I know of @zedcell, the other two are added.
πŸ‘  ,
πŸ‘Ž  
properties (23)
authorslobberchops
permlinkre-oblivioncubed-r9m9cq
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2022.03.9"}
created2022-03-31 15:50:51
last_update2022-03-31 15:50:51
depth2
children1
last_payout2022-04-07 15:50:51
cashout_time1969-12-31 23:59:59
total_payout_value0.115 HBD
curator_payout_value0.115 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length44
author_reputation2,436,339,775,230,334
root_title"Python Libraries: Sending an Argument via the Command Line"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id111,860,209
net_rshares169,768,590,614
author_curate_reward""
vote details (3)
@oblivioncubed ·
Much appreciated my dude!
πŸ‘  
properties (23)
authoroblivioncubed
permlinkre-slobberchops-r9m9vr
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2022.03.9"}
created2022-03-31 16:02:24
last_update2022-03-31 16:02:24
depth3
children0
last_payout2022-04-07 16:02: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_length25
author_reputation169,192,892,065,236
root_title"Python Libraries: Sending an Argument via the Command Line"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id111,860,537
net_rshares0
author_curate_reward""
vote details (1)
@pizzabot · (edited)
RE: Python Libraries: Sending an Argument via the Command Line
<center>PIZZA! PIZZA! PIZZA! PIZZA! 
 @slobberchops! The Hive.Pizza team manually curated this post.

PIZZA Holders sent <strong>$PIZZA</strong> tips in this post's comments:
@killerwot<sub>(3/5)</sub> tipped @oblivioncubed (x1)
harlowjourney tipped slobberchops (x1)
samsmith1971 tipped slobberchops (x1)


<sub>You can now send $PIZZA tips in <a href="https://discord.gg/hivepizza">Discord</a> via tip.cc!</sub></center>
properties (22)
authorpizzabot
permlinkre-python-libraries-sending-an-argument-via-the-command-line-20220330t231615z
categoryhive-163521
json_metadata"{"app": "beem/0.24.26"}"
created2022-03-30 23:16:15
last_update2022-03-31 16:02:03
depth1
children0
last_payout2022-04-06 23:16: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_length422
author_reputation7,541,300,812,676
root_title"Python Libraries: Sending an Argument via the Command Line"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id111,839,113
net_rshares0
@rikoy ·
Practice makes a man perfect, i also learned c++ and, javascript but i didnt practice it for years.
πŸ‘  , , ,
properties (23)
authorrikoy
permlinkr9lu7l
categoryhive-163521
json_metadata{"app":"hiveblog/0.1"}
created2022-03-31 10:23:51
last_update2022-03-31 10:23:51
depth1
children0
last_payout2022-04-07 10:23: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_length99
author_reputation2,225,002,197,666
root_title"Python Libraries: Sending an Argument via the Command Line"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id111,852,794
net_rshares1,809,877,969
author_curate_reward""
vote details (4)
@sanjeevm ·
$0.10
> How cool would it be to be 'another @hr1' and to dish out votes to other struggling HIVE authors who consistently deliver?

I think, all curation can make this place collectively better by working together to reward these struggling authors ?
πŸ‘  , , , ,
properties (23)
authorsanjeevm
permlinkre-slobberchops-r9lf7c
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2022.03.9"}
created2022-03-31 04:59:39
last_update2022-03-31 04:59:39
depth1
children1
last_payout2022-04-07 04:59:39
cashout_time1969-12-31 23:59:59
total_payout_value0.050 HBD
curator_payout_value0.048 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length244
author_reputation700,498,531,954,267
root_title"Python Libraries: Sending an Argument via the Command Line"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id111,847,890
net_rshares73,425,729,114
author_curate_reward""
vote details (5)
@slobberchops ·
I do what I can, the list is mostly made up of people I don't follow. I can't follow everyone as that would be unmanageable.
πŸ‘  , , , ,
πŸ‘Ž  
properties (23)
authorslobberchops
permlinkre-sanjeevm-r9lqms
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2022.03.9"}
created2022-03-31 09:06:27
last_update2022-03-31 09:06:27
depth2
children0
last_payout2022-04-07 09:06: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_length124
author_reputation2,436,339,775,230,334
root_title"Python Libraries: Sending an Argument via the Command Line"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id111,851,559
net_rshares10,473,072,332
author_curate_reward""
vote details (6)
@shanibeer ·
$0.15
So great that you have got to a position where you can emulate hr1! I remember you talking about this mythical voter ... were they real?

The code looks tricky, but then I don't know Python. I like the logic of code, though.
πŸ‘  , , , ,
properties (23)
authorshanibeer
permlinkre-slobberchops-r9kxag
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2022.03.9"}
created2022-03-30 22:32:42
last_update2022-03-30 22:32:42
depth1
children1
last_payout2022-04-06 22:32:42
cashout_time1969-12-31 23:59:59
total_payout_value0.075 HBD
curator_payout_value0.075 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length224
author_reputation247,898,565,959,458
root_title"Python Libraries: Sending an Argument via the Command Line"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id111,838,444
net_rshares109,378,019,900
author_curate_reward""
vote details (5)
@slobberchops ·
You should have seen @hr1 at Krakow, I know you were there! Any thoughts on a meetup now this COVID rubbish has been swept under the table?
πŸ‘  , , , ,
πŸ‘Ž  
properties (23)
authorslobberchops
permlinkre-shanibeer-r9lqea
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2022.03.9"}
created2022-03-31 09:01:21
last_update2022-03-31 09:01:21
depth2
children0
last_payout2022-04-07 09:01: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_length139
author_reputation2,436,339,775,230,334
root_title"Python Libraries: Sending an Argument via the Command Line"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id111,851,476
net_rshares10,375,933,463
author_curate_reward""
vote details (6)
@steevc ·
$0.24
Python 3 made print into a proper function to be more consistent with other stuff. Look at 'f strings' for neat ways to format the output. I love Python and I get to use it for work these days. I've done various BASICs, C, C++, C#, Java and others. Python may not be the quickest, but you can produce working code more easily.

The libraries for Hive are great. People should have a play and they may create new dapps eventually.
πŸ‘  , , , , ,
properties (23)
authorsteevc
permlinkre-slobberchops-r9lqsx
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2022.03.9"}
created2022-03-31 09:10:09
last_update2022-03-31 09:10:09
depth1
children1
last_payout2022-04-07 09:10:09
cashout_time1969-12-31 23:59:59
total_payout_value0.122 HBD
curator_payout_value0.120 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length429
author_reputation1,381,840,489,687,836
root_title"Python Libraries: Sending an Argument via the Command Line"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id111,851,611
net_rshares179,780,460,598
author_curate_reward""
vote details (6)
@slobberchops ·
$0.12
Yes, I know about the f' thing, though its still not clear in my head yet. I aim to do some more work on the script, involving the BEEM library which can be painful (lack of examples).
πŸ‘  ,
πŸ‘Ž  ,
properties (23)
authorslobberchops
permlinkre-steevc-r9ltpv
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2022.03.9"}
created2022-03-31 10:13:09
last_update2022-03-31 10:13:09
depth2
children0
last_payout2022-04-07 10:13:09
cashout_time1969-12-31 23:59:59
total_payout_value0.059 HBD
curator_payout_value0.059 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length184
author_reputation2,436,339,775,230,334
root_title"Python Libraries: Sending an Argument via the Command Line"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id111,852,629
net_rshares88,138,146,934
author_curate_reward""
vote details (4)
@tbnfl4sun ·
$0.10
Man, the people I met in person on Steem are all gone, some I miss and some I don't!  It makes it better when you meet face to face in my experience.

Posted Using [LeoFinance <sup>Beta</sup>](https://leofinance.io/@tbnfl4sun/re-slobberchops-26xbki)
πŸ‘  , , , ,
properties (23)
authortbnfl4sun
permlinkre-slobberchops-26xbki
categoryhive-163521
json_metadata{"app":"leofinance/0.2","format":"markdown","tags":["hive-163521","leofinance","hive-167922"],"canonical_url":"https://leofinance.io/@tbnfl4sun/re-slobberchops-26xbki"}
created2022-03-30 21:52:42
last_update2022-03-30 21:52:42
depth1
children2
last_payout2022-04-06 21:52:42
cashout_time1969-12-31 23:59:59
total_payout_value0.050 HBD
curator_payout_value0.048 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length249
author_reputation108,628,946,571,833
root_title"Python Libraries: Sending an Argument via the Command Line"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id111,837,566
net_rshares72,234,516,756
author_curate_reward""
vote details (5)
@slobberchops ·
The names and the faces generally didn't match your visual expectations, that was my experience!
πŸ‘  
properties (23)
authorslobberchops
permlinkre-tbnfl4sun-r9kvpw
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2022.03.9"}
created2022-03-30 21:58:45
last_update2022-03-30 21:58:45
depth2
children1
last_payout2022-04-06 21:58: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_length96
author_reputation2,436,339,775,230,334
root_title"Python Libraries: Sending an Argument via the Command Line"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id111,837,681
net_rshares0
author_curate_reward""
vote details (1)
@tbnfl4sun ·
You can change that, just slobber all over everyone!
The rest of your post went over my head so that's why the people comment.

Posted Using [LeoFinance <sup>Beta</sup>](https://leofinance.io/@tbnfl4sun/re-slobberchops-5mvaq9)
πŸ‘  , , ,
properties (23)
authortbnfl4sun
permlinkre-slobberchops-5mvaq9
categoryhive-163521
json_metadata{"app":"leofinance/0.2","format":"markdown","tags":["hive-163521","leofinance","hive-167922"],"canonical_url":"https://leofinance.io/@tbnfl4sun/re-slobberchops-5mvaq9"}
created2022-03-30 22:58:57
last_update2022-03-30 22:58:57
depth3
children0
last_payout2022-04-06 22:58: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_length226
author_reputation108,628,946,571,833
root_title"Python Libraries: Sending an Argument via the Command Line"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id111,838,841
net_rshares1,844,173,245
author_curate_reward""
vote details (4)
@urun ·
$0.14
![1](https://images.hive.blog/0x0/https://pbs.twimg.com/media/FOeDtQJXoAMZ1mL?format=jpg&name=900x900)
πŸ‘  , ,
properties (23)
authorurun
permlinkre-slobberchops-r9ktkx
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2022.03.9"}
created2022-03-30 21:12:33
last_update2022-03-30 21:12:33
depth1
children0
last_payout2022-04-06 21:12:33
cashout_time1969-12-31 23:59:59
total_payout_value0.072 HBD
curator_payout_value0.070 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length102
author_reputation94,125,949,460,949
root_title"Python Libraries: Sending an Argument via the Command Line"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id111,836,664
net_rshares103,919,247,995
author_curate_reward""
vote details (3)
@worldstories ·
what's the best and simple way to handle args on Python?
πŸ‘  , , , ,
properties (23)
authorworldstories
permlinkre-slobberchops-2022330t20377235z
categoryhive-163521
json_metadata{"tags":["python","stemgeeks","leofinance","proofofbrain","palnet","creativecoin","neoxian","vyb","ctp"],"app":"ecency/3.0.22-vision","format":"markdown+html"}
created2022-03-30 20:37:12
last_update2022-03-30 20:37:12
depth1
children1
last_payout2022-04-06 20:37: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_length56
author_reputation9,635,411,109,148
root_title"Python Libraries: Sending an Argument via the Command Line"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id111,835,848
net_rshares2,703,459,302
author_curate_reward""
vote details (5)
@slobberchops ·
You could read the post, and learn?
πŸ‘  , , , ,
πŸ‘Ž  
properties (23)
authorslobberchops
permlinkre-worldstories-r9ksip
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2022.03.9"}
created2022-03-30 20:49:36
last_update2022-03-30 20:49:36
depth2
children0
last_payout2022-04-06 20:49: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_length35
author_reputation2,436,339,775,230,334
root_title"Python Libraries: Sending an Argument via the Command Line"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id111,836,167
net_rshares10,267,311,021
author_curate_reward""
vote details (6)
@wrestlingdesires ·
$0.10
Like I told Geekgirl, when I have time I really want to play around with Python. It looks like fun!

Congratulations on being in such a position to support others πŸ™ŒIs it ok to nominate a couple of people? @samsmith1971 is an amazing author, who even as a newbie supported new members. And @blindspot is a longtime member of the Hive community who is currently trying to get his life back on track after fleeing the Ukraine.
πŸ‘  ,
properties (23)
authorwrestlingdesires
permlinkre-slobberchops-2022330t12239590z
categoryhive-163521
json_metadata{"tags":["python","stemgeeks","leofinance","proofofbrain","palnet","creativecoin","neoxian","vyb","ctp"],"app":"ecency/3.0.22-vision","format":"markdown+html"}
created2022-03-30 21:23:03
last_update2022-03-30 21:23:03
depth1
children10
last_payout2022-04-06 21:23:03
cashout_time1969-12-31 23:59:59
total_payout_value0.048 HBD
curator_payout_value0.047 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length423
author_reputation202,688,216,355,345
root_title"Python Libraries: Sending an Argument via the Command Line"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id111,836,938
net_rshares69,238,663,240
author_curate_reward""
vote details (2)
@slobberchops · (edited)
Sure, I will take a look at these accounts, I think you may already be on the list.. not sure.

EDIT: You and Sam are already on it. I have seen the account @blindspot, but the one you mention is not the correct one.. different spelling, and I can't find it.
πŸ‘  
properties (23)
authorslobberchops
permlinkre-wrestlingdesires-r9kvco
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2022.03.9"}
created2022-03-30 21:50:48
last_update2022-03-30 21:56:09
depth2
children9
last_payout2022-04-06 21: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_length258
author_reputation2,436,339,775,230,334
root_title"Python Libraries: Sending an Argument via the Command Line"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id111,837,514
net_rshares0
author_curate_reward""
vote details (1)
@samsmith1971 · (edited)
$0.10
This is lovely, thank you @slobberchops. I have seen you on my posts before and appreciate your support. Thank you for the kind mention @wrestlingdesires. I am pleased that you are already on the list. You are immense my friend. @slobberchops, might I ask you to consider ayesha-malik, deraaa, amber-kashif, itsostylish, beautifulwreck, dreemsteem ... all beautiful ladies who write from the heart. and jin-out, litguru, tengolotodo and khoola... men with big hearts too. !LUV !ALIVE
πŸ‘  , , , ,
properties (23)
authorsamsmith1971
permlinkre-slobberchops-2022331t1414210z
categoryhive-163521
json_metadata{"tags":[],"app":"ecency/3.0.22-vision","format":"markdown+html"}
created2022-03-31 00:41:42
last_update2022-03-31 00:41:54
depth3
children7
last_payout2022-04-07 00:41:42
cashout_time1969-12-31 23:59:59
total_payout_value0.051 HBD
curator_payout_value0.050 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length483
author_reputation116,562,030,495,636
root_title"Python Libraries: Sending an Argument via the Command Line"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id111,840,697
net_rshares74,515,048,621
author_curate_reward""
vote details (5)
@wrestlingdesires · (edited)
$0.05
Sorry, it's @blind-spot -  @zirochka is another, she's right in the thick of the battle... 

I'm honored that I am on the list :)
πŸ‘  ,
properties (23)
authorwrestlingdesires
permlinkre-slobberchops-2022330t15521981z
categoryhive-163521
json_metadata{"tags":[],"app":"ecency/3.0.22-vision","format":"markdown+html"}
created2022-03-31 00:52:12
last_update2022-03-31 00:53:06
depth3
children0
last_payout2022-04-07 00:52:12
cashout_time1969-12-31 23:59:59
total_payout_value0.025 HBD
curator_payout_value0.024 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length129
author_reputation202,688,216,355,345
root_title"Python Libraries: Sending an Argument via the Command Line"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id111,840,862
net_rshares35,727,756,032
author_curate_reward""
vote details (2)
@wwwiebe ·
$0.25
Aw man, that's an awesome idea you're working on. I like seeing people give back into the community like that. I'd love to throw my name into the mix; I've only ever done one shit post - on purpose - and it was, in fact, of a dog taking a shit. I think I even labelled it as such.

I love python as a scripting language. It's also my "go to" when I need to do something. It's elegant. It's easy to read, and it's not javascript (oh dear god I despise javascript).
πŸ‘  , , , ,
properties (23)
authorwwwiebe
permlinkre-slobberchops-r9ks1e
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2022.03.9"}
created2022-03-30 20:39:15
last_update2022-03-30 20:39:15
depth1
children1
last_payout2022-04-06 20:39:15
cashout_time1969-12-31 23:59:59
total_payout_value0.127 HBD
curator_payout_value0.125 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length463
author_reputation344,170,916,911,802
root_title"Python Libraries: Sending an Argument via the Command Line"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id111,835,906
net_rshares181,326,251,905
author_curate_reward""
vote details (5)
@slobberchops ·
I think you are good enough to be added. One of the things I need to do is check who regularly comments and look at their writing.

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

@hr1 literally kept me going for several months when I started. We all need some encouragement and self-worth.

When I first started using Python I couldn't get anything out of it. Talk about frustrating, and then it clicked. It does take time to get into another language even if you are fluent in others (as am I).
πŸ‘  , , , ,
πŸ‘Ž  
properties (23)
authorslobberchops
permlinkre-wwwiebe-r9ksh9
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2022.03.9"}
created2022-03-30 20:48:45
last_update2022-03-30 20:48:45
depth2
children0
last_payout2022-04-06 20:48: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_length591
author_reputation2,436,339,775,230,334
root_title"Python Libraries: Sending an Argument via the Command Line"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id111,836,140
net_rshares10,292,959,600
author_curate_reward""
vote details (6)
@yintercept ·
$0.11
This sounds like an interesting script. Every night I vote my account down to 90% . Sometimes I find myself voting randomly just so I can get to bed.

BTW: People can do something similar to your script simply by upvoting random posts in their feed. You can see your feed by following your account name in hive followed by /feed . Here is your feed: 

https://hive.blog/@slobberchops/feed

!beer
πŸ‘  , , ,
properties (23)
authoryintercept
permlinkr9ktvs
categoryhive-163521
json_metadata{"tags":["stem"],"links":["https://hive.blog/@slobberchops/feed"],"app":"stemgeeks/0.1","canonical_url":"https://stemgeeks.net/@yintercept/r9ktvs"}
created2022-03-30 21:19:06
last_update2022-03-30 21:19:06
depth1
children1
last_payout2022-04-06 21:19:06
cashout_time1969-12-31 23:59:59
total_payout_value0.054 HBD
curator_payout_value0.054 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length395
author_reputation27,822,573,478,293
root_title"Python Libraries: Sending an Argument via the Command Line"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id111,836,841
net_rshares79,302,150,499
author_curate_reward""
vote details (4)
@slobberchops ·
$0.05
I tend to send my VP down to around 85% before sleep, 90 is a little high considering it recharges around 20% over 24 hours. If I have to go out the next day, it may get close to 100, and that's wasteful.
πŸ‘  ,
properties (23)
authorslobberchops
permlinkre-yintercept-r9kvbj
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2022.03.9"}
created2022-03-30 21:50:06
last_update2022-03-30 21:50:06
depth2
children0
last_payout2022-04-06 21:50:06
cashout_time1969-12-31 23:59:59
total_payout_value0.026 HBD
curator_payout_value0.025 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length204
author_reputation2,436,339,775,230,334
root_title"Python Libraries: Sending an Argument via the Command Line"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id111,837,500
net_rshares37,102,369,130
author_curate_reward""
vote details (2)