create account

Steemit post Bot like @wang for introduceyourself by seagul

View this thread on: hive.blogpeakd.comecency.com
· @seagul · (edited)
$0.99
Steemit post Bot like @wang for introduceyourself
https://www.telekom.de/resources/images/171780/hacker.jpg

Hello Steemit,

this is the second part of the series "how @wang is doing it"
You can read the first post here https://steemit.com/hacking/@seagul/steemit-vote-bot-like-wang-for-introduceyourself

Like i said in my first post, i will publish the post bot for the introduceyourself section

## Full python code for post on every new post @introduceyourself
    import time

    from steemapi.steemnoderpc import SteemNodeRPC
    from steembase import transactions

    currentTime = int(time.time())

    message = "Welcome to Steemit!"

    user = "yourUserName"
    wif = "yourWifKey"
    category = "introduceyourself"

    rpc = SteemNodeRPC("wss://steemit.com/wstmp3")
    for post in rpc.stream("comment", start=currentTime):
        if post["parent_author"] == '' and post["parent_permlink"] == category:
            try:
                expiration = transactions.formatTimeFromNow(60)
                op = transactions.Comment(
                        **{"parent_author": post["author"],
                           "parent_permlink": post["permlink"],
                           "author": user,
                           "permlink": post["permlink"],
                           "title": "",
                           "body": message,
                           "json_metadata": ""}
                )
                ops = [transactions.Operation(op)]
                ref_block_num, ref_block_prefix = transactions.getBlockParams(rpc)
                tx = transactions.Signed_Transaction(
                        ref_block_num=ref_block_num,
                        ref_block_prefix=ref_block_prefix,
                        expiration=expiration,
                        operations=ops)

                tx = tx.sign([wif])
                tx = transactions.JsonObj(tx)

                rpc.broadcast_transaction(tx, api="network_broadcast")
                print("Posted!")
                print(post["title"])
            except Exception:
                print("Oops! Posting")


This script will write "Welcome to Steemit!" under each new post in the introduceyourself section. 
@wang was a little bit more creative and has done a [multiline string] message. Example: http://stackoverflow.com/a/10660443
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 32 others
properties (23)
authorseagul
permlinksteemit-post-bot-like-wang-for-introduceyourself
categoryhacking
json_metadata{"tags":["hacking","hack","bot","sourcecode","programm","coding","steem","code","steemit","programming","python","introduceyourself","tutorial"],"users":["wang"],"image":["https://www.telekom.de/resources/images/171780/hacker.jpg"]}
created2016-07-18 19:43:06
last_update2016-07-19 23:09:00
depth0
children38
last_payout2016-08-24 12:53:00
cashout_time1969-12-31 23:59:59
total_payout_value0.841 HBD
curator_payout_value0.147 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length2,275
author_reputation560,251,690,286
root_title"Steemit post Bot like @wang for introduceyourself"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id172,146
net_rshares564,863,827,484
author_curate_reward""
vote details (96)
@artific ·
It would be so nice to get 50+ times "Welcome to Steemit!" as comments in your introduction post. :D
👍  ,
properties (23)
authorartific
permlinkre-seagul-steemit-post-bot-like-wang-for-introduceyourself-20160718t194927872z
categoryhacking
json_metadata{"tags":["hacking"]}
created2016-07-18 19:50:00
last_update2016-07-18 19:50:00
depth1
children1
last_payout2016-08-24 12:53:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length100
author_reputation1,829,047,773,142
root_title"Steemit post Bot like @wang for introduceyourself"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id172,279
net_rshares492,803,718
author_curate_reward""
vote details (2)
@seagul ·
Indeed ;)
👍  
properties (23)
authorseagul
permlinkre-artific-re-seagul-steemit-post-bot-like-wang-for-introduceyourself-20160718t195243435z
categoryhacking
json_metadata{"tags":["hacking"]}
created2016-07-18 19:52:51
last_update2016-07-18 19:52:51
depth2
children0
last_payout2016-08-24 12:53:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length9
author_reputation560,251,690,286
root_title"Steemit post Bot like @wang for introduceyourself"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id172,329
net_rshares488,033,437
author_curate_reward""
vote details (1)
@asim ·
It's That was still Bot
👍  ,
properties (23)
authorasim
permlinkre-seagul-steemit-post-bot-like-wang-for-introduceyourself-20160718t195445096z
categoryhacking
json_metadata{"tags":["hacking"]}
created2016-07-18 19:54:42
last_update2016-07-18 19:54:42
depth1
children0
last_payout2016-08-24 12:53:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length23
author_reputation9,060,825,259,513
root_title"Steemit post Bot like @wang for introduceyourself"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id172,362
net_rshares724,553,985
author_curate_reward""
vote details (2)
@bunny ·
not working .. have install xero's steem lib....

