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

View this thread on steempeak.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 339 others
properties (23)
post_id1,737,653
authorubg
permlinkhow-to-set-up-a-curation-bot-on-raspberry-pi
categoryraspberry
json_metadata"{"format": "markdown", "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", "tags": ["raspberry", "pi", "curation", "bot"], "users": ["fyrstikken", "ubg", "noganoo"], "image": ["https://i.imgur.com/fD12skM.png"]}"
created2017-01-11 21:13:54
last_update2017-01-26 20:23:33
depth0
children70
net_rshares89,421,566,867,354
last_payout2017-02-12 15:37:15
cashout_time1969-12-31 23:59:59
total_payout_value36.314 SBD
curator_payout_value10.352 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length8,388
author_reputation4,960,843,831,430
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (403)
@xanoxt ·
Nice. :-)
properties (22)
post_id1,737,681
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
net_rshares0
last_payout2017-02-12 15:37:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length9
author_reputation10,364,671,822,779
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@applecrisp · (edited)
Thanks for the detailed tutorial!
👍  
properties (23)
post_id1,738,032
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
net_rshares3,187,326,690
last_payout2017-02-12 15:37:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length33
author_reputation2,825,602,792,544
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@stellabelle ·
this is an amazing tutorial.
properties (22)
post_id1,738,119
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
net_rshares0
last_payout2017-02-12 15:37:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length28
author_reputation436,515,832,240,166
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@stellabelle ·
$0.04
will this work on a mac?
👍  , ,
properties (23)
post_id1,738,165
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
net_rshares1,210,011,420,564
last_payout2017-02-12 15:37:15
cashout_time1969-12-31 23:59:59
total_payout_value0.027 SBD
curator_payout_value0.008 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length24
author_reputation436,515,832,240,166
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
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)
post_id1,738,204
authorubg
permlinkre-stellabelle-re-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170111t223811546z
categoryraspberry
json_metadata"{"app": "steemit/0.1", "tags": ["raspberry"]}"
created2017-01-11 22:38:12
last_update2017-01-11 22:43:45
depth2
children3
net_rshares1,175,520,443,196
last_payout2017-02-12 15:37:15
cashout_time1969-12-31 23:59:59
total_payout_value0.025 SBD
curator_payout_value0.008 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length81
author_reputation4,960,843,831,430
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
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)
post_id1,738,295
authorstellabelle
permlinkre-ubg-re-stellabelle-re-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170111t225305025z
categoryraspberry
json_metadata"{"app": "steemit/0.1", "tags": ["raspberry"]}"
created2017-01-11 22:53:03
last_update2017-01-11 22:53:03
depth3
children2
net_rshares0
last_payout2017-02-12 15:37:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length116
author_reputation436,515,832,240,166
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@stellabelle ·
wait, so i have to be running linux, right? it won't work with a mac?
properties (22)
post_id1,738,183
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
net_rshares0
last_payout2017-02-12 15:37:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length69
author_reputation436,515,832,240,166
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@mokluc ·
I love this tutorial. ..I have a pi that im not using im going to try it out. Upvoted, followed,  resteemed
properties (22)
post_id1,738,775
authormokluc
permlinkre-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170112t002544949z
categoryraspberry
json_metadata"{"app": "steemit/0.1", "tags": ["raspberry"]}"
created2017-01-12 00:25:51
last_update2017-01-12 00:25:51
depth1
children0
net_rshares0
last_payout2017-02-12 15:37:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length107
author_reputation42,548,954,077,680
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@bluehorseshoe ·
Nice job and I have all the parts needed.
properties (22)
post_id1,738,799
authorbluehorseshoe
permlinkre-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170112t003118272z
categoryraspberry
json_metadata"{"app": "steemit/0.1", "tags": ["raspberry"]}"
created2017-01-12 00:31:27
last_update2017-01-12 00:31:27
depth1
children0
net_rshares0
last_payout2017-02-12 15:37:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length41
author_reputation11,162,919,111,508
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@jessamynorchard ·
Amazing information. Thank you for sharing it with us.
properties (22)
post_id1,738,925
authorjessamynorchard
permlinkre-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170112t005929538z
categoryraspberry
json_metadata"{"app": "steemit/0.1", "tags": ["raspberry"]}"
created2017-01-12 00:59:30
last_update2017-01-12 00:59:30
depth1
children0
net_rshares0
last_payout2017-02-12 15:37:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length54
author_reputation53,292,570,288,120
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@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)
post_id1,739,061
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
net_rshares0
last_payout2017-02-12 15:37:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length765
author_reputation46,297,288,412,649
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@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)
post_id1,739,265
authorbrianphobos
permlinkre-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170112t021948029z
categoryraspberry
json_metadata"{"app": "steemit/0.1", "tags": ["raspberry"]}"
created2017-01-12 02:19:48
last_update2017-01-12 02:19:48
depth1
children1
net_rshares1,175,520,443,196
last_payout2017-02-12 15:37:15
cashout_time1969-12-31 23:59:59
total_payout_value0.025 SBD
curator_payout_value0.008 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length340
author_reputation108,254,122,608,686
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
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)
post_id1,739,273
authorubg
permlinkre-brianphobos-re-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170112t022201335z
categoryraspberry
json_metadata"{"app": "steemit/0.1", "links": ["http://rokos.space/core.html"], "tags": ["raspberry"]}"
created2017-01-12 02:22:00
last_update2017-01-12 02:22:00
depth2
children0
net_rshares1,178,707,769,886
last_payout2017-02-12 15:37:15
cashout_time1969-12-31 23:59:59
total_payout_value0.025 SBD
curator_payout_value0.008 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length87
author_reputation4,960,843,831,430
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (3)
@bitcoinparadise ·
I want to cry...😢 So proud of you @ubg 😋
👍  
properties (23)
post_id1,740,490
authorbitcoinparadise
permlinkre-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170112t081527664z
categoryraspberry
json_metadata"{"app": "steemit/0.1", "users": ["ubg"], "tags": ["raspberry"]}"
created2017-01-12 08:15:21
last_update2017-01-12 08:15:21
depth1
children1
net_rshares22,499,371,968
last_payout2017-02-12 15:37:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length40
author_reputation52,885,100,418,823
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@ubg ·
💗
properties (22)
post_id1,742,672
authorubg
permlinkre-bitcoinparadise-re-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170112t163131529z
categoryraspberry
json_metadata"{"app": "steemit/0.1", "tags": ["raspberry"]}"
created2017-01-12 16:31:30
last_update2017-01-12 16:31:30
depth2
children0
net_rshares0
last_payout2017-02-12 15:37:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length1
author_reputation4,960,843,831,430
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@stellabelle ·
look at you! you got some whale love!
properties (22)
post_id1,743,638
authorstellabelle
permlinkre-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170112t190816789z
categoryraspberry
json_metadata"{"app": "steemit/0.1", "tags": ["raspberry"]}"
created2017-01-12 19:08:15
last_update2017-01-12 19:08:15
depth1
children0
net_rshares0
last_payout2017-02-12 15:37:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length37
author_reputation436,515,832,240,166
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@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)
post_id1,745,282
authorsteemtrail
permlinkre-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170112t234035927z
categoryraspberry
json_metadata"{"links": ["https://discord.gg/w4sdqkS"], "app": "steemit/0.1", "users": ["ubg"], "image": ["http://i.imgur.com/vs9Ai7I.png"], "tags": ["raspberry"]}"
created2017-01-12 23:40:48
last_update2017-01-12 23:40:48
depth1
children0
net_rshares10,376,965,021,863
last_payout2017-02-12 15:37:15
cashout_time1969-12-31 23:59:59
total_payout_value0.843 SBD
curator_payout_value0.021 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length595
author_reputation263,026,799,189,538
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (116)
@rschenk ·
Awesome, thanks!
properties (22)
post_id1,746,540
authorrschenk
permlinkre-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170113t044246433z
categoryraspberry
json_metadata"{"app": "steemit/0.1", "tags": ["raspberry"]}"
created2017-01-13 04:42:48
last_update2017-01-13 04:42:48
depth1
children0
net_rshares0
last_payout2017-02-12 15:37:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length16
author_reputation180,117,352,833
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@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)
post_id1,748,772
authorsteevc
permlinkre-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170113t144537282z
categoryraspberry
json_metadata"{"app": "steemit/0.1", "tags": ["raspberry"]}"
created2017-01-13 14:45:36
last_update2017-01-13 14:45:36
depth1
children1
net_rshares3,762,048,439
last_payout2017-02-12 15:37:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length262
author_reputation273,317,013,544,223
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
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)
post_id1,750,391
authorubg
permlinkre-steevc-re-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170113t193050631z
categoryraspberry
json_metadata"{"app": "steemit/0.1", "links": ["https://steemit.com/piston/@felixxx/learning-python-with-steem-the-winfrey-bot"], "tags": ["raspberry"]}"
created2017-01-13 19:30:51
last_update2017-01-13 19:30:51
depth2
children0
net_rshares14,223,532,593
last_payout2017-02-12 15:37:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length161
author_reputation4,960,843,831,430
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (2)
@zentat ·
Awesome!!
properties (22)
post_id1,749,712
authorzentat
permlinkre-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170113t173816877z
categoryraspberry
json_metadata"{"app": "steemit/0.1", "tags": ["raspberry"]}"
created2017-01-13 17:38:15
last_update2017-01-13 17:38:15
depth1
children0
net_rshares0
last_payout2017-02-12 15:37:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length9
author_reputation2,981,566,117,435
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@matrixdweller · (edited)
I am getting index out of range at line 14 of the bot scrip V = rows[0] ??
👍  
properties (23)
post_id1,750,250
authormatrixdweller
permlinkre-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170113t191003178z
categoryraspberry
json_metadata"{"app": "steemit/0.1", "tags": ["raspberry"]}"
created2017-01-13 19:10:15
last_update2017-01-13 19:26:57
depth1
children4
net_rshares28,736,087,490
last_payout2017-02-12 15:37:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length74
author_reputation-29,663,488,391,777
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
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)
post_id1,750,389
authorubg
permlinkre-matrixdweller-re-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170113t193013411z
categoryraspberry
json_metadata"{"app": "steemit/0.1", "users": ["ubg"], "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"], "tags": ["raspberry"]}"
created2017-01-13 19:30:15
last_update2017-01-13 19:31:48
depth2
children3
net_rshares0
last_payout2017-02-12 15:37:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length324
author_reputation4,960,843,831,430
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@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)
post_id1,750,447
authormatrixdweller
permlinkre-ubg-re-matrixdweller-re-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170113t194312681z
categoryraspberry
json_metadata"{"app": "steemit/0.1", "tags": ["raspberry"]}"
created2017-01-13 19:43:24
last_update2017-01-13 19:43:54
depth3
children2
net_rshares0
last_payout2017-02-12 15:37:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length216
author_reputation-29,663,488,391,777
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@lovejoy ·
This is great! :)
properties (22)
post_id1,751,430
authorlovejoy
permlinkre-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170113t221149789z
categoryraspberry
json_metadata"{"app": "steemit/0.1", "tags": ["raspberry"]}"
created2017-01-13 22:11:51
last_update2017-01-13 22:11:51
depth1
children0
net_rshares0
last_payout2017-02-12 15:37:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length17
author_reputation51,549,234,710,828
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@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)
post_id1,752,814
authorthe-steem-store
permlinkre-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170114t022433879z
categoryraspberry
json_metadata"{"app": "steemit/0.1", "users": ["the-steem-store"], "tags": ["raspberry"]}"
created2017-01-14 02:24:33
last_update2017-01-14 02:24:33
depth1
children2
net_rshares0
last_payout2017-02-12 15:37:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length119
author_reputation79,840,311,412
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@ubg · (edited)
What kind of work are you talking about?
properties (22)
post_id1,752,989
authorubg
permlinkre-the-steem-store-re-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170114t031344133z
categoryraspberry
json_metadata"{"app": "steemit/0.1", "tags": ["raspberry"]}"
created2017-01-14 03:13:45
last_update2017-01-14 03:22:15
depth2
children1
net_rshares0
last_payout2017-02-12 15:37:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length40
author_reputation4,960,843,831,430
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@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)
post_id1,780,175
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"{"app": "steemit/0.1", "users": ["the-steem-store"], "tags": ["raspberry"]}"
created2017-01-18 01:33:15
last_update2017-01-18 01:33:15
depth3
children0
net_rshares0
last_payout2017-02-12 15:37:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length469
author_reputation79,840,311,412
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@automaton ·
Good info!
properties (22)
post_id1,770,416
authorautomaton
permlinkre-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170116t192459313z
categoryraspberry
json_metadata"{"app": "steemit/0.1", "tags": ["raspberry"]}"
created2017-01-16 19:25:00
last_update2017-01-16 19:25:00
depth1
children0
net_rshares0
last_payout2017-02-12 15:37:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length10
author_reputation2,803,998,505,223
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@tawnie ·
$0.04
properties (23)
post_id1,820,667
authortawnie
permlinkre-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170121t213642761z
categoryraspberry
json_metadata"{"app": "steemit/0.1", "tags": ["raspberry"]}"
created2017-01-23 21:38:21
last_update2017-01-23 21:38:21
depth1
children2
net_rshares993,168,273,906
last_payout2017-02-12 15:37:15
cashout_time1969-12-31 23:59:59
total_payout_value0.039 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length14
author_reputation15,527,842,277
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (812)
@pfunk ·
$2.75
noganoo !cheetah ban
👍  ,
properties (23)
post_id35,253,994
authorpfunk
permlinkre-tawnie-re-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20180226t051521076z
categoryraspberry
json_metadata"{"app": "steemit/0.1", "tags": ["raspberry"]}"
created2018-02-26 05:14:51
last_update2018-02-26 05:14:51
depth2
children1
net_rshares488,417,556,963
last_payout2018-03-05 05:14:51
cashout_time1969-12-31 23:59:59
total_payout_value2.724 SBD
curator_payout_value0.023 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length20
author_reputation208,395,764,935,287
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (2)
@cheetah ·
Okay, I have banned @tawnie.
properties (22)
post_id35,254,134
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
net_rshares0
last_payout2018-03-05 05:15:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length28
author_reputation750,854,098,279,735
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@snake-plissken ·
$0.04
properties (23)
post_id1,820,840
authorsnake-plissken
permlinkre-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170121t220316205z
categoryraspberry
json_metadata"{"app": "steemit/0.1", "tags": ["raspberry"]}"
created2017-01-23 22:04:54
last_update2017-01-23 22:04:54
depth1
children2
net_rshares992,304,019,944
last_payout2017-02-12 15:37:15
cashout_time1969-12-31 23:59:59
total_payout_value0.039 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length24
author_reputation26,573,235,992
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (812)
@pfunk ·
$2.75
noganoo !cheetah ban
👍  ,
properties (23)
post_id35,253,945
authorpfunk
permlinkre-snake-plissken-re-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20180226t051501260z
categoryraspberry
json_metadata"{"app": "steemit/0.1", "tags": ["raspberry"]}"
created2018-02-26 05:14:30
last_update2018-02-26 05:14:30
depth2
children1
net_rshares488,416,058,377
last_payout2018-03-05 05:14:30
cashout_time1969-12-31 23:59:59
total_payout_value2.748 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length20
author_reputation208,395,764,935,287
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (2)
@cheetah ·
Okay, I have banned @snake-plissken.
properties (22)
post_id35,254,037
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
net_rshares0
last_payout2018-03-05 05:15:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length36
author_reputation750,854,098,279,735
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@steemville ·
$0.04
properties (23)
post_id1,820,943
authorsteemville
permlinkre-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170121t221919677z
categoryraspberry
json_metadata"{"app": "steemit/0.1", "tags": ["raspberry"]}"
created2017-01-23 22:21:00
last_update2017-01-23 22:21:00
depth1
children2
net_rshares992,947,594,392
last_payout2017-02-12 15:37:15
cashout_time1969-12-31 23:59:59
total_payout_value0.039 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length6
author_reputation15,488,166,189
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (813)
@pfunk ·
$2.75
noganoo !cheetah ban
👍  ,
properties (23)
post_id35,253,885
authorpfunk
permlinkre-steemville-re-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20180226t051432464z
categoryraspberry
json_metadata"{"app": "steemit/0.1", "tags": ["raspberry"]}"
created2018-02-26 05:14:03
last_update2018-02-26 05:14:03
depth2
children1
net_rshares488,416,058,377
last_payout2018-03-05 05:14:03
cashout_time1969-12-31 23:59:59
total_payout_value2.748 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length20
author_reputation208,395,764,935,287
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (2)
@cheetah ·
Okay, I have banned @steemville.
properties (22)
post_id35,253,989
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
net_rshares0
last_payout2018-03-05 05:14:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length32
author_reputation750,854,098,279,735
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@tinder ·
$0.04
properties (23)
post_id1,820,956
authortinder
permlinkre-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170121t222147924z
categoryraspberry
json_metadata"{"app": "steemit/0.1", "tags": ["raspberry"]}"
created2017-01-23 22:23:27
last_update2017-01-23 22:23:27
depth1
children2
net_rshares995,068,882,653
last_payout2017-02-12 15:37:15
cashout_time1969-12-31 23:59:59
total_payout_value0.039 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length28
author_reputation15,527,842,277
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (813)
@pfunk ·
$2.75
noganoo !cheetah ban
👍  ,
properties (23)
post_id35,253,828
authorpfunk
permlinkre-tinder-re-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20180226t051408811z
categoryraspberry
json_metadata"{"app": "steemit/0.1", "tags": ["raspberry"]}"
created2018-02-26 05:13:39
last_update2018-02-26 05:13:39
depth2
children1
net_rshares488,416,058,377
last_payout2018-03-05 05:13:39
cashout_time1969-12-31 23:59:59
total_payout_value2.748 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length20
author_reputation208,395,764,935,287
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (2)
@cheetah ·
Okay, I have banned @tinder.
properties (22)
post_id35,253,895
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
net_rshares0
last_payout2018-03-05 05:14:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length28
author_reputation750,854,098,279,735
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@spin ·
$0.04
properties (23)
post_id1,820,962
authorspin
permlinkre-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170121t222252318z
categoryraspberry
json_metadata"{"app": "steemit/0.1", "tags": ["raspberry"]}"
created2017-01-23 22:24:30
last_update2017-01-23 22:24:30
depth1
children3
net_rshares996,029,722,924
last_payout2017-02-12 15:37:15
cashout_time1969-12-31 23:59:59
total_payout_value0.039 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length16
author_reputation15,567,620,005
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (813)
@kingfisher ·
$0.29
how the hell did you make 2000 accounts...
👍  ,
properties (23)
post_id13,508,829
authorkingfisher
permlinkre-spin-re-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170922t190623851z
categoryraspberry
json_metadata"{"app": "steemit/0.1", "tags": ["raspberry"]}"
created2017-09-22 19:06:24
last_update2017-09-22 19:06:24
depth2
children0
net_rshares99,354,740,262
last_payout2017-09-29 19:06:24
cashout_time1969-12-31 23:59:59
total_payout_value0.217 SBD
curator_payout_value0.070 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length42
author_reputation4,786,300,923
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (2)
@pfunk ·
$2.75
noganoo !cheetah ban
👍  ,
properties (23)
post_id35,253,786
authorpfunk
permlinkre-spin-re-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20180226t051347058z
categoryraspberry
json_metadata"{"app": "steemit/0.1", "tags": ["raspberry"]}"
created2018-02-26 05:13:18
last_update2018-02-26 05:13:18
depth2
children1
net_rshares488,415,309,084
last_payout2018-03-05 05:13:18
cashout_time1969-12-31 23:59:59
total_payout_value2.744 SBD
curator_payout_value0.003 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length20
author_reputation208,395,764,935,287
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (2)
@cheetah ·
Okay, I have banned @spin.
properties (22)
post_id35,253,847
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
net_rshares0
last_payout2018-03-05 05:13:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length26
author_reputation750,854,098,279,735
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@appz ·
properties (23)
post_id1,900,436
authorappz
permlinkre-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170204t052845309z
categoryraspberry
json_metadata"{"app": "steemit/0.1", "tags": ["raspberry"]}"
created2017-02-04 09:29:15
last_update2017-02-04 09:29:15
depth1
children0
net_rshares-619,851,995,631
last_payout2017-02-12 15:37:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length59
author_reputation23,865,897,868
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (472)
@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)
post_id1,908,859
authorgrey580
permlinkre-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170205t165407897z
categoryraspberry
json_metadata"{"app": "steemit/0.1", "tags": ["raspberry"]}"
created2017-02-05 16:54:09
last_update2017-02-05 16:54:09
depth1
children4
net_rshares0
last_payout2017-02-12 15:37:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length349
author_reputation11,452,199,077,076
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@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)
post_id1,909,400
authorubg
permlinkre-grey580-re-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170205t182335051z
categoryraspberry
json_metadata"{"app": "steemit/0.1", "tags": ["raspberry"]}"
created2017-02-05 18:23:27
last_update2017-02-05 18:23:27
depth2
children3
net_rshares18,646,648,779
last_payout2017-02-12 15:37:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length273
author_reputation4,960,843,831,430
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@grey580 ·
do you suggest uninstalling steem-piston?
properties (22)
post_id1,909,423
authorgrey580
permlinkre-ubg-re-grey580-re-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170205t182815400z
categoryraspberry
json_metadata"{"app": "steemit/0.1", "tags": ["raspberry"]}"
created2017-02-05 18:28:15
last_update2017-02-05 18:28:15
depth3
children0
net_rshares0
last_payout2017-02-12 15:37:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length41
author_reputation11,452,199,077,076
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@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)
post_id1,909,440
authorgrey580
permlinkre-ubg-re-grey580-re-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170205t183239635z
categoryraspberry
json_metadata"{"app": "steemit/0.1", "tags": ["raspberry"]}"
created2017-02-05 18:32:39
last_update2017-02-05 18:35:30
depth3
children1
net_rshares0
last_payout2017-02-12 15:37:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length126
author_reputation11,452,199,077,076
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@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)
post_id2,428,172
authorslorunner
permlinkre-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170419t183055764z
categoryraspberry
json_metadata"{"app": "steemit/0.1", "tags": ["raspberry"]}"
created2017-04-19 18:30:57
last_update2017-04-19 18:30:57
depth1
children3
net_rshares0
last_payout2017-04-26 18:30:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length189
author_reputation74,893,554,750
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@ubg ·
Drphil?
properties (22)
post_id2,429,396
authorubg
permlinkre-slorunner-re-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170419t211353308z
categoryraspberry
json_metadata"{"app": "steemit/0.1", "tags": ["raspberry"]}"
created2017-04-19 21:13:48
last_update2017-04-19 21:13:48
depth2
children2
net_rshares0
last_payout2017-04-26 21:13:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length7
author_reputation4,960,843,831,430
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@slorunner ·
?
properties (22)
post_id2,449,887
authorslorunner
permlinkre-ubg-re-slorunner-re-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170422t114449752z
categoryraspberry
json_metadata"{"app": "steemit/0.1", "tags": ["raspberry"]}"
created2017-04-22 11:44:57
last_update2017-04-22 11:44:57
depth3
children1
net_rshares0
last_payout2017-04-29 11:44:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length1
author_reputation74,893,554,750
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@rustacoin ·
WELL DONE SIR!
properties (22)
post_id5,705,026
authorrustacoin
permlinkre-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170630t200709288z
categoryraspberry
json_metadata"{"app": "steemit/0.1", "tags": ["raspberry"]}"
created2017-06-30 20:07:09
last_update2017-06-30 20:07:09
depth1
children0
net_rshares0
last_payout2017-07-07 20:07:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length14
author_reputation60,255,958,607
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@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)
post_id6,903,650
authorgregario
permlinkre-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170711t222127489z
categoryraspberry
json_metadata"{"app": "steemit/0.1", "tags": ["raspberry"]}"
created2017-07-11 22:20:33
last_update2017-07-11 22:27:06
depth1
children0
net_rshares0
last_payout2017-07-18 22:20:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length631
author_reputation2,754,228,703,338
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@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)
post_id10,486,424
authortai-euler
permlinkre-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170818t221802090z
categoryraspberry
json_metadata"{"app": "steemit/0.1", "tags": ["raspberry"]}"
created2017-08-18 22:15:09
last_update2017-08-18 22:15:09
depth1
children0
net_rshares10,442,629,537
last_payout2017-08-25 22:15:09
cashout_time1969-12-31 23:59:59
total_payout_value0.034 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length163
author_reputation923,752,348,550
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@justfunny ·
I need your help.. :( I cant connect to my rasperry pi 3 model b via SSH and i dont know why.
properties (22)
post_id12,468,875
authorjustfunny
permlinkre-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170910t151850744z
categoryraspberry
json_metadata"{"app": "steemit/0.1", "tags": ["raspberry"]}"
created2017-09-10 15:19:24
last_update2017-09-10 15:19:24
depth1
children0
net_rshares0
last_payout2017-09-17 15:19:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length93
author_reputation0
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@csakura ·
This is dope, I have a Pi 2B sitting around collecting dust. Time to put that joint back to work.
properties (22)
post_id12,937,361
authorcsakura
permlinkre-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170915t193230185z
categoryraspberry
json_metadata"{"app": "steemit/0.1", "tags": ["raspberry"]}"
created2017-09-15 19:32:54
last_update2017-09-15 19:32:54
depth1
children0
net_rshares0
last_payout2017-09-22 19:32:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length97
author_reputation221,592,754,272
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@gluk73 ·
Amazing! )))))))))
properties (22)
post_id13,842,965
authorgluk73
permlinkre-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170926t212749898z
categoryraspberry
json_metadata"{"app": "steemit/0.1", "tags": ["raspberry"]}"
created2017-09-26 21:27:48
last_update2017-09-26 21:27:48
depth1
children0
net_rshares0
last_payout2017-10-03 21:27:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length18
author_reputation0
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@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)
post_id26,369,028
authorrodthrower18
permlinkre-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20180118t061017429z
categoryraspberry
json_metadata"{"app": "steemit/0.1", "tags": ["raspberry"]}"
created2018-01-18 06:10:21
last_update2018-01-18 06:10:21
depth1
children0
net_rshares0
last_payout2018-01-25 06:10:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length150
author_reputation104,712,854,805
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@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)
post_id35,874,623
authortomole
permlinkre-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20180228t223914819z
categoryraspberry
json_metadata"{"app": "steemit/0.1", "tags": ["raspberry"]}"
created2018-02-28 22:39:15
last_update2018-02-28 22:39:15
depth1
children0
net_rshares583,964,862
last_payout2018-03-07 22:39:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length142
author_reputation5,425,558,423
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@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)
post_id48,621,019
authormaronfive5x
permlinkre-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20180515t065626237z
categoryraspberry
json_metadata"{"app": "busy/2.4.0", "community": "busy", "tags": ["raspberry"]}"
created2018-05-15 06:56:27
last_update2018-05-15 06:56:27
depth1
children0
net_rshares0
last_payout2018-05-22 06:56:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length117
author_reputation332,829,813,945
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@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)
post_id49,281,859
authorgamemylife
permlinkre-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20180519t110110584z
categoryraspberry
json_metadata"{"app": "busy/2.4.0", "community": "busy", "tags": ["raspberry"]}"
created2018-05-19 11:01:12
last_update2018-05-19 11:01:12
depth1
children1
net_rshares0
last_payout2018-05-26 11:01:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length365
author_reputation104,178,422,702
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@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)
post_id49,283,539
authorgamemylife
permlinkre-gamemylife-re-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20180519t111720403z
categoryraspberry
json_metadata"{"community": "busy", "app": "busy/2.4.0", "tags": ["raspberry"]}"
created2018-05-19 11:17:21
last_update2018-05-19 11:17:21
depth2
children0
net_rshares0
last_payout2018-05-26 11:17:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length172
author_reputation104,178,422,702
root_title"How to set up a curation bot on raspberry pi"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000