create account

Steemit Journey - When are Steemians most active on a typical day? by culgin

View this thread on: hive.blogpeakd.comecency.com
· @culgin ·
$50.07
Steemit Journey - When are Steemians most active on a typical day?
Hey Steemians! Yesterday, I had a discussion with my dear friend @mrshev and somehow it led to the question on **when are Steemians most active on a typical day?** My initial thought was that user activities should be rather consistent through the day since Steemit is a global platform. While @mrshev thought it should follow some kind of cycle, perhaps aligned with the wake-sleep time of certain parts of the world (e.g. USA).

![2000px-Biological_clock_human.svg.png](https://cdn.steemitimages.com/DQmckkrS2kpkAU8CrH6nAUuWguRGoBpcFr6BqVF276438oU/2000px-Biological_clock_human.svg.png)
*[Source](https://commons.wikimedia.org/wiki/File:Biological_clock_human.svg)*

As you might know, I have been tinkering with the Steem API lately. So, I decided to write a simple python script to gather data from the Steem blockchain so that I can find the answer to the question (**"when are Steemians most active on a typical day?"** ). 

At first, I thought by using "get_discussions_by_created" function, I should be able to get all the info I needed with less than 5 lines of codes. However, I later got to realize that the function had a limit of 100 posts per retrieval. Hence, I needed to use the "start_permlink" and "start_author" parameters to get the next set of posts after I hit the limit. In the end, I decided to use a limit of 51 posts (the 51st post of each batch is used as the starting post for the next batch) and loop it through an arbitrary number. In this case, I loop it for 2000 times, which will return the past 100,000 posts. Each result is then written to a CSV file. 

Here is the script which I have written and please pardon my noobish programming 😂:

`from steem import Steem`
`s = Steem()`
`permlink = ""`
`author = ""`
`csv_file = open("output.csv", "w")`
`for x in range(2000):`
    `	if x == 0:`
        `		query = {"limit": 51}`
    `	else:`
        `		query = {"limit": 51, `
        `			"start_permlink": permlink, `
        `			"start_author": author`
        `		}`
    `	results = s.get_discussions_by_created(query)`
    `	for y in range(50):`
        `		permlink = results[50]['permlink']`
        `		author = results[50]['author']`
        `		tempauthor = results[y]['author']`
        `		temppermlink = results[y]['permlink']`
        `		postdate = results[y]['created']`
        `		line = tempauthor + "," + temppermlink + "," + postdate`
        `		print(line)`
        `		csv_file.write(line)`
        `		csv_file.write("\n")`
`csv_file.close()`

To be able to see a proper trend, I needed to have at least 1 week of data. In the end, I gathered over 250,000 posts info (between 24 May to 31 May). Oddly, the blockchain seemed to keep only 1 week of information in proper chronological order. Posts after 24 May seemed to be no longer in chronological order anymore. Perhaps someone can help enlighten me on this .

After gathering the data, I used Excel to plot a simple graph below:

![Steemit wake-sleep cycle_circadian rhythm](https://cdn.steemitimages.com/DQmb8cijuTTErTkcWHHsE6A8JJShg4xwAK4dzuayG1gi25z/image.png)

Behold the Steemit circadian rhythm! Haha.. Each bar represents an hour and we can see that for the past week, the most active hour was 28 May, 3pm GMT with 2324 new posts created! In general, it seems that Steemians are consistently more active between 1300-1900 GMT. And we usually "sleep" between 0000-0500 GMT. I thought this is quite interesting and decided to share this with everyone. 

@mrshev was right and I was wrong, Steemit activity do follow a cycle, at least for now. I think as more Steemians start to join, we probably should see flatter graph. What is your view on this? Any other Steemit trends that you will like me to explore? Thanks for reading!

![GENERIC_banner.gif](https://cdn.steemitimages.com/DQmZJqzw5Q4YZQDs79bZ4DasD1aS7BSxCXp1Dn5NCpXJFaq/GENERIC_banner.gif)
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 190 others
properties (23)
authorculgin
permlinksteemit-journey-when-are-steemians-most-active-on-a-typical-day
categorysteemit
json_metadata{"tags":["steemit","steem","fun","blockchain","teamsingapore"],"users":["mrshev"],"image":["https://cdn.steemitimages.com/DQmckkrS2kpkAU8CrH6nAUuWguRGoBpcFr6BqVF276438oU/2000px-Biological_clock_human.svg.png","https://cdn.steemitimages.com/DQmb8cijuTTErTkcWHHsE6A8JJShg4xwAK4dzuayG1gi25z/image.png","https://cdn.steemitimages.com/DQmZJqzw5Q4YZQDs79bZ4DasD1aS7BSxCXp1Dn5NCpXJFaq/GENERIC_banner.gif"],"links":["https://commons.wikimedia.org/wiki/File:Biological_clock_human.svg"],"app":"steemit/0.1","format":"markdown"}
created2018-06-01 00:52:36
last_update2018-06-01 00:52:36
depth0
children22
last_payout2018-06-08 00:52:36
cashout_time1969-12-31 23:59:59
total_payout_value47.989 HBD
curator_payout_value2.083 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length4,488
author_reputation170,100,255,531,223
root_title"Steemit Journey - When are Steemians most active on a typical day?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,680,056
net_rshares13,390,489,738,998
author_curate_reward""
vote details (254)
@anhheo ·
good post. thanks you share
👍  
properties (23)
authoranhheo
permlinkre-culgin-steemit-journey-when-are-steemians-most-active-on-a-typical-day-20180601t015954903z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-06-01 01:59:54
last_update2018-06-01 01:59:54
depth1
children1
last_payout2018-06-08 01:59:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length27
author_reputation300,681,598,126
root_title"Steemit Journey - When are Steemians most active on a typical day?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,686,298
net_rshares4,943,116,408
author_curate_reward""
vote details (1)
@culgin ·
Thanks!
properties (22)
authorculgin
permlinkre-anhheo-re-culgin-steemit-journey-when-are-steemians-most-active-on-a-typical-day-20180601t053059904z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-06-01 05:30:42
last_update2018-06-01 05:30:42
depth2
children0
last_payout2018-06-08 05:30:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length7
author_reputation170,100,255,531,223
root_title"Steemit Journey - When are Steemians most active on a typical day?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,706,412
net_rshares0
@bitcast ·
$0.03
Does it mean there are more Steemit users in Western Europe and North America?
👍  , ,
properties (23)
authorbitcast
permlinkre-culgin-steemit-journey-when-are-steemians-most-active-on-a-typical-day-20180601t010810597z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-06-01 01:08:45
last_update2018-06-01 01:08:45
depth1
children3
last_payout2018-06-08 01:08:45
cashout_time1969-12-31 23:59:59
total_payout_value0.028 HBD
curator_payout_value0.004 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length78
author_reputation464,734,947,155
root_title"Steemit Journey - When are Steemians most active on a typical day?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd0
post_id58,681,552
net_rshares9,381,174,568
author_curate_reward""
vote details (3)
@claubzs ·
$0.03
I think so. When I see some pictures taken by people in the tag "photography" and they say the location, most of times is a country located there. Obviously there are some exceptions, like me, I live in Venezuela in South America.
👍  ,
properties (23)
authorclaubzs
permlinkre-bitcast-re-culgin-steemit-journey-when-are-steemians-most-active-on-a-typical-day-20180601t040011197z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-06-01 04:00:21
last_update2018-06-01 04:00:21
depth2
children0
last_payout2018-06-08 04:00:21
cashout_time1969-12-31 23:59:59
total_payout_value0.027 HBD
curator_payout_value0.004 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length230
author_reputation196,320,203,112
root_title"Steemit Journey - When are Steemians most active on a typical day?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,697,679
net_rshares8,777,254,095
author_curate_reward""
vote details (2)
@culgin ·
Haha.. not quite sure. In fact I think it might be the opposite. If those who are active during 1300-1900 GMT are from Western Europe and North America, that will mean they are posting in the morning to afternoon slot. Which should typically the time they need to work.
properties (22)
authorculgin
permlinkre-bitcast-re-culgin-steemit-journey-when-are-steemians-most-active-on-a-typical-day-20180601t052744592z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-06-01 05:27:27
last_update2018-06-01 05:27:27
depth2
children1
last_payout2018-06-08 05:27:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length269
author_reputation170,100,255,531,223
root_title"Steemit Journey - When are Steemians most active on a typical day?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,706,105
net_rshares0
@bitcast ·
I think it could be true that most Steemit users are posting  during office hours, that's when people have access to high speed internet provided by companies.
properties (22)
authorbitcast
permlinkre-culgin-re-bitcast-re-culgin-steemit-journey-when-are-steemians-most-active-on-a-typical-day-20180602t161252487z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-06-02 16:13:27
last_update2018-06-02 16:13:27
depth3
children0
last_payout2018-06-09 16:13:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length159
author_reputation464,734,947,155
root_title"Steemit Journey - When are Steemians most active on a typical day?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd0
post_id58,927,137
net_rshares0
@claubzs ·
$0.03
Thank you for you analysis, here in my country that hours fits with the morning.
👍  
properties (23)
authorclaubzs
permlinkre-culgin-steemit-journey-when-are-steemians-most-active-on-a-typical-day-20180601t040058637z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-06-01 04:01:06
last_update2018-06-01 04:01:06
depth1
children4
last_payout2018-06-08 04:01:06
cashout_time1969-12-31 23:59:59
total_payout_value0.023 HBD
curator_payout_value0.007 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length80
author_reputation196,320,203,112
root_title"Steemit Journey - When are Steemians most active on a typical day?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,697,771
net_rshares8,166,887,980
author_curate_reward""
vote details (1)
@culgin ·
Interesting. Do you post in the morning? Understand you are from Venezuela.
properties (22)
authorculgin
permlinkre-claubzs-re-culgin-steemit-journey-when-are-steemians-most-active-on-a-typical-day-20180601t052845654z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-06-01 05:28:27
last_update2018-06-01 05:28:27
depth2
children3
last_payout2018-06-08 05:28:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length75
author_reputation170,100,255,531,223
root_title"Steemit Journey - When are Steemians most active on a typical day?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,706,204
net_rshares0
@claubzs ·
Yes, when I come back from college at 11 AM-12 PM I sit down for a while in my computer to post and comment :)
properties (22)
authorclaubzs
permlinkre-culgin-re-claubzs-re-culgin-steemit-journey-when-are-steemians-most-active-on-a-typical-day-20180601t163429934z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-06-01 16:34:36
last_update2018-06-01 16:34:36
depth3
children2
last_payout2018-06-08 16:34:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length110
author_reputation196,320,203,112
root_title"Steemit Journey - When are Steemians most active on a typical day?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,782,961
net_rshares0
@fun2learn ·
$0.03
Knowing the most active timing can actually boost post upvotes! Sharing this info would be useful for newbies as well as those who are struggling to get upvotes!
👍  
properties (23)
authorfun2learn
permlinkre-culgin-steemit-journey-when-are-steemians-most-active-on-a-typical-day-20180601t044514729z
categorysteemit
json_metadata{"tags":["steemit"],"community":"busy","app":"busy/2.4.0"}
created2018-06-01 04:45:12
last_update2018-06-01 04:45:12
depth1
children1
last_payout2018-06-08 04:45:12
cashout_time1969-12-31 23:59:59
total_payout_value0.021 HBD
curator_payout_value0.007 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length161
author_reputation155,461,413,801,653
root_title"Steemit Journey - When are Steemians most active on a typical day?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,702,076
net_rshares7,951,969,875
author_curate_reward""
vote details (1)
@culgin ·
Yup, I hope everyone can find this useful!
properties (22)
authorculgin
permlinkre-fun2learn-re-culgin-steemit-journey-when-are-steemians-most-active-on-a-typical-day-20180601t053031144z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-06-01 05:30:15
last_update2018-06-01 05:30:15
depth2
children0
last_payout2018-06-08 05:30:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length42
author_reputation170,100,255,531,223
root_title"Steemit Journey - When are Steemians most active on a typical day?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,706,368
net_rshares0
@martin-p ·
$0.03
as always, interesting stuff :)
👍  
properties (23)
authormartin-p
permlinkre-culgin-steemit-journey-when-are-steemians-most-active-on-a-typical-day-20180601t090607180z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-06-01 09:06:06
last_update2018-06-01 09:06:06
depth1
children1
last_payout2018-06-08 09:06:06
cashout_time1969-12-31 23:59:59
total_payout_value0.023 HBD
curator_payout_value0.007 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length31
author_reputation85,869,245,901
root_title"Steemit Journey - When are Steemians most active on a typical day?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,728,323
net_rshares8,167,204,754
author_curate_reward""
vote details (1)
@culgin ·
Thank you!
properties (22)
authorculgin
permlinkre-martin-p-re-culgin-steemit-journey-when-are-steemians-most-active-on-a-typical-day-20180601t121814311z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-06-01 12:17:57
last_update2018-06-01 12:17:57
depth2
children0
last_payout2018-06-08 12:17:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length10
author_reputation170,100,255,531,223
root_title"Steemit Journey - When are Steemians most active on a typical day?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,749,254
net_rshares0
@michaeljpsalazar ·
$0.03
Great job in analyzing the data. 13:00 GMT is 21:00 in where I live, which most of in this country actually post at night, since we make Steemit as our side-hustle.
👍  
properties (23)
authormichaeljpsalazar
permlinkre-culgin-steemit-journey-when-are-steemians-most-active-on-a-typical-day-20180601t012710546z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-06-01 01:27:09
last_update2018-06-01 01:27:09
depth1
children3
last_payout2018-06-08 01:27:09
cashout_time1969-12-31 23:59:59
total_payout_value0.023 HBD
curator_payout_value0.007 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length164
author_reputation1,023,826,353,873
root_title"Steemit Journey - When are Steemians most active on a typical day?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,683,259
net_rshares8,166,887,980
author_curate_reward""
vote details (1)
@culgin ·
I guess that might be a possible explanation. May I know where are you from?
properties (22)
authorculgin
permlinkre-michaeljpsalazar-re-culgin-steemit-journey-when-are-steemians-most-active-on-a-typical-day-20180601t053002883z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-06-01 05:29:45
last_update2018-06-01 05:29:45
depth2
children2
last_payout2018-06-08 05:29:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length76
author_reputation170,100,255,531,223
root_title"Steemit Journey - When are Steemians most active on a typical day?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,706,326
net_rshares0
@michaeljpsalazar ·
The Philippines. 
properties (22)
authormichaeljpsalazar
permlinkre-culgin-re-michaeljpsalazar-re-culgin-steemit-journey-when-are-steemians-most-active-on-a-typical-day-20180601t061935669z
categorysteemit
json_metadata{"tags":["steemit"],"community":"busy","app":"busy/2.4.0"}
created2018-06-01 06:19:36
last_update2018-06-01 06:19:36
depth3
children1
last_payout2018-06-08 06:19:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length17
author_reputation1,023,826,353,873
root_title"Steemit Journey - When are Steemians most active on a typical day?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,710,940
net_rshares0
@mrshev ·
$0.07
@culgin thank you for the honorable mention. But all credit goes to you for executing the most important task of learning and creating a script in python, so that all Steemians can utilize your findings.

11pm SG time seems about right as it is morning in the Americas, and late afternoon in Europe.
👍  
properties (23)
authormrshev
permlinkre-culgin-steemit-journey-when-are-steemians-most-active-on-a-typical-day-20180604t002337837z
categorysteemit
json_metadata{"tags":["steemit"],"users":["culgin"],"app":"steemit/0.1"}
created2018-06-04 00:23:18
last_update2018-06-04 00:23:18
depth1
children1
last_payout2018-06-11 00:23:21
cashout_time1969-12-31 23:59:59
total_payout_value0.056 HBD
curator_payout_value0.018 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length299
author_reputation20,571,477,953,550
root_title"Steemit Journey - When are Steemians most active on a typical day?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id59,122,444
net_rshares21,230,615,073
author_curate_reward""
vote details (1)
@culgin ·
Thank you! You were the inspiration!
properties (22)
authorculgin
permlinkre-mrshev-re-culgin-steemit-journey-when-are-steemians-most-active-on-a-typical-day-20180606t124837593z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-06-06 12:48:18
last_update2018-06-06 12:48:18
depth2
children0
last_payout2018-06-13 12:48:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length36
author_reputation170,100,255,531,223
root_title"Steemit Journey - When are Steemians most active on a typical day?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id59,523,909
net_rshares0
@tts ·
To listen to the audio version of this article click on the play image.
[![](https://s18.postimg.org/51o0kpijd/play200x46.png)](http://ec2-52-72-169-104.compute-1.amazonaws.com/culgin__steemit-journey-when-are-steemians-most-active-on-a-typical-day.mp3)
Brought to you by [@tts](https://steemit.com/tts/@tts/introduction). If you find it useful please consider upvoting this reply.
properties (22)
authortts
permlinkre-steemit-journey-when-are-steemians-most-active-on-a-typical-day-20180601t010116
categorysteemit
json_metadata""
created2018-06-01 01:01:15
last_update2018-06-01 01:01:15
depth1
children0
last_payout2018-06-08 01:01:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length381
author_reputation-4,535,154,553,995
root_title"Steemit Journey - When are Steemians most active on a typical day?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,680,870
net_rshares0