Traceback (most recent call last):
  File "./post_test.py", line 2, in <module>
    from steemapi.steemnoderpc import SteemNodeRPC
ImportError: No module named steemapi.steemnoderpc
ubuntu@ubuntu:~/steem/extract$
properties (22)
authorbunny
permlinkre-seagul-steemit-post-bot-like-wang-for-introduceyourself-20160720t020144952z
categoryhacking
json_metadata{"tags":["hacking"]}
created2016-07-20 02:01:42
last_update2016-07-20 02:01:42
depth1
children2
last_payout2016-08-24 12:53:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length262
author_reputation2,975,000,206,258
root_title"Steemit post Bot like @wang for introduceyourself"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id206,330
net_rshares0
@davidrobison ·
I'm using Windows and had the same problem. For some reason PYTHONPATH didn't have the default directory for all my python packages listed.

At the top of your "post_test.py" file put:

import sys
print(sys.path)

That will tell you what PYTHONPATH is searching through for imports. Use ."append" to add the location of your steemapi folder. For me that was:

import sys
sys.path.append("C:\Python34\Lib\site-packages")
print(sys.path)
properties (22)
authordavidrobison
permlinkre-bunny-re-seagul-steemit-post-bot-like-wang-for-introduceyourself-20160818t233508641z
categoryhacking
json_metadata{"tags":["hacking"]}
created2016-08-18 23:35:09
last_update2016-08-18 23:35:09
depth2
children0
last_payout2016-08-24 12:53:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length435
author_reputation51,670,338,162
root_title"Steemit post Bot like @wang for introduceyourself"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id879,913
net_rshares0
@seagul · (edited)
You need to use "python3".
Have you installed the library for pip3?

