create account

How to set up a curation bot on raspberry pi by ubg

View this thread on: hive.blogpeakd.comecency.com
· @ubg · (edited)
$46.67
How to set up a curation bot on raspberry pi
## <center> Introduction</center>
If you feel like trusting your keys to external sites is not a great way to curate content, I've got a 35 dollar lifetime solution for you. Not that many people know that steemit curation bots can even be built on your mobile phones, since singing transactions takes little to no computational power.
<center>https://i.imgur.com/fD12skM.png</center>
In this tutorial, I'll be showing you how to set up a curation bot on a small arm processor machine, that takes up little to no power, so you can run it with almost no running costs. The specific machine that I'm going to use is __Raspberry Pi 2 Model B__ however the same process applies to any other Raspberry Pi models, Arduino, BeagleBone or any other device that can run linux.
## <center> Needed programs/files/accessories</center>
__Raspberry Pi__ - https://www.amazon.com/Raspberry-Pi-RASP-PI-3-Model-Motherboard/dp/B01CD5VC92

-------
__Wifi dongle__ - https://www.amazon.com/FotoFo-USB-WiFi-Adapter-Raspberry/dp/B01I191N48

--------
__Micro SD card__ - https://www.amazon.com/SanDisk-microSD-High-Capacity-microSDHC/dp/B00488G6P8

---
__Micro SD card reader__ - https://www.amazon.com/IOGEAR-MicroSD-Reader-Writer-GFR204SD/dp/B0046TJG1U

---
__A copy of raspian(any other linux based operating system will work as well)__ - https://www.raspberrypi.org/downloads/raspbian/
Make sure to download the pixel version. 
If you have larger than 8gb sd card I'd reccommend Ubuntu mate located here - https://ubuntu-mate.org/raspberry-pi/
You might even consider rokos OS if you want to stake your favorite altcoins meantime - http://rokos.space/core.html

----
__SDFormatter__ - https://www.sdcard.org/downloads/formatter_4/index.html

----
__etcher__ - https://etcher.io/

----
__Bitwise SSH client__ - https://www.bitvise.com/ssh-client-download

---
### <center> Step by step tutorial </center>
### 1. Format the Micro SD card
Get and install __SDFormatter__, when that is done insert your Micro SD card to the reader,  open up SDFormatter and make sure format size adjustment is swiched on. Then format the SD card.
<center>http://imgur.com/DlD8EYz.gif</center>
### 2. Burn raspbian on the SD card
We're going to use Etcher for this process. Burning the image on the SD card is fairly simple and straight forward.
<center>https://i.imgur.com/2K9NDwS.gif</center>
### 3. Install raspbian on your raspberry pi and log into your wifi
Installing rasbian is done automatically, you just have to wait until it boots up. After it's done booting, just log into your wifi and write down your local ip for the device. You'll be using this ip to ssh into the device.
<center>https://i.imgur.com/sE9Eleh.jpg</center>
### 4. SSH into your raspberry with bitvise
<center>https://i.imgur.com/AkQBOL0.png</center>
The default username is : __pi__
The default password is: __raspberry__
### 6. Install piston and all other prerequisites
bitvise will open up a terminal along with a ftp tunnel, paste the following commands into the terminal to install piston
##### Install screen
	sudo apt-get install screen
##### Install python with all piston the prerequisites
	sudo apt-get install python3
	sudo apt-get install python3-dev
	sudo apt-get install python3-pip

	sudo apt-get install git make automake cmake g++ libssl-dev autoconf libtool
	sudo apt-get install libboost-thread-dev libboost-date-time-dev libboost-system-dev libboost-filesystem-dev libboost-program-options-dev libboost-signals-dev libboost-serialization-dev libboost-chrono-dev libboost-test-dev libboost-context-dev libboost-locale-dev libboost-coroutine-dev libboost-iostreams-dev
	sudo apt-get install doxygen perl libreadline-dev libncurses5-dev


##### install piston
	sudo pip3 install steem-piston

Just paste all of theese commands into your terminal one by one to intsall piston with all of the prerequisites
### 7. Compile the curation bot script
Make a new folder on your desktop called bot, then create 2 files in that folder called bot.py and votelist.txt
so it would look like this
<center>https://i.imgur.com/Vr2fb4M.png</center>
You can just create 2 text files and rename the extensions to get the .py extension.

##### Edit the bot.py file and paste the following code inside:
	from steem.steem import Steem
	from steem.steem import BroadcastingError
	import threading
	import time
	import random
	import csv
	 
	my_subscriptions = []

	 
	with open('votelist.txt', mode='r') as infile:
		reader = csv.reader(infile)
		for rows in reader:
			v = rows[0]
			my_subscriptions.append(v)
	 
	# accounts and passwords
	account = ["account_goes_here"]
	posting_key = ["password_goes_here"]
	# delay in seconds when the bot votes
	vote_delay = random.randrange(1200,1800)
	
	upvote_history = []
	 
	def feed():
		print("Waiting for new posts by %s\n\n\nGo Oprah!\nGo Winfrey!" % my_subscriptions)
		steem = Steem(wif=posting_key[0])
		for comment in steem.stream_comments():
	 
			if comment.author in my_subscriptions:
				# Comments don't have titles. This is how we can know if we have a post or a comment.
				if len(comment.title) > 0:
	 
					# check if we already upvoted this. Sometimes the feed will give duplicates.
					if comment.identifier in upvote_history:
						continue
	 
					print("New post by @%s %s" % (comment.author, url_builder(comment)))
					workerThread = threading.Thread(name=comment.identifier, target=worker, args=(comment,))
					workerThread.start()
	 

	def url_builder(comment):
		return "https://steemit.com/%s/%s" % (comment.category, comment.identifier)
	 
	def worker(worker_comment):
		 time.sleep(vote_delay)
		 try:
		   for (k,v) in enumerate(account):
			 worker_steem = Steem(wif=posting_key[k])
			 upvote_comment = worker_steem.get_content(worker_comment.identifier)
			 # vote weight 100 full power vote -100 full power flag
			 upvote_comment.vote(100, v)
			 print("@%s====> ^Upvoted^" % upvote_comment.author)
			 upvote_history.append(upvote_comment.identifier)
		 except BroadcastingError as e:
		   print("@%s<- failed" % upvote_comment.author)
		   print(str(e))

	 
	if __name__ == "__main__":
		while True:
			try:
				feed()
			except (KeyboardInterrupt, SystemExit):
				print("Quitting...")
				break
			except Exception as e:
				traceback.print_exc()
				print("### Exception Occurred: Restarting...")

