Hive hosts lots of different languages. If you want to categorize the content, one of the categorization points is the language used for the posts/comments. Detecting the post's language was one of the requirements in my current project. It turns out it was pretty easy to do it, dropping here some experience for future reference. #### What do we need? *** - A function fetches the post body and removes the noise from the post body - A function returns the language code detected in the post body #### Clearing the noise **** To feed the language detector, we need to filter out the HTML and Markdown tags. Passing clean data as much as possible will increase the language detection's correctness. ``` from bs4 import BeatifulSoup from markdown import markdown def clear_noise(post_body): body_as_html = markdown(post_body) soup = BeautifulSoup(body_as_html, "html.parser") post_body = ''.join(soup.findAll(text=True)) post_body = re.sub('<.*?>', '', post_body) post_body = re.sub( '```.*?```', '', post_body, flags=re.MULTILINE | re.DOTALL) return post_body ``` *** This simple snippet removes Markdown, HTML tags, and try to return only sentences/words. #### Detecting the language *** *"There is a library for that"* is the answer to most questions in Python world. I've used [langdetect](https://pypi.org/project/langdetect/) in the past and it was working considerably well. ``` from lighthive.client import Client from langdetect import detect def detect_language(author, permlink): c = Client() post_body = c.get_content(author, permlink)["body"] post_body = clear_noise(post_body) return detect(post_body) ``` *** We've used lighthive's Client to fetch the post body, cleared the post text with the `clear_noise` and passed it to the language detector library. Let's test it with some example posts; I've picked four different posts with four different languages: ``` posts = [ ('themarkymark', 'stemgeek-s-first-hackathon'), ('emrebeyler', 'yeni-baslayanlar-icin-hive'), ('clayop', '4v8phu-9'), ('satren', 'virtuelles-dach-meetup-am-sonntag-dem-17-05-2020-18-00-q9r1qv'), ] for author, permlink in posts: language = detect_language(author, permlink) print("Language of @%s/%s is %s" % (author, permlink, language)) ``` *** Output: ``` Language of @themarkymark/stemgeek-s-first-hackathon is en Language of @emrebeyler/yeni-baslayanlar-icin-hive is tr Language of @clayop/4v8phu-9 is ko Language of @satren/virtuelles-dach-meetup-am-sonntag-dem-17-05-2020-18-00-q9r1qv is de ``` *** Pretty accurate. You can try the script without installing anything at [repl.it](https://repl.it/@emre2/HIVE-language-detection). #### Bonus data: Language saturation on HIVE *** This was for a small period of time, but probably gives a good idea on the actively used languages at HIVE.  #### Notes *** - langdetect supports 55 languages and the returned code is [ISO 639-1 ](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) language code. - There is also a [langid](https://github.com/saffsd/langid.py) library with a little bit less precision, but with faster detection times. Check it out if you have tight time constraints.
author | emrebeyler |
---|---|
permlink | sunday-coding-sessions-detecting-the-language-of-hive-content |
category | hive-139531 |
json_metadata | {"app":"hiveblog/0.1","format":"markdown","image":["https://images.hive.blog/DQmZ9U8ujS5zy1CcsTvTVBoGcRWNdeS7yPaTZm1SKsueKxP/Screen%20Shot%202020-05-03%20at%2018.59.24.png"],"links":["https://pypi.org/project/langdetect/","https://repl.it/@emre2/HIVE-language-detection","https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes","https://github.com/saffsd/langid.py"],"tags":["python","programming"]} |
created | 2020-05-03 17:14:18 |
last_update | 2020-05-03 17:14:33 |
depth | 0 |
children | 9 |
last_payout | 2020-05-10 17:14:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 42.812 HBD |
curator_payout_value | 36.870 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 3,378 |
author_reputation | 448,535,049,068,622 |
root_title | "Sunday coding sessions: #1 Detecting the language of HIVE content" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 97,163,293 |
net_rshares | 114,283,324,819,226 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
chitty | 0 | 396,439,886,459 | 100% | ||
borysborys | 0 | 827,457,208 | 100% | ||
gerber | 0 | 683,446,567,629 | 10% | ||
stranger27 | 0 | 12,006,209,440 | 100% | ||
rxhector | 0 | 21,601,658,461 | 100% | ||
yury-vas | 0 | 320,920,533,535 | 100% | ||
inertia | 0 | 922,309,653,591 | 100% | ||
kibela | 0 | 6,052,886,277 | 24.5% | ||
alinalazareva | 0 | 707,567,861 | 14% | ||
jphamer1 | 0 | 3,539,567,732,751 | 100% | ||
someguy123 | 0 | 84,084,890,041 | 10% | ||
darkflame | 0 | 59,694,369,050 | 100% | ||
funnyman | 0 | 3,970,987,911 | 20% | ||
tangmo | 0 | 83,364,514,542 | 100% | ||
riskdebonair | 0 | 141,599,785,577 | 100% | ||
mendezand | 0 | 13,811,288,112 | 100% | ||
privex | 0 | 27,088,802,115 | 100% | ||
vadbars | 0 | 0 | 100% | ||
oneshot | 0 | 24,743,207,318 | 100% | ||
ucukertz | 0 | 2,981,468,564 | 100% | ||
ili0braz | 0 | 1,121,388,351 | 100% | ||
grider123 | 0 | 12,432,278,088 | 100% | ||
jerrybanfield | 0 | 1,038,154,871,400 | 100% | ||
drag33 | 0 | 94,717,698,374 | 100% | ||
mys | 0 | 2,389,426,314 | 0.67% | ||
rycharde | 0 | 2,688,823,635 | 10% | ||
mercadosaway | 0 | 702,601,374 | 100% | ||
ruel.cedeno | 0 | 4,670,129,002 | 100% | ||
giuatt07 | 0 | 275,202,325,757 | 25% | ||
maxer27 | 0 | 157,936,682,186 | 35% | ||
wf9877 | 0 | 650,785,908,261 | 100% | ||
sam99 | 0 | 4,211,013,894 | 100% | ||
whd | 0 | 821,931,841 | 0.67% | ||
netuoso | 0 | 1,807,200,083,536 | 100% | ||
sujitsawant | 0 | 7,935,731,997 | 100% | ||
jacekw | 0 | 54,960,351,638 | 100% | ||
rafalski | 0 | 1,175,429,564 | 5.6% | ||
codingdefined | 0 | 205,523,175,277 | 100% | ||
shitsignals | 0 | 6,656,361,172 | 5% | ||
themarkymark | 0 | 1,985,450,492,387 | 10% | ||
ralph-rennoldson | 0 | 808,460,328 | 1.6% | ||
yoogyart | 0 | 36,856,690,976 | 51% | ||
superhardness | 0 | 4,689,540,467,211 | 100% | ||
azirgraff | 0 | 25,510,793,109 | 100% | ||
techtek | 0 | 45,541,867,249 | 100% | ||
shihabieee | 0 | 1,416,006,411 | 100% | ||
nainaztengra | 0 | 43,683,614,919 | 9% | ||
djlethalskillz | 0 | 138,175,087,363 | 100% | ||
bashadow | 0 | 36,400,030,118 | 30% | ||
crokkon | 0 | 64,158,513,815 | 100% | ||
fbslo | 0 | 578,806,814 | 0.2% | ||
accelerator | 0 | 169,728,421,286 | 20% | ||
buildawhale | 0 | 4,919,074,693,431 | 10% | ||
deathwing | 0 | 4,142,740,556 | 10% | ||
mawit07 | 0 | 1,088,100,105 | 100% | ||
revisesociology | 0 | 215,617,278,754 | 20% | ||
isnochys | 0 | 37,585,844,464 | 28% | ||
elizibar | 0 | 16,598,812,364 | 100% | ||
tobetada | 0 | 73,430,968,199 | 10% | ||
pataty69 | 0 | 3,450,777,542 | 5% | ||
murattatar | 0 | 1,018,301,619 | 20% | ||
arabisouri | 0 | 73,956,265,363 | 100% | ||
mrsyria | 0 | 899,347,672 | 100% | ||
g10a | 0 | 789,140,216 | 3% | ||
malkoo45 | 0 | 116,326,269,564 | 100% | ||
kedi | 0 | 2,934,679,733 | 100% | ||
red-rose | 0 | 4,287,454,622 | 100% | ||
imisstheoldkanye | 0 | 213,183,147,537 | 75% | ||
unforgettable | 0 | 3,952,470,342 | 100% | ||
emrebeyler | 0 | 1,680,630,153,960 | 100% | ||
scuzzy | 0 | 1,474,982,732 | 5% | ||
zakia | 0 | 35,516,999,094 | 100% | ||
not-a-bird | 0 | 10,779,714,331 | 50% | ||
alaydroes83 | 0 | 566,209,022 | 100% | ||
evilest-fiend | 0 | 1,240,427,234 | 50% | ||
wajahatsardar | 0 | 70,773,551,698 | 100% | ||
mytechtrail | 0 | 32,371,074,675 | 15% | ||
forkonti | 0 | 562,281,658 | 100% | ||
nathen007 | 0 | 52,444,510,799 | 100% | ||
nokodemion | 0 | 23,657,464,004 | 100% | ||
rajib2k5 | 0 | 7,069,470,406 | 1.87% | ||
fourfourfun | 0 | 6,512,132,805 | 25% | ||
upmyvote | 0 | 7,155,555,311 | 10% | ||
tinowhale | 0 | 3,033,596,786 | 49% | ||
firedream | 0 | 3,300,887,635 | 100% | ||
hayirhah | 0 | 679,460,268 | 27.5% | ||
fromhell2sky | 0 | 9,652,270,427 | 24.5% | ||
bengy | 0 | 1,233,045,562 | 1% | ||
nealmcspadden | 0 | 93,744,825,733 | 10% | ||
baycan | 0 | 892,717,741 | 11% | ||
ahmedsy | 0 | 1,080,668,571 | 100% | ||
coinmeria | 0 | 745,562,070 | 35% | ||
portugalcoin | 0 | 27,228,778,462 | 20% | ||
chorock | 0 | 106,778,173,557 | 10% | ||
aakom | 0 | 20,810,256,147 | 100% | ||
kimjaguar | 0 | 2,703,489,898 | 50% | ||
psos | 0 | 26,446,319,632 | 50% | ||
darewealth | 0 | 637,287,064 | 10% | ||
shmoogleosukami | 0 | 2,935,883,682 | 10% | ||
cadawg | 0 | 19,308,347,498 | 7% | ||
chalacuna | 0 | 10,658,817,822 | 100% | ||
ahmetmertugrul | 0 | 832,386,610 | 100% | ||
dexterdev | 0 | 10,821,057,430 | 100% | ||
eddiespino | 0 | 298,051,507,171 | 100% | ||
tdogvoid | 0 | 537,550,369 | 100% | ||
agememnon | 0 | 1,422,248,739 | 49.5% | ||
ipromote | 0 | 79,965,496,021 | 10% | ||
flugschwein | 0 | 9,034,893,712 | 35% | ||
tipitip | 0 | 793,034,788 | 100% | ||
ahmeterbay | 0 | 10,361,381,341 | 100% | ||
raoul.poenar | 0 | 7,639,913,391 | 100% | ||
cst90 | 0 | 44,212,033,871 | 100% | ||
alexko-steemit | 0 | 12,066,324,418 | 100% | ||
thomasthewolf | 0 | 31,108,791,770 | 45% | ||
watchlist | 0 | 21,880,147,681 | 3.3% | ||
ruh | 0 | 815,613,170 | 100% | ||
reazuliqbal | 0 | 143,278,159,128 | 40% | ||
bulent1976 | 0 | 652,028,240 | 100% | ||
bestboom | 0 | 86,166,440,511 | 10% | ||
abrockman | 0 | 790,665,391,538 | 100% | ||
muratkbesiroglu | 0 | 45,332,478,400 | 100% | ||
mahyulmaulana | 0 | 2,377,130,162 | 100% | ||
manniman | 0 | 48,605,121,159 | 33% | ||
ronaldoavelino | 0 | 277,604,232,300 | 20% | ||
sereze | 0 | 148,168,745,861 | 100% | ||
racibo | 0 | 4,473,966,566 | 100% | ||
genoner | 0 | 2,319,539,725 | 46.55% | ||
freddio | 0 | 50,109,859,432 | 15% | ||
choco11oreo11 | 0 | 675,112,076 | 50% | ||
marijo-rm | 0 | 13,661,007,944 | 100% | ||
angelinafx | 0 | 4,826,387,008 | 6% | ||
roinv | 0 | 3,860,328,199 | 50% | ||
adeyemidrey | 0 | 80,833,318,547 | 100% | ||
jumbot | 0 | 19,783,769,930 | 55% | ||
wirago | 0 | 20,245,334,477 | 100% | ||
getpromoted | 0 | 222,960,201 | 100% | ||
promobot | 0 | 282,038,320,083 | 100% | ||
bilimkurgu | 0 | 20,278,731,181 | 100% | ||
solarwarrior | 0 | 1,657,266,386,969 | 100% | ||
gorans | 0 | 37,861,166,476 | 100% | ||
adrimonte | 0 | 2,474,029,024 | 100% | ||
cryptojiang | 0 | 337,652,489 | 100% | ||
luciomcabee | 0 | 646,658,579 | 100% | ||
agathusia | 0 | 805,708,222 | 100% | ||
sbi6 | 0 | 44,940,304,090 | 24.4% | ||
hemo | 0 | 1,256,492,819 | 50% | ||
quinteroyolanda | 0 | 543,330,806 | 100% | ||
kapitanrosomak | 0 | 9,224,993,658 | 100% | ||
gnomed0 | 0 | 3,083,505,568 | 100% | ||
tahirozgen | 0 | 19,484,899,406 | 100% | ||
pablorg94 | 0 | 606,339,437 | 100% | ||
donald.porter | 0 | 387,381,797,686 | 84% | ||
gallerani | 0 | 13,805,904,553 | 10% | ||
thehive | 0 | 29,154,676,690 | 40% | ||
daath | 0 | 2,491,866,361 | 100% | ||
elmauza | 0 | 1,052,880,907 | 100% | ||
goumao | 0 | 80,348,898,598 | 100% | ||
dlike | 0 | 117,464,602,443 | 10% | ||
triptolemus | 0 | 16,353,087,740 | 10% | ||
voxmortis | 0 | 527,944,132 | 0.2% | ||
joseph6232 | 0 | 1,500,955,342 | 100% | ||
emaillisahere | 0 | 908,426,199 | 100% | ||
white-star | 0 | 7,813,883,335 | 100% | ||
buzzbee | 0 | 615,263,323 | 50% | ||
ceruleanblue | 0 | 579,289,672 | 100% | ||
definethedollar | 0 | 275,968,165,551 | 50% | ||
gabbynhice | 0 | 78,844,636,130 | 100% | ||
caoimhin | 0 | 776,741,357 | 100% | ||
bobby.madagascar | 0 | 3,685,095,766 | 2.5% | ||
steemituplife | 0 | 590,353,809 | 25% | ||
marshalmugi | 0 | 30,887,422,016 | 50% | ||
podg3 | 0 | 1,340,591,330 | 100% | ||
steemwhalepower | 0 | 817,660,656 | 100% | ||
cryptoxicate | 0 | 142,153,383,410 | 16% | ||
fuadsm | 0 | 1,981,604,281 | 100% | ||
diegor | 0 | 22,936,812,141 | 100% | ||
jager567 | 0 | 0 | 1% | ||
onze | 0 | 3,814,194,163 | 50% | ||
daisybuzz | 0 | 1,873,300,234 | 50% | ||
jussbren | 0 | 3,103,573,480 | 100% | ||
dein-problem | 0 | -82,904,993 | -1% | ||
moneytron | 0 | 19,941,454,181 | 100% | ||
rasalom | 0 | 15,182,701,448 | 100% | ||
yuriy4 | 0 | 8,075,329,902 | 100% | ||
robmojo | 0 | 36,558,951,825 | 50% | ||
blackknight1423 | 0 | 0 | 100% | ||
bluerobo | 0 | 80,197,168,116 | 100% | ||
xxxxxxxxxx | 0 | 11,568,825,260,977 | 100% | ||
twizeh | 0 | 2,610,798,837 | 50% | ||
flyingbolt | 0 | 717,073,996 | 10% | ||
determine | 0 | 13,791,489,982 | 10% | ||
permaculturedude | 0 | 1,952,881,264 | 5% | ||
e-r-k-a-n | 0 | 73,640,870,073 | 100% | ||
idiosyncratic1 | 0 | 11,670,887,717 | 100% | ||
jamesbattler | 0 | 126,294,865,439 | 100% | ||
upvotenev | 0 | 5,893,851,022 | 100% | ||
hanke | 0 | 1,806,004,433 | 100% | ||
samflow | 0 | 613,026,307 | 100% | ||
cooperfelix | 0 | 3,885,569,381 | 15% | ||
steemslotgames | 0 | 29,913,893,278 | 20% | ||
doze | 0 | 50,101,641,172 | 50% | ||
denizcakmak | 0 | 763,460,571 | 100% | ||
cpt-sparrow | 0 | 15,611,349,525 | 100% | ||
ttg | 0 | 579,041,600,506 | 100% | ||
bitcoinator | 0 | 1,586,602,985 | 50% | ||
hedgeserv | 0 | 616,691,277 | 100% | ||
maryincryptoland | 0 | 20,320,725,668 | 100% | ||
gulf41 | 0 | 5,492,884,428 | 100% | ||
prodipkumer | 0 | 3,374,892,791 | 100% | ||
likwid | 0 | 30,634,200,621,824 | 100% | ||
steemvpn | 0 | 2,454,909,184 | 76% | ||
treze | 0 | 1,090,714,456 | 50% | ||
iktisat | 0 | 1,039,864,869 | 100% | ||
oxoskva | 0 | 901,396,909 | 100% | ||
fsm-liquid | 0 | 12,744,437,691 | 100% | ||
juancho10 | 0 | 1,422,249,833 | 37.5% | ||
suigener1s | 0 | 541,454,458 | 100% | ||
kgswallet | 0 | 2,895,077,556 | 100% | ||
yeswecan | 0 | 4,540,772,202 | 80% | ||
steem.leo | 0 | 111,056,902,747 | 9.9% | ||
leo.voter | 0 | 22,400,402,953 | 1.5% | ||
freddio.sport | 0 | 5,635,580,154 | 15% | ||
dcinside | 0 | 1,812,092,769 | 50% | ||
asteroids | 0 | 22,456,678,258 | 10% | ||
samscalet | 0 | 341,052,310 | 100% | ||
leo.syndication | 0 | 2,341,149,041 | 10% | ||
drlobes | 0 | 9,376,021,251 | 50% | ||
one.life | 0 | 9,237,147,840 | 9.98% | ||
hugo1954 | 0 | 7,061,849,690 | 100% | ||
acta | 0 | 10,402,511,605 | 90% | ||
the-table | 0 | 9,301,946,264 | 70% | ||
maxuvd | 0 | 39,324,994,145 | 10% | ||
maxuve | 0 | 84,503,108,089 | 20% | ||
thehouse | 0 | 1,912,742,415 | 100% | ||
aa111 | 0 | 248,179,163 | 100% | ||
youngmusician | 0 | 3,669,948,311 | 100% | ||
silverquest | 0 | 120,065,593,110 | 75% | ||
huaren.news | 0 | 220,942,422,185 | 5% | ||
gerbo | 0 | 73,294,665 | 10% | ||
honeychip | 0 | 3,879,455,267 | 50% | ||
tongchat27 | 0 | 936,258,760,636 | 100% | ||
diamond-head | 0 | 4,297,073,252 | 100% | ||
birfincankahve | 0 | 592,349,695 | 100% | ||
novelcoronavirus | 0 | 20,378,165 | 100% | ||
earthworld | 0 | 3,415,591,654 | 35% | ||
tommys.shop | 0 | 1,413,781,927 | 75% | ||
steemcityrewards | 0 | 36,752,685,147 | 10% | ||
aivote | 0 | 633,514,024 | 5% | ||
picciridda2 | 0 | 4,628,451,595 | 100% | ||
innerhive | 0 | 37,759,780,002,465 | 100% | ||
hivewaves | 0 | 588,406,095 | 80% | ||
fsm-core | 0 | 1,817,458,339 | 100% | ||
maxwellelisha19 | 0 | 4,001,505,423 | 100% | ||
blue-witness | 0 | 3,803,878,481 | 100% | ||
gitplait | 0 | 51,639,853,943 | 100% | ||
sunsan | 0 | 542,314,589 | 7% | ||
lazarmarlin | 0 | 0 | 100% | ||
pentagramma | 0 | 0 | 100% | ||
spacetoon | 0 | 523,860,020 | 100% | ||
whitesakura | 0 | 0 | 100% |
Interesting to see the number of languages being used, as hive Block Chain awareness grows it will be nice to see the number of native languages grow also. now all we need is an on-chain post translation button on some of the front ends instead of having to use google translate. A translation widget that front end developers can add to their settings page and then a translate post button directly on the post the users are looking at. Adding one more item to the three dot, (ellipsis), function that peakd uses for example.
author | bashadow |
---|---|
permlink | re-emrebeyler-q9ro4q |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2020.04.5"} |
created | 2020-05-03 17:48:27 |
last_update | 2020-05-03 17:48:27 |
depth | 1 |
children | 0 |
last_payout | 2020-05-10 17:48:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 527 |
author_reputation | 100,388,692,638,882 |
root_title | "Sunday coding sessions: #1 Detecting the language of HIVE content" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 97,163,904 |
net_rshares | 0 |
@emrebeyler my friend, pt please! ;) Cheers!
author | doze |
---|---|
permlink | re-emrebeyler-q9rngb |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2020.04.5"} |
created | 2020-05-03 17:33:51 |
last_update | 2020-05-03 17:33:51 |
depth | 1 |
children | 0 |
last_payout | 2020-05-10 17:33:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 44 |
author_reputation | 489,128,026,579,070 |
root_title | "Sunday coding sessions: #1 Detecting the language of HIVE content" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 97,163,630 |
net_rshares | 0 |
This is a fun and useful publication. We are picking it as one of the nice dev publication on the Hive chain for the day, and we will feature it on our front-end, gitplait.tech. Well done, and we wish you success on the project you are building.
author | gitplait |
---|---|
permlink | q9t9ax |
category | hive-139531 |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2020-05-04 14:23:27 |
last_update | 2020-05-04 14:23:27 |
depth | 1 |
children | 0 |
last_payout | 2020-05-11 14:23:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 246 |
author_reputation | 911,220,543,569 |
root_title | "Sunday coding sessions: #1 Detecting the language of HIVE content" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 97,181,576 |
net_rshares | 0 |
Polish community in the top#10 😊
author | mys |
---|---|
permlink | re-emrebeyler-q9sp6q |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2020.04.5"} |
created | 2020-05-04 07:08:51 |
last_update | 2020-05-04 07:08:51 |
depth | 1 |
children | 1 |
last_payout | 2020-05-11 07:08:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 32 |
author_reputation | 14,948,575,541,320 |
root_title | "Sunday coding sessions: #1 Detecting the language of HIVE content" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 97,174,795 |
net_rshares | 9,413,677,147 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
kapitanrosomak | 0 | 9,413,677,147 | 100% |
heh, it's a very small time frame so that may not show the real picture but yeah, pl looks strong.
author | emrebeyler |
---|---|
permlink | q9sr8s |
category | hive-139531 |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2020-05-04 07:53:15 |
last_update | 2020-05-04 07:53:15 |
depth | 2 |
children | 0 |
last_payout | 2020-05-11 07:53:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 98 |
author_reputation | 448,535,049,068,622 |
root_title | "Sunday coding sessions: #1 Detecting the language of HIVE content" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 97,175,336 |
net_rshares | 0 |
Damn it. This is exactly what I needed, but in JS. Time to go hunting for a library myself.
author | rishi556 |
---|---|
permlink | re-emrebeyler-qa3mav |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2020.05.1"} |
created | 2020-05-10 04:40:06 |
last_update | 2020-05-10 04:40:06 |
depth | 1 |
children | 0 |
last_payout | 2020-05-17 04:40:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 91 |
author_reputation | 132,595,269,899,271 |
root_title | "Sunday coding sessions: #1 Detecting the language of HIVE content" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 97,287,149 |
net_rshares | 0 |
That's pretty neat!
author | shmoogleosukami |
---|---|
permlink | re-emrebeyler-q9s35a |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2020.04.5"} |
created | 2020-05-03 23:12:45 |
last_update | 2020-05-03 23:12:45 |
depth | 1 |
children | 0 |
last_payout | 2020-05-10 23:12:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 19 |
author_reputation | 225,552,949,972,923 |
root_title | "Sunday coding sessions: #1 Detecting the language of HIVE content" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 97,168,732 |
net_rshares | 0 |
Hmm was expecting korean to be second.. Perhaps it is on steem blockchain.
author | tngflx |
---|---|
permlink | re-emrebeyler-q9sv68 |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2020.04.5"} |
created | 2020-05-04 09:18:09 |
last_update | 2020-05-04 09:18:09 |
depth | 1 |
children | 1 |
last_payout | 2020-05-11 09:18:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 74 |
author_reputation | 17,396,455,988,713 |
root_title | "Sunday coding sessions: #1 Detecting the language of HIVE content" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 97,176,356 |
net_rshares | 0 |
It might be the case that it was their sleeping time. This data is a timeframe of 4-5 hours only.
author | emrebeyler |
---|---|
permlink | q9swbd |
category | hive-139531 |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2020-05-04 09:42:48 |
last_update | 2020-05-04 09:42:48 |
depth | 2 |
children | 0 |
last_payout | 2020-05-11 09:42:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 97 |
author_reputation | 448,535,049,068,622 |
root_title | "Sunday coding sessions: #1 Detecting the language of HIVE content" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 97,176,691 |
net_rshares | 0 |