Try
1) apt-get install python3-pip
2) pip3 install --upgrade pip
3) pip3 install steem
👍  ,
properties (23)
authorseagul
permlinkre-bunny-re-seagul-steemit-post-bot-like-wang-for-introduceyourself-20160720t054115422z
categoryhacking
json_metadata{"tags":["hacking"]}
created2016-07-20 05:41:24
last_update2016-07-20 05:45:33
depth2
children0
last_payout2016-08-24 12:53:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length155
author_reputation560,251,690,286
root_title"Steemit post Bot like @wang for introduceyourself"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id210,549
net_rshares2,318,064,593
author_curate_reward""
vote details (2)
@bunny ·
if i am running a local node . Can i switch following line to local node and what the syntax could be 
rpc = SteemNodeRPC("wss://steemit.com/wstmp3")
properties (22)
authorbunny
permlinkre-seagul-steemit-post-bot-like-wang-for-introduceyourself-20160720t163009734z
categoryhacking
json_metadata{"tags":["hacking"]}
created2016-07-20 16:30:09
last_update2016-07-20 16:30:09
depth1
children2
last_payout2016-08-24 12:53:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length149
author_reputation2,975,000,206,258
root_title"Steemit post Bot like @wang for introduceyourself"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id222,829
net_rshares0
@seagul ·
Something like rpc = SteemNodeRPC("ws://localhost:8090") maybe
👍  , ,
properties (23)
authorseagul
permlinkre-bunny-re-seagul-steemit-post-bot-like-wang-for-introduceyourself-20160720t175230434z
categoryhacking
json_metadata{"tags":["hacking"]}
created2016-07-20 17:52:30
last_update2016-07-20 17:52:30
depth2
children1
last_payout2016-08-24 12:53:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length62
author_reputation560,251,690,286
root_title"Steemit post Bot like @wang for introduceyourself"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id224,712
net_rshares2,481,823,019
author_curate_reward""
vote details (3)
@bunny ·
thanks
properties (22)
authorbunny
permlinkre-seagul-re-bunny-re-seagul-steemit-post-bot-like-wang-for-introduceyourself-20160720t185458577z
categoryhacking
json_metadata{"tags":["hacking"]}
created2016-07-20 18:54:57
last_update2016-07-20 18:54:57
depth3
children0
last_payout2016-08-24 12:53:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length6
author_reputation2,975,000,206,258
root_title"Steemit post Bot like @wang for introduceyourself"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id226,303
net_rshares0
@calamus056 ·
It's kinda fucked up that we have to write bots because the developers are too lazy (or busy?) to write a **much needed** FAQ.
properties (22)
authorcalamus056
permlinkre-seagul-steemit-post-bot-like-wang-for-introduceyourself-20160720t002452655z
categoryhacking
json_metadata{"tags":["hacking"]}
created2016-07-20 00:25:42
last_update2016-07-20 00:25:42
depth1
children2
last_payout2016-08-24 12:53:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length126
author_reputation5,645,464,390,253
root_title"Steemit post Bot like @wang for introduceyourself"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id204,194
net_rshares0
@intelliguy ·
Much needed FAQ here:
https://steemit.com/steemit/@intelliguy/steemit-faq-frequently-asked-questions-common-myths-and-misconceptions
properties (22)
authorintelliguy
permlinkre-calamus056-re-seagul-steemit-post-bot-like-wang-for-introduceyourself-20160722t211831322z
categoryhacking
json_metadata{"tags":["hacking"],"links":["https://steemit.com/steemit/@intelliguy/steemit-faq-frequently-asked-questions-common-myths-and-misconceptions"]}
created2016-07-22 21:19:00
last_update2016-07-22 21:19:00
depth2
children1
last_payout2016-08-24 12:53:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length132
author_reputation62,276,657,564,898
root_title"Steemit post Bot like @wang for introduceyourself"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id282,504
net_rshares0
@calamus056 ·
Yeah found it yesterday, but thanks :)
properties (22)
authorcalamus056
permlinkre-intelliguy-re-calamus056-re-seagul-steemit-post-bot-like-wang-for-introduceyourself-20160722t213002740z
categoryhacking
json_metadata{"tags":["hacking"]}
created2016-07-22 21:30:57
last_update2016-07-22 21:30:57
depth3
children0
last_payout2016-08-24 12:53:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length38
author_reputation5,645,464,390,253
root_title"Steemit post Bot like @wang for introduceyourself"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id282,797
net_rshares0
@cybercodetwins ·
whoa, you are allowed to do bots here?
properties (22)
authorcybercodetwins
permlinkre-seagul-steemit-post-bot-like-wang-for-introduceyourself-20160720t055805810z
categoryhacking
json_metadata{"tags":["hacking"]}
created2016-07-20 05:58:03
last_update2016-07-20 05:58:03
depth1
children0
last_payout2016-08-24 12:53:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length38
author_reputation2,098,733,764,293
root_title"Steemit post Bot like @wang for introduceyourself"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id210,876
net_rshares0
@endgame ·
Nice information! I like the picture too!
👍  ,
properties (23)
authorendgame
permlinkre-seagul-steemit-post-bot-like-wang-for-introduceyourself-20160721t190513538z
categoryhacking
json_metadata{"tags":["hacking"]}
created2016-07-21 19:05:12
last_update2016-07-21 19:05:12
depth1
children0
last_payout2016-08-24 12:53:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length41
author_reputation-1,051,794,900,426
root_title"Steemit post Bot like @wang for introduceyourself"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id255,200
net_rshares2,125,355,591
author_curate_reward""
vote details (2)
@intelliguy ·
$0.03
The information is very interesting.   As the presenter of this info, I'm curious if you have any words of advice on how to use a bot _responsibly_