### 8. Add your account to the curation bot, also modify the the settings
add your account to "your_account_goes_here"
add your password to "your_password_goes_here"

##### you can also add multiple account by seperating the accounts and keys with a comma like so:
	account = ["account1", "account2"]
	posting_key = ["key1", "key2"]
##### You can modify the delay when the bot votes by altering this line (in seconds)
	vote_delay = random.randrange(1200,1800)
##### You can also modify the vote weight by altering this line (100 being full power and -100 being full power flag)
	upvote_comment.vote(100, v)	
### 9. Add users to the curation list
open up your votelist.txt and add users you want to vote on, each line contains a new user for the bot to vote on
##### So the list would go like so
	ubg
	fyrstikken
	furion
	contentjunkie
	xeroc
	steempowertwins
### 10. Move the files from your desktop to raspberry
After you're done adding accounts to your curation list just via  bitvise ftp tunnel like so
<center>http://imgur.com/krE86Go.gif</center>
### 11. Run your bot
To run your bot, you first need to navigate to the bots folder
##### you do that by typing
    cd bot
##### then you need to run your bot
    screen python3 bot.py
By using that command you're attaching the python script to a screen. So you can close your terminal and log out. 
##### Each time you want to know how the bot is doing you type
    screen -r
<center>https://i.imgur.com/Nh6fKBr.png</center>
If you want to detach the screen use keyboard shortcut ctrl+a+d
If you want to close the script use keyboard shortcut ctrl+c
----

Big thanks to @fyrstikken for releasing the source code for the winfrey bot. 
You can find the original code for the winfrey bot here:  https://steemit.com/socialist-bot/@fyrstikken/the-anonymous-winfrey-bot-upvotes-for-everyone-download-here-easy-steps-for-n00bs
Also if you have any questions regarding setting up your own bot, just ask in the comments or contact @ubg in rocket chat. Also a huge thanks to @noganoo for providing me the piston prerequisites.
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 340 others
properties (23)
authorubg
permlinkhow-to-set-up-a-curation-bot-on-raspberry-pi
categoryraspberry
json_metadata{"tags":["raspberry","pi","curation","bot"],"users":["fyrstikken","ubg","noganoo"],"image":["https://i.imgur.com/fD12skM.png","http://imgur.com/DlD8EYz.gif","https://i.imgur.com/2K9NDwS.gif","https://i.imgur.com/sE9Eleh.jpg","https://i.imgur.com/AkQBOL0.png","https://i.imgur.com/Vr2fb4M.png","http://imgur.com/krE86Go.gif","https://i.imgur.com/Nh6fKBr.png"],"links":["https://www.amazon.com/Raspberry-Pi-RASP-PI-3-Model-Motherboard/dp/B01CD5VC92","https://www.amazon.com/FotoFo-USB-WiFi-Adapter-Raspberry/dp/B01I191N48","https://www.amazon.com/SanDisk-microSD-High-Capacity-microSDHC/dp/B00488G6P8","https://www.amazon.com/IOGEAR-MicroSD-Reader-Writer-GFR204SD/dp/B0046TJG1U","https://www.raspberrypi.org/downloads/raspbian/","https://ubuntu-mate.org/raspberry-pi/","http://rokos.space/core.html","https://www.sdcard.org/downloads/formatter_4/index.html","https://etcher.io/","https://www.bitvise.com/ssh-client-download","https://steemit.com/socialist-bot/@fyrstikken/the-anonymous-winfrey-bot-upvotes-for-everyone-download-here-easy-steps-for-n00bs"],"app":"steemit/0.1","format":"markdown"}
created2017-01-11 21:13:54
last_update2017-01-26 20:23:33
depth0
children70
last_payout2017-02-12 15:37:15
cashout_time1969-12-31 23:59:59
total_payout_value36.314 HBD
curator_payout_value10.352 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length8,388
author_reputation5,237,585,248,428
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,223,433
net_rshares89,421,566,867,354
author_curate_reward""
vote details (404)
@applecrisp · (edited)
Thanks for the detailed tutorial!
👍  
properties (23)
authorapplecrisp
permlinkre-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170111t221119454z
categoryraspberry
json_metadata{"tags":["raspberry"]}
created2017-01-11 22:11:12
last_update2017-01-11 22:25:21
depth1
children0
last_payout2017-02-12 15:37: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_length33
author_reputation2,828,526,129,552
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,223,883
net_rshares3,187,326,690
author_curate_reward""
vote details (1)
@appz ·
Great tutorial, I loved the part about the marshmallow pie.
👍  
👎  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 935 others
properties (23)
authorappz
permlinkre-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170204t052845309z
categoryraspberry
json_metadata{"tags":["raspberry"],"app":"steemit/0.1"}
created2017-02-04 09:29:15
last_update2017-02-04 09:29:15
depth1
children0
last_payout2017-02-12 15:37: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_length59
author_reputation23,841,868,426
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,419,434
net_rshares-619,851,995,631
author_curate_reward""
vote details (1000)
@automaton ·
Good info!
properties (22)
authorautomaton
permlinkre-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170116t192459313z
categoryraspberry
json_metadata{"tags":["raspberry"],"app":"steemit/0.1"}
created2017-01-16 19:25:00
last_update2017-01-16 19:25:00
depth1
children0
last_payout2017-02-12 15:37: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_length10
author_reputation27,720,183,397,461
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,263,367
net_rshares0
@bitcoinparadise ·
I want to cry...😢 So proud of you @ubg 😋
👍  
properties (23)
authorbitcoinparadise
permlinkre-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170112t081527664z
categoryraspberry
json_metadata{"tags":["raspberry"],"users":["ubg"],"app":"steemit/0.1"}
created2017-01-12 08:15:21
last_update2017-01-12 08:15:21
depth1
children1
last_payout2017-02-12 15:37: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_length40
author_reputation52,935,636,369,082
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,226,888
net_rshares22,499,371,968
author_curate_reward""
vote details (1)
@ubg ·
💗
properties (22)
authorubg
permlinkre-bitcoinparadise-re-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170112t163131529z
categoryraspberry
json_metadata{"tags":["raspberry"],"app":"steemit/0.1"}
created2017-01-12 16:31:30
last_update2017-01-12 16:31:30
depth2
children0
last_payout2017-02-12 15:37: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_length1
author_reputation5,237,585,248,428
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,229,527
net_rshares0
@bluehorseshoe ·
Nice job and I have all the parts needed.
properties (22)
authorbluehorseshoe
permlinkre-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170112t003118272z
categoryraspberry
json_metadata{"tags":["raspberry"],"app":"steemit/0.1"}
created2017-01-12 00:31:27
last_update2017-01-12 00:31:27
depth1
children0
last_payout2017-02-12 15:37: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_length41
author_reputation9,766,510,656,462
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,224,797
net_rshares0
@brianphobos ·
$0.03
That is boss level!  Just think.....that little Raspberry Pi could curate and probably stake some other coins at the same time.  I'm not going to have time for the project but I think it would be cool if someone built a miniature DIY Tesla power wall and had a solar panel hooked up and ran a setup like this just to curate and stake coins.
👍  ,
properties (23)
authorbrianphobos
permlinkre-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170112t021948029z
categoryraspberry
json_metadata{"tags":["raspberry"],"app":"steemit/0.1"}
created2017-01-12 02:19:48
last_update2017-01-12 02:19:48
depth1
children1
last_payout2017-02-12 15:37:15
cashout_time1969-12-31 23:59:59
total_payout_value0.025 HBD
curator_payout_value0.008 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length340
author_reputation170,786,814,308,277
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,225,353
net_rshares1,175,520,443,196
author_curate_reward""
vote details (2)
@ubg ·
$0.03
Yea, you can run rokos to stake the coins at the same time
http://rokos.space/core.html
👍  , ,
properties (23)
authorubg
permlinkre-brianphobos-re-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170112t022201335z
categoryraspberry
json_metadata{"tags":["raspberry"],"links":["http://rokos.space/core.html"],"app":"steemit/0.1"}
created2017-01-12 02:22:00
last_update2017-01-12 02:22:00
depth2
children0
last_payout2017-02-12 15:37:15
cashout_time1969-12-31 23:59:59
total_payout_value0.025 HBD
curator_payout_value0.008 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length87
author_reputation5,237,585,248,428
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,225,361
net_rshares1,178,707,769,886
author_curate_reward""
vote details (3)
@csakura ·
This is dope, I have a Pi 2B sitting around collecting dust. Time to put that joint back to work.
properties (22)
authorcsakura
permlinkre-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170915t193230185z
categoryraspberry
json_metadata{"tags":["raspberry"],"app":"steemit/0.1"}
created2017-09-15 19:32:54
last_update2017-09-15 19:32:54
depth1
children0
last_payout2017-09-22 19: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_length97
author_reputation221,537,266,844
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id14,996,844
net_rshares0
@gamemylife ·
Hi @ubg does this project is still working ? I do everything what you show in this article , but when I go to step 11 and I am writing commend "screen python3 bot.py" to run this bot, but  it doesn't work. Tell me, do I need to use ssh bitvise,  or can I enter these commands directly from step 6 in the raspbberry terminal, without using ssh bitvise from windows?
properties (22)
authorgamemylife
permlinkre-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20180519t110110584z
categoryraspberry
json_metadata{"tags":["raspberry"],"community":"busy","app":"busy/2.4.0"}
created2018-05-19 11:01:12
last_update2018-05-19 11:01:12
depth1
children1
last_payout2018-05-26 11:01: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_length365
author_reputation108,236,609,368
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id56,527,548
net_rshares0
@gamemylife ·
@ubg when I am entering the commad " screen python3 bot.py" in raspberry pi3 terminal it shows me " screen is terminating" and nothing goes on ? Tell me what should I do ?
properties (22)
authorgamemylife
permlinkre-gamemylife-re-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20180519t111720403z
categoryraspberry
json_metadata{"tags":["raspberry"],"community":"busy","app":"busy/2.4.0"}
created2018-05-19 11:17:21
last_update2018-05-19 11:17:21
depth2
children0
last_payout2018-05-26 11:17: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_length172
author_reputation108,236,609,368
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id56,529,408
net_rshares0
@gluk73 ·
Amazing! )))))))))
properties (22)
authorgluk73
permlinkre-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170926t212749898z
categoryraspberry
json_metadata{"tags":["raspberry"],"app":"steemit/0.1"}
created2017-09-26 21:27:48
last_update2017-09-26 21:27:48
depth1
children0
last_payout2017-10-03 21:27:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length18
author_reputation229,362,718
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,022,574
net_rshares0
@gregario · (edited)
This is so exciting. But I am completely lost. From my first reading I get this card is similar to an Arduino. So here goes my first question:

Can I use an old Arduino card for this purpose, with these instructions? I bought one once, and almost never used it. I did some childish tests with a breadboard.

Second question: Can I use a computer instead of a usb card like these? Why is this type of hardtware required? Or is it just that it is cheaper than a computer?

Thank you very much for the article and for any comments on simpler stuff I can read, more elementary things to get started.