I appreciate good bots if they are used right.
👍  
properties (23)
authorintelliguy
permlinkre-seagul-steemit-post-bot-like-wang-for-introduceyourself-20160722t212139294z
categoryhacking
json_metadata{"tags":["hacking"]}
created2016-07-22 21:22:06
last_update2016-07-22 21:22:06
depth1
children0
last_payout2016-08-24 12:53:00
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_length195
author_reputation62,276,657,564,898
root_title"Steemit post Bot like @wang for introduceyourself"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id282,568
net_rshares30,096,132,508
author_curate_reward""
vote details (1)
@joshbreslauer ·
$0.15
Was watching this account too. 
i was sure its a bot. 
thanks for sharing this.
👍  , ,
properties (23)
authorjoshbreslauer
permlinkre-seagul-steemit-post-bot-like-wang-for-introduceyourself-20160718t194535481z
categoryhacking
json_metadata{"tags":["hacking"]}
created2016-07-18 19:45:36
last_update2016-07-18 19:45:36
depth1
children4
last_payout2016-08-24 12:53:00
cashout_time1969-12-31 23:59:59
total_payout_value0.118 HBD
curator_payout_value0.035 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length79
author_reputation9,129,838,724,672
root_title"Steemit post Bot like @wang for introduceyourself"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id172,191
net_rshares96,080,694,639
author_curate_reward""
vote details (3)
@seagul · (edited)
It would be quite easy to downvote every post from @wang in @introduceyourself
properties (22)
authorseagul
permlinkre-joshbreslauer-re-seagul-steemit-post-bot-like-wang-for-introduceyourself-20160718t200755079z
categoryhacking
json_metadata{"tags":["hacking"],"users":["wang"]}
created2016-07-18 20:08:03
last_update2016-07-18 20:08:18
depth2
children3
last_payout2016-08-24 12:53:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length78
author_reputation560,251,690,286
root_title"Steemit post Bot like @wang for introduceyourself"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id172,625
net_rshares0
@arcurus ·
we should be nice to @wang as long as it tries to be a nice bot and help beginners :)
properties (22)
authorarcurus
permlinkre-seagul-re-joshbreslauer-re-seagul-steemit-post-bot-like-wang-for-introduceyourself-20160720t195929984z
categoryhacking
json_metadata{"tags":["hacking"],"users":["wang"]}
created2016-07-20 19:59:30
last_update2016-07-20 19:59:30
depth3
children1
last_payout2016-08-24 12:53:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length85
author_reputation549,553,053,579
root_title"Steemit post Bot like @wang for introduceyourself"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id227,967
net_rshares0
@joshbreslauer · (edited)
$0.15
i am not sure about the actual meaning of it beeing a bot. so i dont want to do this. 
but it feels nice to see that somebody like you is into it to let me see clear about my guess if this was a bot. even without investigation. 
/the beautiful part is, i can decide to pay you and not@wang because we are steemeans.
👍  
properties (23)
authorjoshbreslauer
permlinkre-seagul-re-joshbreslauer-re-seagul-steemit-post-bot-like-wang-for-introduceyourself-20160719t161217047z
categoryhacking
json_metadata{"tags":["hacking"]}
created2016-07-19 16:12:18
last_update2016-07-19 16:16:51
depth3
children0
last_payout2016-08-24 12:53:00
cashout_time1969-12-31 23:59:59
total_payout_value0.150 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length315
author_reputation9,129,838,724,672
root_title"Steemit post Bot like @wang for introduceyourself"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id191,720
net_rshares95,583,117,086
author_curate_reward""
vote details (1)
@kraize7 ·
thanks for sharing this tho
properties (22)
authorkraize7
permlinkre-seagul-steemit-post-bot-like-wang-for-introduceyourself-20170804t190136099z
categoryhacking
json_metadata{"tags":["hacking"],"app":"steemit/0.1"}
created2017-08-04 19:01:33
last_update2017-08-04 19:01:33
depth1
children0
last_payout2017-08-11 19:01: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_length27
author_reputation615,907,742
root_title"Steemit post Bot like @wang for introduceyourself"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id10,778,800
net_rshares0
@marsresident ·
$0.15
Upvoted. Eventually all of the Bots being created here are going to start some pretty cool projects. People are going to keep building and building. There was another Bot posts the other day, linked below
https://steemit.com/steem/@curator/i-made-a-curation-bot-for-steem
👍  , ,
properties (23)
authormarsresident
permlinkre-seagul-steemit-post-bot-like-wang-for-introduceyourself-20160718t194815578z
categoryhacking
json_metadata{"tags":["hacking"],"links":["https://steemit.com/steem/@curator/i-made-a-curation-bot-for-steem"]}
created2016-07-18 19:48:30
last_update2016-07-18 19:48:30
depth1
children0
last_payout2016-08-24 12:53:00
cashout_time1969-12-31 23:59:59
total_payout_value0.118 HBD
curator_payout_value0.031 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length271
author_reputation10,013,229,877,794
root_title"Steemit post Bot like @wang for introduceyourself"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id172,252
net_rshares95,818,302,834
author_curate_reward""
vote details (3)
@maykor15 ·
thanks.
properties (22)
authormaykor15
permlinkre-seagul-steemit-post-bot-like-wang-for-introduceyourself-20160720t122336058z
categoryhacking
json_metadata{"tags":["hacking"]}
created2016-07-20 11:55:00
last_update2016-07-20 11:55:00
depth1
children0
last_payout2016-08-24 12:53:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length7
author_reputation971,963,694,138
root_title"Steemit post Bot like @wang for introduceyourself"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id217,286
net_rshares0
@miohtama ·
Nice work!
properties (22)
authormiohtama
permlinkre-seagul-steemit-post-bot-like-wang-for-introduceyourself-20160719t231934618z
categoryhacking
json_metadata{"tags":["hacking"]}
created2016-07-19 23:19:33
last_update2016-07-19 23:19:33
depth1
children0
last_payout2016-08-24 12:53:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length10
author_reputation1,004,263,830,307
root_title"Steemit post Bot like @wang for introduceyourself"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id202,676
net_rshares0
@nioctib ·
great post, can i change the section by changing the introduceyourself tag?
👍  , ,
properties (23)
authornioctib
permlinkre-seagul-steemit-post-bot-like-wang-for-introduceyourself-20160722t133842588z
categoryhacking
json_metadata{"tags":["hacking"]}
created2016-07-22 13:38:42
last_update2016-07-22 13:38:42
depth1
children1
last_payout2016-08-24 12:53:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length75
author_reputation85,098,617,111
root_title"Steemit post Bot like @wang for introduceyourself"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id273,677
net_rshares3,819,181,593
author_curate_reward""
vote details (3)
@seagul ·
You can change the section yes
instead of category = "introduceyourself" you can write category = "steemit"

Than you would post on every new post in steemit
properties (22)
authorseagul
permlinkre-nioctib-re-seagul-steemit-post-bot-like-wang-for-introduceyourself-20160722t205244206z
categoryhacking
json_metadata{"tags":["hacking"]}
created2016-07-22 20:52:48
last_update2016-07-22 20:52:48
depth2
children0
last_payout2016-08-24 12:53:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length157
author_reputation560,251,690,286
root_title"Steemit post Bot like @wang for introduceyourself"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id281,898
net_rshares0
@qwep ·
great work
properties (22)
authorqwep
permlinkre-seagul-steemit-post-bot-like-wang-for-introduceyourself-20160721t060246458z
categoryhacking
json_metadata{"tags":["hacking"]}
created2016-07-21 06:01:30
last_update2016-07-21 06:01:30
depth1
children0
last_payout2016-08-24 12:53:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length10
author_reputation6,183,684
root_title"Steemit post Bot like @wang for introduceyourself"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id239,560
net_rshares0
@soupernerd ·
@seagul Is there a way for the script to check if your last vote or comment was made within the last 20 seconds before trying to post anything new?
👍  
properties (23)
authorsoupernerd
permlinkre-seagul-steemit-post-bot-like-wang-for-introduceyourself-20160719t162617903z
categoryhacking
json_metadata{"tags":["hacking"],"users":["seagul"]}
created2016-07-19 16:26:12
last_update2016-07-19 16:26:12
depth1
children3
last_payout2016-08-24 12:53:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length147
author_reputation213,668,684,615
root_title"Steemit post Bot like @wang for introduceyourself"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id192,006
net_rshares430,621,656
author_curate_reward""
vote details (1)
@kingtylervvs ·
I AGREE! Thank you for posting. Hope you get this to snowball to the top!
I up-voted you too... BTW, should steemit let us steemers advertise using steem? Be sure to tell everyone you know to come vote here at: https://steemit.com/steemit/@kingtylervvs/if-steemit-ever-does-decide-to-advertise-there-is-only-1-way-it-could-work-in-my-opinion-debate