And excuse the silly questions :-)
properties (22)
authorgregario
permlinkre-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170711t222127489z
categoryraspberry
json_metadata{"tags":["raspberry"],"app":"steemit/0.1"}
created2017-07-11 22:20:33
last_update2017-07-11 22:27:06
depth1
children0
last_payout2017-07-18 22:20:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length631
author_reputation2,753,780,591,955
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,161,388
net_rshares0
@grey580 ·
I have an issue. The BroadcastingError will no import.
Not sure what the problem is. I did this with the latest version of steem-piston. Could be that's broken now in the latest version.

Traceback (most recent call last):
File "bot.py", line 9, in module
from steem.steem import BroadcastingError
ImportError: cannot import name 'BroadcastingError'
properties (22)
authorgrey580
permlinkre-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170205t165407897z
categoryraspberry
json_metadata{"tags":["raspberry"],"app":"steemit/0.1"}
created2017-02-05 16:54:09
last_update2017-02-05 16:54:09
depth1
children4
last_payout2017-02-12 15:37: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_length349
author_reputation11,869,709,267,081
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,429,628
net_rshares0
@ubg ·
instead of installing steem-piston, you may try to install python-steem with the following command:
#
    pip3 install steem==0.3.1
I found that the 0.4 version of steem-piston broke all of my scripts, now I download version 0.3.1 of python steem. That does the job for me.
👍  
properties (23)
authorubg
permlinkre-grey580-re-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170205t182335051z
categoryraspberry
json_metadata{"tags":["raspberry"],"app":"steemit/0.1"}
created2017-02-05 18:23:27
last_update2017-02-05 18:23:27
depth2
children3
last_payout2017-02-12 15:37: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_length273
author_reputation5,237,585,248,428
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,430,333
net_rshares18,646,648,779
author_curate_reward""
vote details (1)
@grey580 ·
do you suggest uninstalling steem-piston?
properties (22)
authorgrey580
permlinkre-ubg-re-grey580-re-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170205t182815400z
categoryraspberry
json_metadata{"tags":["raspberry"],"app":"steemit/0.1"}
created2017-02-05 18:28:15
last_update2017-02-05 18:28:15
depth3
children0
last_payout2017-02-12 15:37: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_length41
author_reputation11,869,709,267,081
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,430,362
net_rshares0
@grey580 · (edited)
hrmm..... had to uninstall the version I had of steem to get it to work.
pip3 uninstall steem=0.4.3

i think It's working noow
properties (22)
authorgrey580
permlinkre-ubg-re-grey580-re-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170205t183239635z
categoryraspberry
json_metadata{"tags":["raspberry"],"app":"steemit/0.1"}
created2017-02-05 18:32:39
last_update2017-02-05 18:35:30
depth3
children1
last_payout2017-02-12 15:37: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_length126
author_reputation11,869,709,267,081
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,430,379
net_rshares0
@jessamynorchard ·
Amazing information. Thank you for sharing it with us.
properties (22)
authorjessamynorchard
permlinkre-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170112t005929538z
categoryraspberry
json_metadata{"tags":["raspberry"],"app":"steemit/0.1"}
created2017-01-12 00:59:30
last_update2017-01-12 00:59:30
depth1
children0
last_payout2017-02-12 15:37: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_length54
author_reputation64,672,452,021,015
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,224,950
net_rshares0
@justfunny ·
I need your help.. :( I cant connect to my rasperry pi 3 model b via SSH and i dont know why.
properties (22)
authorjustfunny
permlinkre-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170910t151850744z
categoryraspberry
json_metadata{"tags":["raspberry"],"app":"steemit/0.1"}
created2017-09-10 15:19:24
last_update2017-09-10 15:19:24
depth1
children0
last_payout2017-09-17 15:19: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_length93
author_reputation173,388,233
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id14,465,460
net_rshares0
@lovejoy ·
This is great! :)
properties (22)
authorlovejoy
permlinkre-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170113t221149789z
categoryraspberry
json_metadata{"tags":["raspberry"],"app":"steemit/0.1"}
created2017-01-13 22:11:51
last_update2017-01-13 22:11:51
depth1
children0
last_payout2017-02-12 15:37: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_length17
author_reputation53,556,731,007,030
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,240,135
net_rshares0
@maronfive5x ·
Good idea, I have to try this, I've got Raspberry Pi 3 , really good information for me, cause I am new on steemit :)
properties (22)
authormaronfive5x
permlinkre-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20180515t065626237z
categoryraspberry
json_metadata{"tags":["raspberry"],"community":"busy","app":"busy/2.4.0"}
created2018-05-15 06:56:27
last_update2018-05-15 06:56:27
depth1
children0
last_payout2018-05-22 06:56: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_length117
author_reputation997,005,199,942
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id55,774,529
net_rshares0
@matrixdweller · (edited)
I am getting index out of range at line 14 of the bot scrip V = rows[0] ??
👍  
properties (23)
authormatrixdweller
permlinkre-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170113t191003178z
categoryraspberry
json_metadata{"tags":["raspberry"],"app":"steemit/0.1"}
created2017-01-13 19:10:15
last_update2017-01-13 19:26:57
depth1
children4
last_payout2017-02-12 15:37: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_length74
author_reputation-29,653,420,748,873
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,238,715
net_rshares28,736,087,490
author_curate_reward""
vote details (1)
@ubg · (edited)
Try fyrstikkens original script, or felixes updated one. see if those work.
https://steemit.com/socialist-bot/@fyrstikken/the-anonymous-winfrey-bot-upvotes-for-everyone-download-here-easy-steps-for-n00bs
https://steemit.com/piston/@felixxx/learning-python-with-steem-the-winfrey-bot