This is a democratic community decision.<br><img src="http://www.animatedimages.org/data/media/75/animated-train-image-0018.gif" width="145" height="93"/>
<img src="http://2.bp.blogspot.com/-TEzRcgPOwzg/U9TQY7gafSI/AAAAAAAAAoE/mcn0ax6a1Tk/s1600/Coin-1.gif" width="14" height="16"/><img src="http://2.bp.blogspot.com/-TEzRcgPOwzg/U9TQY7gafSI/AAAAAAAAAoE/mcn0ax6a1Tk/s1600/Coin-1.gif" width="14" height="16"/><img src="http://2.bp.blogspot.com/-TEzRcgPOwzg/U9TQY7gafSI/AAAAAAAAAoE/mcn0ax6a1Tk/s1600/Coin-1.gif" width="14" height="16"/><img src="http://2.bp.blogspot.com/-TEzRcgPOwzg/U9TQY7gafSI/AAAAAAAAAoE/mcn0ax6a1Tk/s1600/Coin-1.gif" width="14" height="16"/><img src="http://2.bp.blogspot.com/-TEzRcgPOwzg/U9TQY7gafSI/AAAAAAAAAoE/mcn0ax6a1Tk/s1600/Coin-1.gif" width="14" height="16"/><img src="http://2.bp.blogspot.com/-TEzRcgPOwzg/U9TQY7gafSI/AAAAAAAAAoE/mcn0ax6a1Tk/s1600/Coin-1.gif" width="14" height="16"/><img src="http://2.bp.blogspot.com/-TEzRcgPOwzg/U9TQY7gafSI/AAAAAAAAAoE/mcn0ax6a1Tk/s1600/Coin-1.gif" width="14" height="16"/><img src="http://2.bp.blogspot.com/-TEzRcgPOwzg/U9TQY7gafSI/AAAAAAAAAoE/mcn0ax6a1Tk/s1600/Coin-1.gif" width="14" height="16"/><img src="http://2.bp.blogspot.com/-TEzRcgPOwzg/U9TQY7gafSI/AAAAAAAAAoE/mcn0ax6a1Tk/s1600/Coin-1.gif" width="14" height="16"/><img src="http://2.bp.blogspot.com/-TEzRcgPOwzg/U9TQY7gafSI/AAAAAAAAAoE/mcn0ax6a1Tk/s1600/Coin-1.gif" width="14" height="16"/><img src="http://2.bp.blogspot.com/-TEzRcgPOwzg/U9TQY7gafSI/AAAAAAAAAoE/mcn0ax6a1Tk/s1600/Coin-1.gif" width="14" height="16"/><img src="http://2.bp.blogspot.com/-TEzRcgPOwzg/U9TQY7gafSI/AAAAAAAAAoE/mcn0ax6a1Tk/s1600/Coin-1.gif" width="14" height="16"/><img src="http://2.bp.blogspot.com/-TEzRcgPOwzg/U9TQY7gafSI/AAAAAAAAAoE/mcn0ax6a1Tk/s1600/Coin-1.gif" width="14" height="16"/><img src="http://2.bp.blogspot.com/-TEzRcgPOwzg/U9TQY7gafSI/AAAAAAAAAoE/mcn0ax6a1Tk/s1600/Coin-1.gif" width="14" height="16"/><img src="http://2.bp.blogspot.com/-TEzRcgPOwzg/U9TQY7gafSI/AAAAAAAAAoE/mcn0ax6a1Tk/s1600/Coin-1.gif" width="14" height="16"/><img src="http://2.bp.blogspot.com/-TEzRcgPOwzg/U9TQY7gafSI/AAAAAAAAAoE/mcn0ax6a1Tk/s1600/Coin-1.gif" width="14" height="16"/><img src="http://2.bp.blogspot.com/-TEzRcgPOwzg/U9TQY7gafSI/AAAAAAAAAoE/mcn0ax6a1Tk/s1600/Coin-1.gif" width="14" height="16"/><img src="http://2.bp.blogspot.com/-TEzRcgPOwzg/U9TQY7gafSI/AAAAAAAAAoE/mcn0ax6a1Tk/s1600/Coin-1.gif" width="14" height="16"/><img src="http://2.bp.blogspot.com/-TEzRcgPOwzg/U9TQY7gafSI/AAAAAAAAAoE/mcn0ax6a1Tk/s1600/Coin-1.gif" width="14" height="16"/><img src="http://2.bp.blogspot.com/-TEzRcgPOwzg/U9TQY7gafSI/AAAAAAAAAoE/mcn0ax6a1Tk/s1600/Coin-1.gif" width="14" height="16"/><img src="http://2.bp.blogspot.com/-TEzRcgPOwzg/U9TQY7gafSI/AAAAAAAAAoE/mcn0ax6a1Tk/s1600/Coin-1.gif" width="14" height="16"/><img src="http://2.bp.blogspot.com/-TEzRcgPOwzg/U9TQY7gafSI/AAAAAAAAAoE/mcn0ax6a1Tk/s1600/Coin-1.gif" width="14" height="16"/><img src="http://2.bp.blogspot.com/-TEzRcgPOwzg/U9TQY7gafSI/AAAAAAAAAoE/mcn0ax6a1Tk/s1600/Coin-1.gif" width="14" height="16"/><img src="http://2.bp.blogspot.com/-TEzRcgPOwzg/U9TQY7gafSI/AAAAAAAAAoE/mcn0ax6a1Tk/s1600/Coin-1.gif" width="14" height="16"/><img src="http://2.bp.blogspot.com/-TEzRcgPOwzg/U9TQY7gafSI/AAAAAAAAAoE/mcn0ax6a1Tk/s1600/Coin-1.gif" width="14" height="16"/><img src="http://2.bp.blogspot.com/-TEzRcgPOwzg/U9TQY7gafSI/AAAAAAAAAoE/mcn0ax6a1Tk/s1600/Coin-1.gif" width="14" height="16"/><img src="http://2.bp.blogspot.com/-TEzRcgPOwzg/U9TQY7gafSI/AAAAAAAAAoE/mcn0ax6a1Tk/s1600/Coin-1.gif" width="14" height="16"/><img src="http://2.bp.blogspot.com/-TEzRcgPOwzg/U9TQY7gafSI/AAAAAAAAAoE/mcn0ax6a1Tk/s1600/Coin-1.gif" width="14" height="16"/><img src="http://2.bp.blogspot.com/-TEzRcgPOwzg/U9TQY7gafSI/AAAAAAAAAoE/mcn0ax6a1Tk/s1600/Coin-1.gif" width="14" height="16"/><img src="http://2.bp.blogspot.com/-TEzRcgPOwzg/U9TQY7gafSI/AAAAAAAAAoE/mcn0ax6a1Tk/s1600/Coin-1.gif" width="14" height="16"/><img src="http://2.bp.blogspot.com/-TEzRcgPOwzg/U9TQY7gafSI/AAAAAAAAAoE/mcn0ax6a1Tk/s1600/Coin-1.gif" width="14" height="16"/><img src="http://2.bp.blogspot.com/-TEzRcgPOwzg/U9TQY7gafSI/AAAAAAAAAoE/mcn0ax6a1Tk/s1600/Coin-1.gif" width="14" height="16"/><img src="http://2.bp.blogspot.com/-TEzRcgPOwzg/U9TQY7gafSI/AAAAAAAAAoE/mcn0ax6a1Tk/s1600/Coin-1.gif" width="14" height="16"/><img src="http://2.bp.blogspot.com/-TEzRcgPOwzg/U9TQY7gafSI/AAAAAAAAAoE/mcn0ax6a1Tk/s1600/Coin-1.gif" width="14" height="16"/><img src="http://2.bp.blogspot.com/-TEzRcgPOwzg/U9TQY7gafSI/AAAAAAAAAoE/mcn0ax6a1Tk/s1600/Coin-1.gif" width="14" height="16"/><img src="http://2.bp.blogspot.com/-TEzRcgPOwzg/U9TQY7gafSI/AAAAAAAAAoE/mcn0ax6a1Tk/s1600/Coin-1.gif" width="14" height="16"/>
<img src="https://steem.io/images/steem.png" width="140" height="160"/>
👎  
properties (23)
authorkingtylervvs
permlinkre-soupernerd-re-seagul-steemit-post-bot-like-wang-for-introduceyourself-20160720t115727961z
categoryhacking
json_metadata{"tags":["hacking"],"image":["http://www.animatedimages.org/data/media/75/animated-train-image-0018.gif","http://2.bp.blogspot.com/-TEzRcgPOwzg/U9TQY7gafSI/AAAAAAAAAoE/mcn0ax6a1Tk/s1600/Coin-1.gif","https://steem.io/images/steem.png"]}
created2016-07-20 11:57:30
last_update2016-07-20 11:57:30
depth2
children0
last_payout2016-08-24 12:53:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length5,113
author_reputation356,176,599,126
root_title"Steemit post Bot like @wang for introduceyourself"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id217,353
net_rshares-111,304,648
author_curate_reward""
vote details (1)
@seagul ·
Hello @soupernerd,