Hit me up on rocket chat, I'm @ubg there
properties (22)
authorubg
permlinkre-matrixdweller-re-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170113t193013411z
categoryraspberry
json_metadata{"tags":["raspberry"],"links":["https://steemit.com/socialist-bot/@fyrstikken/the-anonymous-winfrey-bot-upvotes-for-everyone-download-here-easy-steps-for-n00bs","https://steemit.com/piston/@felixxx/learning-python-with-steem-the-winfrey-bot"],"app":"steemit/0.1","users":["ubg"]}
created2017-01-13 19:30:15
last_update2017-01-13 19:31:48
depth2
children3
last_payout2017-02-12 15:37: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_length324
author_reputation5,237,585,248,428
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,238,881
net_rshares0
@matrixdweller · (edited)
Just Fixed it by deleting the entire block of code related to the votelist and manually adding in top writers thanks for the feedback though and the awesome tutorial! Thanks to you I got this all done in under a day!
properties (22)
authormatrixdweller
permlinkre-ubg-re-matrixdweller-re-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170113t194312681z
categoryraspberry
json_metadata{"tags":["raspberry"],"app":"steemit/0.1"}
created2017-01-13 19:43:24
last_update2017-01-13 19:43:54
depth3
children2
last_payout2017-02-12 15:37: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_length216
author_reputation-29,653,420,748,873
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,238,957
net_rshares0
@mokluc ·
I love this tutorial. ..I have a pi that im not using im going to try it out. Upvoted, followed,  resteemed
properties (22)
authormokluc
permlinkre-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170112t002544949z
categoryraspberry
json_metadata{"tags":["raspberry"],"app":"steemit/0.1"}
created2017-01-12 00:25:51
last_update2017-01-12 00:25:51
depth1
children0
last_payout2017-02-12 15:37: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_length107
author_reputation42,525,517,127,291
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,224,771
net_rshares0
@rodthrower18 ·
Is this bot still a viable project? I haven't found any new posts on this . I love the idea and would love ti try it out if ut definitely still works.
properties (22)
authorrodthrower18
permlinkre-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20180118t061017429z
categoryraspberry
json_metadata{"tags":["raspberry"],"app":"steemit/0.1"}
created2018-01-18 06:10:21
last_update2018-01-18 06:10:21
depth1
children0
last_payout2018-01-25 06:10: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_length150
author_reputation104,840,677,951
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id30,329,031
net_rshares0
@rschenk ·
Awesome, thanks!
properties (22)
authorrschenk
permlinkre-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170113t044246433z
categoryraspberry
json_metadata{"tags":["raspberry"],"app":"steemit/0.1"}
created2017-01-13 04:42:48
last_update2017-01-13 04:42:48
depth1
children0
last_payout2017-02-12 15:37: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_length16
author_reputation179,953,524,713
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,234,194
net_rshares0
@rustacoin ·
WELL DONE SIR!
properties (22)
authorrustacoin
permlinkre-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170630t200709288z
categoryraspberry
json_metadata{"tags":["raspberry"],"app":"steemit/0.1"}
created2017-06-30 20:07:09
last_update2017-06-30 20:07:09
depth1
children0
last_payout2017-07-07 20:07:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length14
author_reputation60,224,871,263
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,805,821
net_rshares0
@screenname ·
Re: How to set up a curation bot on raspberry pi
<p>This post has been ranked within the top 80 most undervalued posts in the second half of Jan 11. We estimate that this post is undervalued by $5.98 as compared to a scenario in which every voter had an equal say.</p> 
<p>See the full rankings and details in <a href="https://steemit.com/curation/@screenname/the-daily-tribune-most-undervalued-posts-of-jan-11---part-ii">The Daily Tribune: Jan 11 - Part II</a>. You can also read about some of our methodology, data analysis and technical details in <a href="https://steemit.com/curation/@screenname/introducing-the-daily-tribune-most-undervalued-posts-of-nov-04---part-i">our initial post</a>.</p>
<p>If you are the author and would prefer not to receive these comments, simply reply "Stop" to this comment.</p>
properties (22)
authorscreenname
permlinkre-how-to-set-up-a-curation-bot-on-raspberry-pi-20170112t012515
categoryraspberry
json_metadata"{"replyto": "@ubg/how-to-set-up-a-curation-bot-on-raspberry-pi"}"
created2017-01-12 01:25:15
last_update2017-01-12 01:25:15
depth1
children0
last_payout2017-02-12 15:37: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_length765
author_reputation46,276,338,038,330
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,225,104
net_rshares0
@slorunner ·
late reply :D i saw your bot upvoting my post :D and yeah i run kinda the same bot (i own raspberry pi B+ and raspberry pi 2 B+) both of them are capable of curating i think :) nice post :)
properties (22)
authorslorunner
permlinkre-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170419t183055764z
categoryraspberry
json_metadata{"tags":["raspberry"],"app":"steemit/0.1"}
created2017-04-19 18:30:57
last_update2017-04-19 18:30:57
depth1
children3
last_payout2017-04-26 18:30: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_length189
author_reputation74,989,825,849
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id3,054,919
net_rshares0
@ubg ·
Drphil?
properties (22)
authorubg
permlinkre-slorunner-re-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170419t211353308z
categoryraspberry
json_metadata{"tags":["raspberry"],"app":"steemit/0.1"}
created2017-04-19 21:13:48
last_update2017-04-19 21:13:48
depth2
children2
last_payout2017-04-26 21:13: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_length7
author_reputation5,237,585,248,428
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id3,056,365
net_rshares0
@slorunner ·
?
properties (22)
authorslorunner
permlinkre-ubg-re-slorunner-re-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170422t114449752z
categoryraspberry
json_metadata{"tags":["raspberry"],"app":"steemit/0.1"}
created2017-04-22 11:44:57
last_update2017-04-22 11:44:57
depth3
children1
last_payout2017-04-29 11:44: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_length1
author_reputation74,989,825,849
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id3,080,640
net_rshares0
@snake-plissken ·
$0.04
Carolina Reapers.  Haha!
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 936 others
properties (23)
authorsnake-plissken
permlinkre-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170121t220316205z
categoryraspberry
json_metadata{"tags":["raspberry"],"app":"steemit/0.1"}
created2017-01-23 22:04:54
last_update2017-01-23 22:04:54
depth1
children2
last_payout2017-02-12 15:37:15
cashout_time1969-12-31 23:59:59
total_payout_value0.039 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length24
author_reputation26,543,613,068
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,324,660
net_rshares992,304,019,944
author_curate_reward""
vote details (1000)
@pfunk ·
$2.75
noganoo !cheetah ban
👍  ,
properties (23)
authorpfunk
permlinkre-snake-plissken-re-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20180226t051501260z
categoryraspberry
json_metadata{"tags":["raspberry"],"app":"steemit/0.1"}
created2018-02-26 05:14:30
last_update2018-02-26 05:14:30
depth2
children1
last_payout2018-03-05 05:14:30
cashout_time1969-12-31 23:59:59
total_payout_value2.748 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length20
author_reputation221,632,045,904,452
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id40,505,767
net_rshares488,416,058,377
author_curate_reward""
vote details (2)
@cheetah ·
Okay, I have banned @snake-plissken.
properties (22)
authorcheetah
permlinkcheetah-re-pfunkre-snake-plissken-re-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20180226t051501260z
categoryraspberry
json_metadata""
created2018-02-26 05:15:09
last_update2018-02-26 05:15:09
depth3
children0
last_payout2018-03-05 05:15:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length36
author_reputation942,693,160,055,713
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id40,505,882
net_rshares0
@spin ·
$0.04
Twist and shout!
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 936 others
properties (23)
authorspin
permlinkre-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170121t222252318z
categoryraspberry
json_metadata{"tags":["raspberry"],"app":"steemit/0.1"}
created2017-01-23 22:24:30
last_update2017-01-23 22:24:30
depth1
children3
last_payout2017-02-12 15:37:15
cashout_time1969-12-31 23:59:59
total_payout_value0.039 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length16
author_reputation15,556,352,216
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,324,804
net_rshares996,029,722,924
author_curate_reward""
vote details (1000)
@kingfisher ·
$0.29
how the hell did you make 2000 accounts...
👍  ,
properties (23)
authorkingfisher
permlinkre-spin-re-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170922t190623851z
categoryraspberry
json_metadata{"tags":["raspberry"],"app":"steemit/0.1"}
created2017-09-22 19:06:24
last_update2017-09-22 19:06:24
depth2
children0
last_payout2017-09-29 19:06:24
cashout_time1969-12-31 23:59:59
total_payout_value0.217 HBD
curator_payout_value0.070 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length42
author_reputation4,767,345,866
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id15,644,630
net_rshares99,354,740,262
author_curate_reward""
vote details (2)
@pfunk ·
$2.75
noganoo !cheetah ban
👍  ,
properties (23)
authorpfunk
permlinkre-spin-re-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20180226t051347058z
categoryraspberry
json_metadata{"tags":["raspberry"],"app":"steemit/0.1"}
created2018-02-26 05:13:18
last_update2018-02-26 05:13:18
depth2
children1
last_payout2018-03-05 05:13:18
cashout_time1969-12-31 23:59:59
total_payout_value2.744 HBD
curator_payout_value0.003 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length20
author_reputation221,632,045,904,452
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id40,505,577
net_rshares488,415,309,084
author_curate_reward""
vote details (2)
@cheetah ·
Okay, I have banned @spin.
properties (22)
authorcheetah
permlinkcheetah-re-pfunkre-spin-re-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20180226t051347058z
categoryraspberry
json_metadata""
created2018-02-26 05:13:45
last_update2018-02-26 05:13:45
depth3
children0
last_payout2018-03-05 05:13: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_length26
author_reputation942,693,160,055,713
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id40,505,650
net_rshares0
@steemtrail ·
$0.86
Hello @ubg, 

Congratulations! Your post has been chosen by the communities of SteemTrail as one of our top picks today.

Also, as a selection for being a top pick today, you have been [awarded a TRAIL token for your participation](https://discord.gg/w4sdqkS) on our innovative platform...STEEM.
[Please visit SteemTrail](https://discord.gg/w4sdqkS) to get instructions on how to claim your TRAIL token today.

If you wish to [learn more about receiving additional TRAIL tokens and SteemTrail](https://discord.gg/w4sdqkS), stop by and chat with us.
 

Happy TRAIL!
http://i.imgur.com/vs9Ai7I.png
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 52 others
properties (23)
authorsteemtrail
permlinkre-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170112t234035927z
categoryraspberry
json_metadata{"tags":["raspberry"],"users":["ubg"],"image":["http://i.imgur.com/vs9Ai7I.png"],"links":["https://discord.gg/w4sdqkS"],"app":"steemit/0.1"}
created2017-01-12 23:40:48
last_update2017-01-12 23:40:48
depth1
children0
last_payout2017-02-12 15:37:15
cashout_time1969-12-31 23:59:59
total_payout_value0.843 HBD
curator_payout_value0.021 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length595
author_reputation263,209,530,304,931
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,232,660
net_rshares10,376,965,021,863
author_curate_reward""
vote details (116)
@steemville ·
$0.04
properties (23)
authorsteemville
permlinkre-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170121t221919677z
categoryraspberry
json_metadata{"tags":["raspberry"],"app":"steemit/0.1"}
created2017-01-23 22:21:00
last_update2017-01-23 22:21:00
depth1
children2
last_payout2017-02-12 15:37:15
cashout_time1969-12-31 23:59:59
total_payout_value0.039 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length6
author_reputation15,508,193,959
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,324,777
net_rshares992,947,594,392
author_curate_reward""
vote details (1000)
@pfunk ·
$2.75
noganoo !cheetah ban
👍  ,
properties (23)
authorpfunk
permlinkre-steemville-re-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20180226t051432464z
categoryraspberry
json_metadata{"tags":["raspberry"],"app":"steemit/0.1"}
created2018-02-26 05:14:03
last_update2018-02-26 05:14:03
depth2
children1
last_payout2018-03-05 05:14:03
cashout_time1969-12-31 23:59:59
total_payout_value2.748 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length20
author_reputation221,632,045,904,452
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id40,505,693
net_rshares488,416,058,377
author_curate_reward""
vote details (2)
@cheetah ·
Okay, I have banned @steemville.
properties (22)
authorcheetah
permlinkcheetah-re-pfunkre-steemville-re-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20180226t051432464z
categoryraspberry
json_metadata""
created2018-02-26 05:14:48
last_update2018-02-26 05:14:48
depth3
children0
last_payout2018-03-05 05:14: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_length32
author_reputation942,693,160,055,713
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id40,505,819
net_rshares0
@steevc ·
I'll be trying this with my Pi Zero. I plan to have that showing my notifications for Steemit on a scrolling LED display. I'll publish the code for that when I do. I'll put it on Github. Can use a separate file for passwords so they don't get shared in the code.
👍  ,
properties (23)
authorsteevc
permlinkre-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170113t144537282z
categoryraspberry
json_metadata{"tags":["raspberry"],"app":"steemit/0.1"}
created2017-01-13 14:45:36
last_update2017-01-13 14:45:36
depth1
children1
last_payout2017-02-12 15:37: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_length262
author_reputation1,375,204,661,664,046
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,236,889
net_rshares3,762,048,439
author_curate_reward""
vote details (2)
@ubg ·
Try Felixes updated script, he has accounts and passwords separated from the code.
https://steemit.com/piston/@felixxx/learning-python-with-steem-the-winfrey-bot
👍  ,
properties (23)
authorubg
permlinkre-steevc-re-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170113t193050631z
categoryraspberry
json_metadata{"tags":["raspberry"],"links":["https://steemit.com/piston/@felixxx/learning-python-with-steem-the-winfrey-bot"],"app":"steemit/0.1"}
created2017-01-13 19:30:51
last_update2017-01-13 19:30:51
depth2
children0
last_payout2017-02-12 15:37: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_length161
author_reputation5,237,585,248,428
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,238,884
net_rshares14,223,532,593
author_curate_reward""
vote details (2)
@stellabelle ·
this is an amazing tutorial.
properties (22)
authorstellabelle
permlinkre-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170111t222632093z
categoryraspberry
json_metadata{"tags":["raspberry"]}
created2017-01-11 22:26:30
last_update2017-01-11 22:26:30
depth1
children0
last_payout2017-02-12 15:37: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_length28
author_reputation516,061,669,130,124
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,223,984
net_rshares0
@stellabelle ·
$0.04
will this work on a mac?
👍  , ,
properties (23)
authorstellabelle
permlinkre-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170111t223313224z
categoryraspberry
json_metadata{"tags":["raspberry"]}
created2017-01-11 22:33:12
last_update2017-01-11 22:33:12
depth1
children4
last_payout2017-02-12 15:37:15
cashout_time1969-12-31 23:59:59
total_payout_value0.027 HBD
curator_payout_value0.008 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length24
author_reputation516,061,669,130,124
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,224,035
net_rshares1,210,011,420,564
author_curate_reward""
vote details (3)
@ubg · (edited)
$0.03
Yes, just paste the commands in the terminal. 
Just to do steps 6, 7, 8, 9 and 11
👍  ,
properties (23)
authorubg
permlinkre-stellabelle-re-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170111t223811546z
categoryraspberry
json_metadata{"tags":["raspberry"],"app":"steemit/0.1"}
created2017-01-11 22:38:12
last_update2017-01-11 22:43:45
depth2
children3
last_payout2017-02-12 15:37:15
cashout_time1969-12-31 23:59:59
total_payout_value0.025 HBD
curator_payout_value0.008 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length81
author_reputation5,237,585,248,428
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,224,079
net_rshares1,175,520,443,196
author_curate_reward""
vote details (2)
@stellabelle ·
what about the other steps?
Hmm....when I decide to tackle this, how can i reach you? are you in steemit chat a lot?
properties (22)
authorstellabelle
permlinkre-ubg-re-stellabelle-re-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170111t225305025z
categoryraspberry
json_metadata{"tags":["raspberry"],"app":"steemit/0.1"}
created2017-01-11 22:53:03
last_update2017-01-11 22:53:03
depth3
children2
last_payout2017-02-12 15:37: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_length116
author_reputation516,061,669,130,124
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,224,182
net_rshares0
@stellabelle ·
wait, so i have to be running linux, right? it won't work with a mac?
properties (22)
authorstellabelle
permlinkre-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170111t223559676z
categoryraspberry
json_metadata{"tags":["raspberry"]}
created2017-01-11 22:36:00
last_update2017-01-11 22:36:00
depth1
children0
last_payout2017-02-12 15:37: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_length69
author_reputation516,061,669,130,124
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,224,056
net_rshares0
@stellabelle ·
look at you! you got some whale love!
properties (22)
authorstellabelle
permlinkre-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170112t190816789z
categoryraspberry
json_metadata{"tags":["raspberry"],"app":"steemit/0.1"}
created2017-01-12 19:08:15
last_update2017-01-12 19:08:15
depth1
children0
last_payout2017-02-12 15:37: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_length37
author_reputation516,061,669,130,124
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,230,667
net_rshares0
@tai-euler ·
$0.03
dude, there are problems with that piston. Does this code still works? I wrote a different bot in python with the selenium framework(browser automation framework).
👍  
properties (23)
authortai-euler
permlinkre-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170818t221802090z
categoryraspberry
json_metadata{"tags":["raspberry"],"app":"steemit/0.1"}
created2017-08-18 22:15:09
last_update2017-08-18 22:15:09
depth1
children0
last_payout2017-08-25 22:15:09
cashout_time1969-12-31 23:59:59
total_payout_value0.034 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length163
author_reputation923,685,730,441
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,213,262
net_rshares10,442,629,537
author_curate_reward""
vote details (1)
@tawnie ·
$0.04
Fine and good.
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 936 others
properties (23)
authortawnie
permlinkre-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170121t213642761z
categoryraspberry
json_metadata{"tags":["raspberry"],"app":"steemit/0.1"}
created2017-01-23 21:38:21
last_update2017-01-23 21:38:21
depth1
children2
last_payout2017-02-12 15:37:15
cashout_time1969-12-31 23:59:59
total_payout_value0.039 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length14
author_reputation15,511,642,077
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,324,438
net_rshares993,168,273,906
author_curate_reward""
vote details (1000)
@pfunk ·
$2.75
noganoo !cheetah ban
👍  ,
properties (23)
authorpfunk
permlinkre-tawnie-re-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20180226t051521076z
categoryraspberry
json_metadata{"tags":["raspberry"],"app":"steemit/0.1"}
created2018-02-26 05:14:51
last_update2018-02-26 05:14:51
depth2
children1
last_payout2018-03-05 05:14:51
cashout_time1969-12-31 23:59:59
total_payout_value2.724 HBD
curator_payout_value0.023 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length20
author_reputation221,632,045,904,452
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id40,505,825
net_rshares488,417,556,963
author_curate_reward""
vote details (2)
@cheetah ·
Okay, I have banned @tawnie.
properties (22)
authorcheetah
permlinkcheetah-re-pfunkre-tawnie-re-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20180226t051521076z
categoryraspberry
json_metadata""
created2018-02-26 05:15:51
last_update2018-02-26 05:15:51
depth3
children0
last_payout2018-03-05 05:15: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_length28
author_reputation942,693,160,055,713
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id40,506,003
net_rshares0
@the-steem-store ·
# Not only do I now follow you but would you like work?

Thank you for posting such a helpful article.
@The-Steem-Store
properties (22)
authorthe-steem-store
permlinkre-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170114t022433879z
categoryraspberry
json_metadata{"tags":["raspberry"],"users":["the-steem-store"],"app":"steemit/0.1"}
created2017-01-14 02:24:33
last_update2017-01-14 02:24:33
depth1
children2
last_payout2017-02-12 15:37: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_length119
author_reputation79,767,404,757
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,241,771
net_rshares0
@ubg · (edited)
What kind of work are you talking about?
properties (22)
authorubg
permlinkre-the-steem-store-re-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170114t031344133z
categoryraspberry
json_metadata{"tags":["raspberry"],"app":"steemit/0.1"}
created2017-01-14 03:13:45
last_update2017-01-14 03:22:15
depth2
children1
last_payout2017-02-12 15:37: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_length40
author_reputation5,237,585,248,428
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,241,987
net_rshares0
@the-steem-store ·
Making a bot to help automate a middleman service.

The idea, would be to connect users who need things, to users who can ship them.

After an arrangement is made, users can pay @The-Steem-Store in STEEM to receive their item after delivery. When payment to this account is made, the bot would make a post calling for the delivery of the goods.

When the delivery is complete the payment will be past onto the user who delivered the goods.

Sorry for the late response,
properties (22)
authorthe-steem-store
permlinkre-ubg-re-the-steem-store-re-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170118t013252828z
categoryraspberry
json_metadata{"tags":["raspberry"],"users":["the-steem-store"],"app":"steemit/0.1"}
created2017-01-18 01:33:15
last_update2017-01-18 01:33:15
depth3
children0
last_payout2017-02-12 15:37: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_length469
author_reputation79,767,404,757
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,275,405
net_rshares0
@tinder ·
$0.04
What a sizzling hot article.
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 936 others
properties (23)
authortinder
permlinkre-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170121t222147924z
categoryraspberry
json_metadata{"tags":["raspberry"],"app":"steemit/0.1"}
created2017-01-23 22:23:27
last_update2017-01-23 22:23:27
depth1
children2
last_payout2017-02-12 15:37:15
cashout_time1969-12-31 23:59:59
total_payout_value0.039 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length28
author_reputation15,541,339,089
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,324,794
net_rshares995,068,882,653
author_curate_reward""
vote details (1000)
@pfunk ·
$2.75
noganoo !cheetah ban
👍  ,
properties (23)
authorpfunk
permlinkre-tinder-re-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20180226t051408811z
categoryraspberry
json_metadata{"tags":["raspberry"],"app":"steemit/0.1"}
created2018-02-26 05:13:39
last_update2018-02-26 05:13:39
depth2
children1
last_payout2018-03-05 05:13:39
cashout_time1969-12-31 23:59:59
total_payout_value2.748 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length20
author_reputation221,632,045,904,452
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id40,505,628
net_rshares488,416,058,377
author_curate_reward""
vote details (2)
@cheetah ·
Okay, I have banned @tinder.
properties (22)
authorcheetah
permlinkcheetah-re-pfunkre-tinder-re-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20180226t051408811z
categoryraspberry
json_metadata""
created2018-02-26 05:14:06
last_update2018-02-26 05:14:06
depth3
children0
last_payout2018-03-05 05:14: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_length28
author_reputation942,693,160,055,713
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id40,505,706
net_rshares0
@tomole ·
I am getting this error pls help :( :

Traceback (most recent call last):
  File "bot.py", line 1, in module
    from steem.steem import Steem
👍  
properties (23)
authortomole
permlinkre-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20180228t223914819z
categoryraspberry
json_metadata{"tags":["raspberry"],"app":"steemit/0.1"}
created2018-02-28 22:39:15
last_update2018-02-28 22:39:15
depth1
children0
last_payout2018-03-07 22:39: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_length142
author_reputation5,424,539,072
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id41,233,889
net_rshares583,964,862
author_curate_reward""
vote details (1)
@xanoxt ·
Nice. :-)
properties (22)
authorxanoxt
permlinkre-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170111t211741255z
categoryraspberry
json_metadata{"tags":["raspberry"]}
created2017-01-11 21:17:54
last_update2017-01-11 21:17:54
depth1
children0
last_payout2017-02-12 15:37: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_length9
author_reputation10,372,528,584,107
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,223,469
net_rshares0
@zentat ·
Awesome!!
properties (22)
authorzentat
permlinkre-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170113t173816877z
categoryraspberry
json_metadata{"tags":["raspberry"],"app":"steemit/0.1"}
created2017-01-13 17:38:15
last_update2017-01-13 17:38:15
depth1
children0
last_payout2017-02-12 15:37: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_length9
author_reputation2,980,385,569,111
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,238,081
net_rshares0