you just need to set a start time and check with a "if", if time elapsed is <20

Example: http://stackoverflow.com/questions/3620943/measuring-elapsed-time-with-the-time-module

start_time = time.time()
elapsed_time = time.time() - start_time
👍  ,
properties (23)
authorseagul
permlinkre-soupernerd-re-seagul-steemit-post-bot-like-wang-for-introduceyourself-20160719t173321065z
categoryhacking
json_metadata{"tags":["hacking"],"links":["http://stackoverflow.com/questions/3620943/measuring-elapsed-time-with-the-time-module"]}
created2016-07-19 17:33:21
last_update2016-07-19 17:33:21
depth2
children1
last_payout2016-08-24 12:53:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length262
author_reputation560,251,690,286
root_title"Steemit post Bot like @wang for introduceyourself"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id193,682
net_rshares450,404,454
author_curate_reward""
vote details (2)
@soupernerd · (edited)
Hi seagul,

What I was actually wondering is this. Steemit seems to throw an error if you try to comment too fast.

Example of the steem error:

"(now - auth.last_post) > STEEMIT_MIN_REPLY_INTERVAL: You may only comment once every 20 seconds"

Is there a way to check against steemit itself, if your last post was within the last 20 seconds? So instead of just checking against elapsed time generally, checking against whatever it is steemit is checking?
properties (22)
authorsoupernerd
permlinkre-seagul-re-soupernerd-re-seagul-steemit-post-bot-like-wang-for-introduceyourself-20160720t005502414z
categoryhacking
json_metadata{"tags":["hacking"]}
created2016-07-20 00:54:57
last_update2016-07-20 00:58:00
depth3
children0
last_payout2016-08-24 12:53:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length454
author_reputation213,668,684,615
root_title"Steemit post Bot like @wang for introduceyourself"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id204,858
net_rshares0
@steemedbroccoli · (edited)
Hi @seagul! I'm getting this error when trying to run it:

  {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170
                                                                                                              
SyntaxError: unexpected character after line continuation character

Any ideas? Warning, I have no idea what I'm doing!
👍  
properties (23)
authorsteemedbroccoli
permlinkre-seagul-steemit-post-bot-like-wang-for-introduceyourself-20160724t122726757z
categoryhacking
json_metadata{"tags":["hacking"],"users":["seagul"]}
created2016-07-24 12:27:27
last_update2016-07-24 12:28:27
depth1
children0
last_payout2016-08-24 12:53:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length343
author_reputation817,803,207,909
root_title"Steemit post Bot like @wang for introduceyourself"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id319,324
net_rshares36,289,486
author_curate_reward""
vote details (1)
@warrensteem ·
I'm a noob when it comes to this stuff. Where wouls i put such a code and how would i run it?
properties (22)
authorwarrensteem
permlinkre-seagul-steemit-post-bot-like-wang-for-introduceyourself-20160718t200129654z
categoryhacking
json_metadata{"tags":["hacking"]}
created2016-07-18 20:00:15
last_update2016-07-18 20:00:15
depth1
children5
last_payout2016-08-24 12:53:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length93
author_reputation29,924,587,138,042
root_title"Steemit post Bot like @wang for introduceyourself"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id172,462
net_rshares0
@seagul · (edited)
$0.20
You need an python environment and the python-steemlib from @xeroc.
For installation you can read: https://github.com/xeroc/python-steemlib

Than you simply create the file with my code and run it like: 
(Ofcause you need to change the "username"and the "wif" key)

python3 fileName.py
👍  , ,
properties (23)
authorseagul
permlinkre-warrensteem-re-seagul-steemit-post-bot-like-wang-for-introduceyourself-20160718t200205438z
categoryhacking
json_metadata{"tags":["hacking"],"links":["https://github.com/xeroc/python-steemlib"]}
created2016-07-18 20:02:12
last_update2016-07-18 20:13:15
depth2
children4
last_payout2016-08-24 12:53:00
cashout_time1969-12-31 23:59:59
total_payout_value0.150 HBD
curator_payout_value0.045 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length285
author_reputation560,251,690,286
root_title"Steemit post Bot like @wang for introduceyourself"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id172,502
net_rshares123,102,755,866
author_curate_reward""
vote details (3)
@biophil ·
$0.04
Thanks for posting this! I'm replying as a bookmark.
👍  
properties (23)
authorbiophil
permlinkre-seagul-re-warrensteem-re-seagul-steemit-post-bot-like-wang-for-introduceyourself-20160719t225749590z
categoryhacking
json_metadata{"tags":["hacking"]}
created2016-07-19 22:57:48
last_update2016-07-19 22:57:48
depth3
children0
last_payout2016-08-24 12:53:00
cashout_time1969-12-31 23:59:59
total_payout_value0.042 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length52
author_reputation45,223,914,794,461
root_title"Steemit post Bot like @wang for introduceyourself"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id202,123
net_rshares27,433,765,147
author_curate_reward""
vote details (1)
@bunny ·
SteemNodeRPC  look like not able to be imported ...  Traceback (most recent call last):
  File "./post_test.py", line 2, in <module>
    from steemapi.steemnoderpc import SteemNodeRPC
ImportError: No module named steemapi.steemnoderpc
ubuntu@ubuntu:~/steem/extract$
properties (22)
authorbunny
permlinkre-seagul-re-warrensteem-re-seagul-steemit-post-bot-like-wang-for-introduceyourself-20160720t015951145z
categoryhacking
json_metadata{"tags":["hacking"]}
created2016-07-20 01:59:48
last_update2016-07-20 01:59:48
depth3
children2
last_payout2016-08-24 12:53:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length265
author_reputation2,975,000,206,258
root_title"Steemit post Bot like @wang for introduceyourself"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id206,277
net_rshares0