<center>  *** La versione italiana  si trova sotto quella inglese  The italian version  is under the english one  *** # Python and Hive: A Tool to Simplify Curation | Work in Progress!  </center> <div class="text-justify"> My [first Python project](https://peakd.com/hive-139531/@arc7icwolf/engita-python-and-hive-my-first-attempt-with-a-bot-8yt) involved creating a small bot that could upvote and comment on posts under which I had previously left a comment containing a certain keyword: its usefulness is to be able to use only one account to choose if and how much to upvote a post with my secondary account. In fact, sometimes I might want to upvote only with my main account, sometimes only with my secondary account, sometimes with both but with different percentages... that's why setting up a curation trail with hive.vote in these cases might be too restrictive, while having my own custom bot that allows, each time, to choose what to do enables me to be much more flexible and avoid wasting precious upvotes. In comparison with the code shared last time I have made some small improvements, some suggested by other users, others added to make the code more robust and less likely to crash unexpectedly. Now I am finishing some last small details, but meanwhile you can already find the script on [GitHub](https://github.com/Arc7icWolf/upvote-and-comment-bot-main)... or at least you will be able to find it as soon as I set the privacy to “public” 😂 so if you click on the link shortly after this post is published you will sadly see nothing yet. <br> ## <center>Now let's move onto a new project!</center> Having (almost) finished the first project, it's time to move on to something different, in an effort to learn new stuff! This time the idea of what to make comes from a suggestion of @stewie.wieno, who asked me if, using Python, it would be feasible to create something that could make possible the creation of a sort of **curation trail** to support Italian users on Hive. Therefore, my idea was to design a script that had the following features: - find posts with a particular tag (e.g., **ita**); - check if the post is written in **Italian language**; - check if the post has **at least 500 words** (*or 1000 if the post is written in two languages*). If these requirements are met, the post is added to a special list. Here the task of this first script ends. The list can then be checked **manually** by one or more curators who make sure that the posts are of quality, are not spam and do not violate some Hive rule. After that I would like to create a second script that would take the cleaned-up list and proceed to upvote the selected posts, leaving each one also a comment. This would greatly simplify and speed up the curators' work, with the two scripts taking care of almost the entire process automatically. Of course this is only the beginning, but building such a tool seemed like an interesting exercise, so I wanted to try this little experiment :) <br> ## <center>And here's the code!</center> Below is the code for the first of the two scripts I am working on, already done and ready to be polished: ```python #!/usr/bin/env python3 """A script to simplify curation on Hive""" from beem import Hive from beem.blockchain import Blockchain import beem.instance import os import json import markdown from bs4 import BeautifulSoup import re from langdetect import detect_langs, LangDetectException as lang_e # Instanciate Hive HIVE_API_NODE = "https://api.deathwing.me" HIVE = Hive(node=[HIVE_API_NODE]) beem.instance.set_shared_blockchain_instance(HIVE) def get_block_number(): if not os.path.exists("last_block.txt"): return None with open("last_block.txt", "r") as infile: block_num = infile.read() return int(block_num) def set_block_number(block_num): with open("last_block.txt", "w") as outfile: outfile.write(f"{block_num}") def convert_and_count_words(md_text): # Convert text from markdown to HTML html = markdown.markdown(md_text) # Get text soup = BeautifulSoup(html, "html.parser") text = soup.get_text() # Count text words words = re.findall(r"\b\w+\b", text) return len(words) def text_language(text): # Detect languages try: languages = detect_langs(text) except lang_e: return False, 0 # Count languages num_languages = len(languages) # Sort languages from more to less probable languages_sorted = sorted(languages, key=lambda x: x.prob, reverse=True) # Check most probable languages (up to 2) top_languages = ( languages_sorted[:2] if len(languages_sorted) > 1 else languages_sorted ) # Check it target language is among the top languages contains_target_lang = any(lang.lang == "it" for lang in top_languages) # Return True/False and number of languages detected return contains_target_lang, num_languages def hive_comments_stream(): blockchain = Blockchain(node=[HIVE_API_NODE]) start_block = get_block_number() for op in blockchain.stream( opNames=["comment"], start=start_block, threading=False, thread_num=1 ): set_block_number(op["block_num"]) # Skip comments if op.get("parent_author") != "": continue # Check if there's the key "json_metadata" if "json_metadata" not in op.keys(): continue # Deserialize 'json_metadata' json_metadata = json.loads(op["json_metadata"]) # Check if there's the key "tags" if "tags" not in json_metadata: continue # Check if there's the tag we are looking for if "ita" not in json_metadata["tags"]: continue post_test = op.get("body") # Check post language is_valid_language, languages_num = text_language(post_test) if is_valid_language == False: continue # Check post length word_count = convert_and_count_words(post_test) if languages_num == 1: if word_count < 500: print("Post is too short") continue if languages_num > 1: if word_count < 1000: print("Post is too short") continue # data of the post post_author = op["author"] post_permlink = op["permlink"] post_url = f"https://peakd.com/@{post_author}/{post_permlink}" terminal_message = ( f"Found eligible post: " f"{post_url} " f"in block {op['block_num']}" ) print(terminal_message) with open("urls", "a", encoding="utf-8") as file: file.write(post_url + "\n") if __name__ == "__main__": hive_comments_stream() ``` <br> This time there are no templates or configuration files. Like last time I would be very happy to receive suggestions and advice on how to make the code even more efficient and correct :) <br> >images property of their respective owners >to support the #OliodiBalena community, @balaenoptera is 3% beneficiary of this post  *** If you've read this far, thank you! If you want to leave an upvote, a reblog, a follow, a comment... well, any sign of life is really much appreciated! </div> <center>  *** Versione italiana  Italian version  ***  # Python e Hive: uno Strumento per Semplificare l'Attività di Curation | Lavori in Corso!  </center> <div class="text-justify"> Il mio [primo progetto](https://peakd.com/hive-139531/@arc7icwolf/engita-python-and-hive-my-first-attempt-with-a-bot-8yt) scritto in Python ha riguardato la creazione di un piccolo bot che potesse upvotare e commentare i post sotto cui io abbia lasciato in precedenza un commento contenente una determinata parola chiave: la sua utilità è quella di poter utilizzare un solo account per decidere come e se upvotare un post con il mio account secondario. Alle volte infatti potrei voler upvotare solo con il mio account principale, altre solo con quello secondario, altre ancora con entrambi ma con percentuali diverse... ecco perchè configurare una curation trail con hive.vote in questi casi potrebbe essere troppo limitante, mentre avere un proprio bot personalizzato che consenta, di volta in volta, di scegliere cosa fare permette di essere molto più flessibili ed evitare di sprecare preziosi upvotes. Rispetto al codice condiviso la scorsa volta ho apportato alcune piccole migliorie, alcune suggeritemi da altri utenti, altre aggiunte per rendere il codice più robusto e meno incline a crash imprevisti. Ora sto rifinendo alcune ultime piccole cose, ma intanto potete già trovare lo script su [GitHub](https://github.com/Arc7icWolf/upvote-and-comment-bot-main)... o almeno potrete trovarlo appena avrò impostato la privacy su "pubblica" 😂 per cui se clicclate sul link a poca distanza dalla pubblicazione di questo post non vedrete, purtroppo, ancora nulla. <br> ## <center>Adesso si passa ad un nuovo progetto!</center> Finito (quasi) il primo progetto, è tempo di passare a qualcosa di diverso, nell'ottica di provare ad imparare cose sempre nuove! Stavolta l'idea di cosa realizzare deriva da un suggerimento di @stewie.wieno, che mi ha chiesto se, sfruttando Python, fosse possibile creare qualcosa che potesse agevolare la creazione di una sorta di **curation trail** a sostegno degli utenti italiani su Hive. La mia idea è stata perciò quella di progettare uno script che avesse le seguenti funzioni: - individuare i post muniti di un particolare tag (es. **ita**); - controllare che il post sia scritto in **lingua italiana**; - controllare che il post abbia **almeno 500 parole** (*o 1000 se il post è scritto in due lingue*). Se questi requisiti sono soddisfatti il post viene aggiunto ad un'apposita lista. Qui finisce il compito di questo primo script. La lista può così essere controllata **manualmente** da uno o più curatori che si accertino che i post siano di qualità, non siano spam e non violino qualche regola di Hive. Dopo di che vorrei creare un secondo script che si occupi di prendere la lista ripulita e proceda ad upvotare i post selezionati, lasciando a ciascuno un commento informativo. In questo modo il lavoro dei curatori sarebbe notevolmente semplificato e velocizzato, occupandosi i due script di praticamente tutta la procedura in maniera automatizzata. Ovviamente questo è solo un inizio, ma costruire uno strumento del genere sembrava un esercizio interessante, per cui ho voluto provare a fare questo piccolo esperimento :) <br> ## <center>Ed ecco il codice!</center> A seguire il codice del primo dei due script a cui sto lavorando, già funzionante e pronto per essere rifinito: ```python #!/usr/bin/env python3 """A script to simplify curation on Hive""" from beem import Hive from beem.blockchain import Blockchain import beem.instance import os import json import markdown from bs4 import BeautifulSoup import re from langdetect import detect_langs, LangDetectException as lang_e # Instanciate Hive HIVE_API_NODE = "https://api.deathwing.me" HIVE = Hive(node=[HIVE_API_NODE]) beem.instance.set_shared_blockchain_instance(HIVE) def get_block_number(): if not os.path.exists("last_block.txt"): return None with open("last_block.txt", "r") as infile: block_num = infile.read() return int(block_num) def set_block_number(block_num): with open("last_block.txt", "w") as outfile: outfile.write(f"{block_num}") def convert_and_count_words(md_text): # Convert text from markdown to HTML html = markdown.markdown(md_text) # Get text soup = BeautifulSoup(html, "html.parser") text = soup.get_text() # Count text words words = re.findall(r"\b\w+\b", text) return len(words) def text_language(text): # Detect languages try: languages = detect_langs(text) except lang_e: return False, 0 # Count languages num_languages = len(languages) # Sort languages from more to less probable languages_sorted = sorted(languages, key=lambda x: x.prob, reverse=True) # Check most probable languages (up to 2) top_languages = ( languages_sorted[:2] if len(languages_sorted) > 1 else languages_sorted ) # Check it target language is among the top languages contains_target_lang = any(lang.lang == "it" for lang in top_languages) # Return True/False and number of languages detected return contains_target_lang, num_languages def hive_comments_stream(): blockchain = Blockchain(node=[HIVE_API_NODE]) start_block = get_block_number() for op in blockchain.stream( opNames=["comment"], start=start_block, threading=False, thread_num=1 ): set_block_number(op["block_num"]) # Skip comments if op.get("parent_author") != "": continue # Check if there's the key "json_metadata" if "json_metadata" not in op.keys(): continue # Deserialize 'json_metadata' json_metadata = json.loads(op["json_metadata"]) # Check if there's the key "tags" if "tags" not in json_metadata: continue # Check if there's the tag we are looking for if "ita" not in json_metadata["tags"]: continue post_test = op.get("body") # Check post language is_valid_language, languages_num = text_language(post_test) if is_valid_language == False: continue # Check post length word_count = convert_and_count_words(post_test) if languages_num == 1: if word_count < 500: print("Post is too short") continue if languages_num > 1: if word_count < 1000: print("Post is too short") continue # data of the post post_author = op["author"] post_permlink = op["permlink"] post_url = f"https://peakd.com/@{post_author}/{post_permlink}" terminal_message = ( f"Found eligible post: " f"{post_url} " f"in block {op['block_num']}" ) print(terminal_message) with open("urls", "a", encoding="utf-8") as file: file.write(post_url + "\n") if __name__ == "__main__": hive_comments_stream() ``` <br> Stavolta non ci sono templates o file di configurazione. Come l'altra volta sarei felicissimo di ricevere suggerimenti e consigli sul come rendere il codice ancora più efficiente e corretto :) <br> >immagini di proprietà dei rispettivi proprietari >a supporto della community #OliodiBalena, il 3% delle ricompense di questo post va a @balaenoptera  Se sei arrivato a leggere fin qui, grazie! Se hai voglia di lasciare un upvote, un reblog, un follow, un commento... be', un qualsiasi segnale di vita, in realtà, è molto apprezzato! </div> Posted Using [InLeo Alpha](https://inleo.io/@arc7icwolf/engita-python-and-hive-a-tool-to-simplify-curation-work-in-progress-2ac)
author | arc7icwolf | ||||||
---|---|---|---|---|---|---|---|
permlink | engita-python-and-hive-a-tool-to-simplify-curation-work-in-progress-2ac | ||||||
category | hive-146620 | ||||||
json_metadata | {"app":"leothreads/0.3","format":"markdown","tags":["hive-146620","python","hive","dev","pob","pimp","cent","inleo"],"canonical_url":"https://inleo.io/@arc7icwolf/engita-python-and-hive-a-tool-to-simplify-curation-work-in-progress-2ac","links":["https://img.inleo.io/DQmUs9qG3AyLrLfQHdu4ShZPEKBEj9m4Q7KRDgqSFvfh6Kr/cover%20python.jpeg)","https://images.ecency.com/DQmQ25zcp9Mna5r5gtLp786kVkVUpkVnQwgG7oWuMo88d7P/optimized_image.jpeg)","https://images.ecency.com/DQmNuqRpdWgTaWvjwbmaVWSemm13V7viV9jyRyVFHiMSbYA/optimized_image_1_.jpeg)","https://images.ecency.com/DQmQ25zcp9Mna5r5gtLp786kVkVUpkVnQwgG7oWuMo88d7P/optimized_image.jpeg)","https://images.ecency.com/DQmNuqRpdWgTaWvjwbmaVWSemm13V7viV9jyRyVFHiMSbYA/optimized_image_1_.jpeg)","https://images.ecency.com/DQmZpFCRtBGSFZ8tZmeykECyXKvxVgh3N6h4zDBSWDVXFvk/divisorio_2.0_inizio.png)","https://peakd.com/hive-139531/@arc7icwolf/engita-python-and-hive-my-first-attempt-with-a-bot-8yt)","https://github.com/Arc7icWolf/upvote-and-comment-bot-main)...","https://api.deathwing.me\"","https://peakd.com/@{post_author}/{post_permlink}\"","https://images.ecency.com/DQmR3FkFbRrZAA3jYtS2bcrk6ZfoZzCM8W3HFbRBpXBwio3/divisorio_2.0_finale.png)","https://images.ecency.com/DQmdugxRBRJLcSBmbmPD4ttJfVtaset5gGrdyqbETRa1eZp/divisorio_definitivo.gif)","https://images.ecency.com/DQmQ25zcp9Mna5r5gtLp786kVkVUpkVnQwgG7oWuMo88d7P/optimized_image.jpeg)","https://images.ecency.com/DQmQ25zcp9Mna5r5gtLp786kVkVUpkVnQwgG7oWuMo88d7P/optimized_image.jpeg\")","https://img.inleo.io/DQmUs9qG3AyLrLfQHdu4ShZPEKBEj9m4Q7KRDgqSFvfh6Kr/cover%20python.jpeg)","https://images.ecency.com/DQmZpFCRtBGSFZ8tZmeykECyXKvxVgh3N6h4zDBSWDVXFvk/divisorio_2.0_inizio.png)","https://peakd.com/hive-139531/@arc7icwolf/engita-python-and-hive-my-first-attempt-with-a-bot-8yt)","https://github.com/Arc7icWolf/upvote-and-comment-bot-main)...","https://api.deathwing.me\"","https://peakd.com/@{post_author}/{post_permlink}\"","https://images.ecency.com/DQmR3FkFbRrZAA3jYtS2bcrk6ZfoZzCM8W3HFbRBpXBwio3/divisorio_2.0_finale.png)","https://inleo.io/@arc7icwolf/engita-python-and-hive-a-tool-to-simplify-curation-work-in-progress-2ac)"],"images":[],"isPoll":false,"dimensions":{}} | ||||||
created | 2024-08-27 20:54:21 | ||||||
last_update | 2024-08-27 20:54:21 | ||||||
depth | 0 | ||||||
children | 25 | ||||||
last_payout | 2024-09-03 20:54:21 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 5.700 HBD | ||||||
curator_payout_value | 5.808 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 16,398 | ||||||
author_reputation | 496,501,933,694,683 | ||||||
root_title | "[ENG/ITA] Python and Hive: A Tool to Simplify Curation | Work in Progress!" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 0 | ||||||
post_id | 136,587,819 | ||||||
net_rshares | 45,793,300,653,907 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
boatymcboatface | 0 | 161,967,262,960 | 8% | ||
drifter1 | 0 | 1,532,029,444 | 4% | ||
kingscrown | 0 | 304,049,587 | 8% | ||
kevinwong | 0 | 1,636,879,440 | 0.8% | ||
theshell | 0 | 43,324,219,035 | 8% | ||
eric-boucher | 0 | 21,713,560,408 | 4% | ||
juanmiguelsalas | 0 | 1,744,488,919 | 2.4% | ||
kaylinart | 0 | 1,923,780,445 | 4% | ||
good-karma | 0 | 10,928,843,855 | 1% | ||
jacor | 0 | 2,276,993,192 | 4% | ||
cloh76 | 0 | 5,711,747,093 | 4% | ||
nascimentoab | 0 | 620,551,490 | 4% | ||
joshglen | 0 | 1,325,687,390 | 8% | ||
pipokinha | 0 | 68,646,471,534 | 100% | ||
sunshine | 0 | 23,109,548,498 | 4% | ||
psygambler | 0 | 680,318,306 | 4% | ||
randomblock1 | 0 | 572,247,946 | 8% | ||
lemouth | 0 | 134,869,637,605 | 4.8% | ||
someguy123 | 0 | 19,419,990,927 | 4% | ||
shadowspub | 0 | 1,518,524,470 | 0.75% | ||
alaqrab | 0 | 808,011,913 | 4% | ||
dadview | 0 | 4,168,968,458 | 7.5% | ||
tfeldman | 0 | 7,784,238,483 | 4% | ||
lk666 | 0 | 2,893,618,809 | 4% | ||
cnfund | 0 | 17,456,328,784 | 8% | ||
boxcarblue | 0 | 21,289,132,427 | 4% | ||
justyy | 0 | 63,351,950,397 | 8% | ||
michelle.gent | 0 | 4,948,992,091 | 1.6% | ||
curatorwhale | 0 | 32,665,219,896 | 87.9% | ||
haddock | 0 | 593,584,554 | 100% | ||
curie | 0 | 486,372,745,695 | 8% | ||
modernzorker | 0 | 6,013,223,773 | 5.6% | ||
moretea | 0 | 837,754,628 | 4% | ||
mangos | 0 | 2,330,231,546,703 | 35% | ||
dashfit | 0 | 748,810,062 | 4% | ||
tristancarax | 0 | 1,044,461,946 | 4% | ||
esteemapp | 0 | 2,362,619,363 | 1% | ||
yadamaniart | 0 | 6,291,178,513 | 4% | ||
bigtakosensei | 0 | 2,808,202,403 | 2% | ||
valth | 0 | 2,467,553,526 | 4% | ||
dreemsteem | 0 | 3,613,001,396 | 1.5% | ||
metroair | 0 | 38,662,381,668 | 8% | ||
driptorchpress | 0 | 3,175,140,438 | 2% | ||
sardrt | 0 | 1,237,057,024 | 10% | ||
elizacheng | 0 | 16,016,116,460 | 9% | ||
themadgoat | 0 | 640,203,580 | 4% | ||
shaunmza | 0 | 355,331,723,205 | 100% | ||
mariaalmeida | 0 | 18,961,313,832 | 100% | ||
privex | 0 | 5,721,439,648 | 8% | ||
boynashruddin | 0 | 1,172,776,269 | 8% | ||
torkot | 0 | 1,268,981,049 | 4% | ||
ambyr00 | 0 | 905,236,420 | 1.2% | ||
gmedley | 0 | 594,168,900 | 4% | ||
gifmaster | 0 | 58,675,663,436 | 100% | ||
steemiteducation | 0 | 2,176,961,473 | 4% | ||
c0ff33a | 0 | 288,985,266,245 | 7.5% | ||
dhimmel | 0 | 60,541,039,984 | 2.8% | ||
detlev | 0 | 45,436,818,883 | 2.4% | ||
chasmic-cosm | 0 | 1,249,088,387 | 4% | ||
lizanomadsoul | 0 | 2,454,819,798 | 2% | ||
dune69 | 0 | 963,997,516 | 8% | ||
prostosun | 0 | 506,457,338 | 0.8% | ||
frankydoodle | 0 | 523,606,199 | 4% | ||
federacion45 | 0 | 12,002,577,746 | 4% | ||
amberyooper | 0 | 1,003,140,084 | 4% | ||
gamersclassified | 0 | 7,715,530,398 | 4% | ||
forykw | 0 | 27,557,443,392 | 4% | ||
xplosive | 0 | 22,450,045,404 | 75% | ||
mobbs | 0 | 23,792,741,938 | 8% | ||
eliel | 0 | 1,865,583,888 | 8% | ||
jerrybanfield | 0 | 27,912,784,841 | 8% | ||
rt395 | 0 | 2,297,657,934 | 1.5% | ||
bitcoinman | 0 | 23,014,380,476 | 15% | ||
bitrocker2020 | 0 | 17,429,028,155 | 1.6% | ||
aleister | 0 | 41,604,981,866 | 10% | ||
gohba.handcrafts | 0 | 593,931,346 | 7% | ||
kilianmiguel | 0 | 479,336,770 | 2.4% | ||
maxdevalue | 0 | 1,074,872,103 | 8% | ||
sustainablyyours | 0 | 2,337,921,214 | 4% | ||
deadgrlsuppastar | 0 | 3,974,963,982 | 8% | ||
arunava | 0 | 22,957,596,684 | 3.2% | ||
juancar347 | 0 | 26,487,349,599 | 4% | ||
schoolforsdg4 | 0 | 561,799,051 | 5% | ||
samminator | 0 | 2,705,964,192 | 2.4% | ||
giuatt07 | 0 | 961,887,927,376 | 52% | ||
zerotoone | 0 | 1,606,321,976 | 4% | ||
mahdiyari | 0 | 282,170,819,521 | 20% | ||
vm2904 | 0 | 21,980,859,029 | 15% | ||
sam99 | 0 | 12,550,185,923 | 21% | ||
saffisara | 0 | 14,638,718,161 | 15% | ||
aboutyourbiz | 0 | 1,473,563,777 | 8% | ||
derosnec | 0 | 840,029,492 | 4% | ||
dandesign86 | 0 | 17,131,195,618 | 8% | ||
mamadini | 0 | 5,619,428,378 | 35% | ||
jayna | 0 | 31,477,093,278 | 4.5% | ||
deanlogic | 0 | 2,097,537,391 | 4% | ||
hhayweaver | 0 | 1,442,163,248 | 2% | ||
finkistinger | 0 | 1,324,523,619 | 4% | ||
princessmewmew | 0 | 21,309,294,610 | 7.5% | ||
joeyarnoldvn | 0 | 463,053,004 | 1.47% | ||
decomoescribir | 0 | 1,248,766,266 | 4% | ||
diabolika | 0 | 1,561,464,503 | 4% | ||
hardikv | 0 | 919,415,480 | 7.5% | ||
fnux | 0 | 556,211,730 | 4% | ||
pipiczech | 0 | 3,611,335,347 | 8% | ||
edthecanadian | 0 | 1,171,491,289 | 6.45% | ||
summertooth | 0 | 1,243,573,521 | 15% | ||
empath | 0 | 6,936,684,959 | 4% | ||
tattoodjay | 0 | 247,479,218,531 | 7.5% | ||
minnowbooster | 0 | 61,995,204,253 | 1.6% | ||
lenasveganliving | 0 | 722,620,161 | 4% | ||
felt.buzz | 0 | 44,568,091,967 | 7.5% | ||
neumannsalva | 0 | 7,206,595,765 | 4% | ||
stayoutoftherz | 0 | 230,142,056,145 | 2% | ||
coindevil | 0 | 4,369,999,792 | 6.4% | ||
nyinyiwin | 0 | 6,398,838,789 | 50% | ||
fiftysixnorth | 0 | 1,694,195,106 | 4.5% | ||
mhel | 0 | 823,337,454 | 1.6% | ||
moeknows | 0 | 57,530,374,357 | 35% | ||
investingpennies | 0 | 24,236,415,585 | 8% | ||
kharrazi | 0 | 1,035,297,100 | 25% | ||
val.halla | 0 | 2,869,753,262 | 10% | ||
travelingmercies | 0 | 7,544,813,212 | 50% | ||
vikar | 0 | 5,439,519,875 | 10% | ||
pepskaram | 0 | 863,201,003 | 4% | ||
masummim50 | 0 | 9,756,832,700 | 100% | ||
sunisa | 0 | 652,288,708 | 4% | ||
dipom98 | 0 | 1,733,375,393 | 4% | ||
spiceboyz | 0 | 1,601,068,353 | 50% | ||
zyx066 | 0 | 4,828,950,335 | 2.4% | ||
chrisdavidphoto | 0 | 1,856,966,253 | 2.4% | ||
garudi | 0 | 602,086,875 | 8% | ||
revo | 0 | 17,213,512,436 | 8% | ||
mulletwang | 0 | 468,484,915 | 4% | ||
rocky1 | 0 | 1,169,398,454,209 | 1.2% | ||
stickchumpion | 0 | 1,496,322,062 | 4% | ||
tipu | 0 | 3,880,438,123,088 | 20% | ||
thelordsharvest | 0 | 2,686,430,970 | 8% | ||
aidefr | 0 | 823,303,939 | 4% | ||
torico | 0 | 2,227,076,221 | 2.64% | ||
molovelly | 0 | 779,574,185 | 7.5% | ||
sorin.cristescu | 0 | 2,761,882,979 | 0.5% | ||
therealwolf | 0 | 42,844,955,501 | 4% | ||
amphlux | 0 | 2,708,924,058 | 4% | ||
vmoldo | 0 | 486,175,260 | 6.4% | ||
minnowpowerup | 0 | 1,309,841,132 | 4% | ||
yangyanje | 0 | 836,909,631 | 4% | ||
splash-of-angs63 | 0 | 4,950,062,268 | 20% | ||
derekvonzarovich | 0 | 690,354,421 | 4% | ||
cryptononymous | 0 | 2,881,319,900 | 4% | ||
jlsplatts | 0 | 23,825,510,992 | 2% | ||
meno | 0 | 51,911,909,264 | 4% | ||
thealliance | 0 | 296,652,507,018 | 15% | ||
buttcoins | 0 | 3,364,332,129 | 1.6% | ||
bifilarcoil | 0 | 592,165,088 | 4% | ||
bigdizzle91 | 0 | 1,267,976,354 | 4% | ||
esteem.app | 0 | 288,517,667 | 1% | ||
steemed-proxy | 0 | 1,583,511,250,184 | 8% | ||
fatkat | 0 | 611,259,233 | 3.99% | ||
peaceandwar | 0 | 1,270,665,187 | 4% | ||
marcoriccardi | 0 | 1,506,845,206 | 8% | ||
bartosz546 | 0 | 12,407,577,047 | 4% | ||
tazbaz | 0 | 829,950,514 | 4% | ||
kiaazad | 0 | 45,481,117,544 | 100% | ||
dreamm | 0 | 3,316,451,483 | 50% | ||
fedesox | 0 | 16,453,123,170,541 | 100% | ||
liverpool-fan | 0 | 1,152,370,488 | 25% | ||
simgirl | 0 | 2,765,647,306 | 7.5% | ||
battebilly | 0 | 1,495,125,013 | 4% | ||
dejan.vuckovic | 0 | 1,374,361,402 | 1.6% | ||
alvinauh | 0 | 1,305,100,015 | 30% | ||
mrsyria | 0 | 579,621,938 | 4% | ||
myach | 0 | 1,504,097,555 | 6.4% | ||
gianluccio | 0 | 106,753,233,392 | 45% | ||
kdee916 | 0 | 494,618,965 | 4% | ||
sunsea | 0 | 10,272,871,605 | 4% | ||
faizarfatria | 0 | 564,361,120 | 3.99% | ||
mejustandrew | 0 | 1,214,905,873 | 4% | ||
ciuoto | 0 | 17,886,071,099 | 25% | ||
onyfest | 0 | 14,946,495,435 | 10% | ||
bluefinstudios | 0 | 1,852,701,140 | 0.75% | ||
steveconnor | 0 | 7,341,187,388 | 4% | ||
afzalqamar | 0 | 615,587,042 | 10% | ||
zmx | 0 | 890,374,379 | 4% | ||
skippyza | 0 | 710,985,041 | 8% | ||
nicole-st | 0 | 1,060,710,627 | 4% | ||
carolineschell | 0 | 406,216,369,774 | 50% | ||
smartsteem | 0 | 189,452,443,485 | 4% | ||
fredkese | 0 | 467,736,210 | 2.64% | ||
travoved | 0 | 25,857,877,473 | 50% | ||
smitop | 0 | 11,346,654,685 | 100% | ||
byn | 0 | 1,302,978,495 | 6% | ||
popurri | 0 | 819,669,838 | 25% | ||
junebride | 0 | 480,998,637 | 4% | ||
afifa | 0 | 747,869,129 | 10% | ||
skycae | 0 | 1,034,413,289 | 8% | ||
syndicates | 0 | 6,425,270,890 | 15% | ||
xanderslee | 0 | 563,256,031 | 8% | ||
brutledge | 0 | 529,476,851 | 4% | ||
kenadis | 0 | 1,023,367,219 | 4% | ||
esaia.mystic | 0 | 494,490,588 | 8% | ||
marcolino76 | 0 | 1,842,740,643 | 25% | ||
a11y | 0 | 18,946,616,291 | 15% | ||
iptrucs | 0 | 13,280,969,000 | 25% | ||
thescubageek | 0 | 553,201,813 | 4% | ||
crescendoofpeace | 0 | 3,044,953,403 | 3.75% | ||
apon318 | 0 | 708,407,417 | 8% | ||
straykat | 0 | 8,841,806,831 | 25% | ||
zipsardinia | 0 | 535,349,544 | 8% | ||
tomatom | 0 | 790,909,555 | 4% | ||
adelepazani | 0 | 3,566,978,451 | 1.6% | ||
danaedwards | 0 | 988,635,362 | 8% | ||
sco | 0 | 929,290,834 | 3.2% | ||
brotherhood | 0 | 558,440,040 | 8% | ||
gordon92 | 0 | 1,298,632,075 | 4% | ||
stahlberg | 0 | 1,841,672,197 | 4% | ||
gabrielatravels | 0 | 4,257,480,479 | 2.8% | ||
jaro-art | 0 | 3,851,266,663 | 100% | ||
cordeta | 0 | 1,547,447,001 | 8% | ||
reizak | 0 | 730,800,586 | 3.2% | ||
carn | 0 | 1,468,478,271 | 7.2% | ||
bartheek | 0 | 6,205,443,291 | 8% | ||
hetty-rowan | 0 | 7,857,754,955 | 4% | ||
lilianajimenez | 0 | 511,150,482 | 4% | ||
themothership | 0 | 7,127,737,364 | 7.5% | ||
payger | 0 | 478,858,109 | 4% | ||
fineartnow | 0 | 5,799,865,182 | 4% | ||
hijosdelhombre | 0 | 476,128,706 | 0.4% | ||
irisworld | 0 | 912,478,924 | 4% | ||
emjoe | 0 | 744,502,635 | 7.5% | ||
alequandro | 0 | 1,062,082,867 | 25% | ||
oscarina | 0 | 741,169,067 | 10% | ||
bengy | 0 | 1,066,404,344 | 1.5% | ||
bobydimitrov | 0 | 690,396,309 | 6% | ||
yoghurt | 0 | 1,012,117,777 | 8% | ||
aiziqi | 0 | 1,080,079,549 | 5% | ||
steemvault | 0 | 3,358,687,953 | 8% | ||
steem4all | 0 | 655,365,253 | 4% | ||
cygon | 0 | 633,343,935 | 7.5% | ||
shinedojo | 0 | 939,268,293 | 8% | ||
bennettitalia | 0 | 2,942,494,878 | 4% | ||
christianyocte | 0 | 470,249,817 | 1.5% | ||
utube | 0 | 5,659,146,126 | 8% | ||
jigstrike | 0 | 1,327,420,984 | 4% | ||
baycan | 0 | 2,107,113,072 | 4% | ||
leslierevales | 0 | 501,402,825 | 4% | ||
m1alsan | 0 | 7,252,417,610 | 8% | ||
steemboat-steve | 0 | 540,389,219 | 4% | ||
portugalcoin | 0 | 40,181,620,743 | 10% | ||
dynamicrypto | 0 | 745,870,339 | 1.87% | ||
pab.ink | 0 | 523,197,258 | 25% | ||
goldrooster | 0 | 26,178,034,270 | 100% | ||
sportscontest | 0 | 8,153,884,061 | 8% | ||
videosteemit | 0 | 2,808,719,374 | 8% | ||
pandasquad | 0 | 22,042,418,563 | 8% | ||
tobias-g | 0 | 9,373,929,809 | 5% | ||
mproxima | 0 | 3,911,298,696 | 4% | ||
fantasycrypto | 0 | 2,769,967,316 | 4% | ||
didic | 0 | 2,759,184,952 | 4% | ||
warpedpoetic | 0 | 3,185,836,943 | 8% | ||
khimgoh | 0 | 13,483,266,758 | 7.5% | ||
jossduarte | 0 | 745,690,783 | 4% | ||
hazem91 | 0 | 1,005,411,715 | 4.5% | ||
morey-lezama | 0 | 628,452,182 | 4% | ||
bigtom13 | 0 | 24,298,905,111 | 4.95% | ||
piumadoro | 0 | 21,334,117,919 | 50% | ||
yjcps | 0 | 6,174,486,106 | 100% | ||
nwjordan | 0 | 1,212,305,553 | 8% | ||
sandracabrera | 0 | 579,285,887 | 4% | ||
zelenicic | 0 | 34,771,777,001 | 100% | ||
photohunt | 0 | 4,697,536,179 | 8% | ||
atomcollector | 0 | 1,571,502,590 | 2% | ||
bhattg | 0 | 69,245,674,258 | 12% | ||
takowi | 0 | 157,412,671,141 | 8% | ||
irgendwo | 0 | 33,773,593,792 | 8% | ||
vegan.niinja | 0 | 776,955,216 | 4% | ||
kieranstone | 0 | 2,352,299,807 | 2.64% | ||
bernardino | 0 | 1,021,419,853 | 4% | ||
melvin7 | 0 | 13,111,788,854 | 4% | ||
putu300 | 0 | 862,205,728 | 5% | ||
cryptictruth | 0 | 41,288,905,108 | 7.5% | ||
michelmake | 0 | 44,340,582,277 | 20% | ||
zipporah | 0 | 4,127,131,446 | 1.6% | ||
leomarylm | 0 | 961,388,176 | 4% | ||
mad-runner | 0 | 32,750,950,914 | 35% | ||
randumb | 0 | 597,149,404 | 8% | ||
superlotto | 0 | 6,727,266,461 | 8% | ||
strenue | 0 | 331,845,077,884 | 95% | ||
ambitiouslife | 0 | 499,113,744 | 4% | ||
positiveninja | 0 | 1,679,529,503 | 4% | ||
blockchainyouth | 0 | 18,594,253,328 | 25% | ||
sbarandelli | 0 | 1,398,089,579 | 50% | ||
foxyspirit | 0 | 844,131,405 | 4% | ||
bscrypto | 0 | 22,916,067,898 | 4% | ||
movingman | 0 | 577,454,015 | 20% | ||
bil.prag | 0 | 3,897,609,595 | 0.4% | ||
vcclothing | 0 | 4,550,618,324 | 2.4% | ||
onepercentbetter | 0 | 138,758,587,653 | 89% | ||
sanderjansenart | 0 | 8,042,774,034 | 4% | ||
vittoriozuccala | 0 | 11,532,322,179 | 25% | ||
laxam | 0 | 5,816,696,392 | 100% | ||
koenau | 0 | 12,523,654,650 | 44.5% | ||
qberry | 0 | 5,962,809,258 | 4% | ||
frissonsteemit | 0 | 1,873,340,714 | 4% | ||
broncofan99 | 0 | 11,544,956,245 | 20% | ||
greddyforce | 0 | 6,860,749,547 | 2.96% | ||
flyerchen | 0 | 1,990,330,638 | 4% | ||
philippekiene | 0 | 1,754,591,925 | 7.5% | ||
mumma-monza | 0 | 866,936,215 | 7.5% | ||
c0wtschpotato | 0 | 889,945,135 | 4% | ||
therising | 0 | 153,901,560,816 | 8% | ||
cryptocoinkb | 0 | 3,165,585,331 | 4% | ||
manuelmusic | 0 | 680,608,181 | 4.8% | ||
me2selah | 0 | 1,394,349,741 | 4% | ||
spaghettiscience | 0 | 12,572,513,193 | 50% | ||
achimmertens | 0 | 13,141,960,002 | 4% | ||
lorenzopistolesi | 0 | 2,466,716,296 | 50% | ||
vinnieleow | 0 | 5,727,729,066 | 90% | ||
kgakakillerg | 0 | 20,672,529,888 | 10% | ||
mariusfebruary | 0 | 1,035,690,018 | 3.2% | ||
outtheshellvlog | 0 | 1,313,304,618 | 4% | ||
softa | 0 | 5,843,920,732 | 1.6% | ||
sawyn | 0 | 970,225,386 | 4% | ||
meanbees | 0 | 3,238,789,587 | 2.8% | ||
indigoocean | 0 | 1,937,665,099 | 4% | ||
sbi3 | 0 | 80,324,697,949 | 3.76% | ||
phage93 | 0 | 5,963,478,674 | 50% | ||
primersion | 0 | 442,509,307,354 | 20% | ||
robmolecule | 0 | 23,803,383,351 | 10% | ||
veteranforcrypto | 0 | 614,975,947 | 3% | ||
nashvegas | 0 | 468,341,210 | 4% | ||
anneporter | 0 | 481,670,464 | 4% | ||
jancharlest | 0 | 462,125,978 | 10% | ||
celinavisaez | 0 | 10,845,160,174 | 30% | ||
steem.services | 0 | 1,468,552,612 | 1.6% | ||
slobberchops | 0 | 3,286,562,393,011 | 54% | ||
gwilberiol | 0 | 162,384,298,855 | 45% | ||
jmjury | 0 | 585,977,397 | 4% | ||
pladozero | 0 | 31,314,189,388 | 10% | ||
minerthreat | 0 | 5,611,115,309 | 4% | ||
nateaguila | 0 | 70,636,226,009 | 5% | ||
crypticat | 0 | 2,615,830,570 | 0.8% | ||
doctor-cog-diss | 0 | 2,934,605,513 | 3.2% | ||
dailyspam | 0 | 25,218,893,600 | 20% | ||
cooltivar | 0 | 1,988,006,284 | 40% | ||
uche-nna | 0 | 10,337,286,728 | 6.4% | ||
drawmeaship | 0 | 1,347,952,727 | 50% | ||
merlion | 0 | 7,166,641,926 | 89% | ||
vietthuy | 0 | 813,370,707 | 50% | ||
decepticons | 0 | 877,851,011 | 30% | ||
barbz | 0 | 115,677,460,565 | 100% | ||
citizendog | 0 | 2,724,888,880 | 8% | ||
yougotavote | 0 | 3,607,632,139 | 100% | ||
cheese4ead | 0 | 6,501,338,523 | 4% | ||
apshamilton | 0 | 19,596,897,769 | 1% | ||
carolinaelly | 0 | 2,657,296,070 | 100% | ||
cryptojiang | 0 | 146,979,628,670 | 100% | ||
longer | 0 | 1,788,234,962 | 5% | ||
nattybongo | 0 | 9,451,920,580 | 25% | ||
doodle.danga | 0 | 2,940,066,050 | 50% | ||
talentclub | 0 | 5,131,711,055 | 4% | ||
ilovecryptopl | 0 | 1,317,795,405 | 6.4% | ||
mindblast | 0 | 548,295,723 | 4% | ||
esteliopadilla | 0 | 496,026,523 | 100% | ||
alliedforces | 0 | 17,880,673,234 | 15% | ||
bflanagin | 0 | 4,575,003,231 | 4% | ||
armandosodano | 0 | 98,735,385,729 | 35% | ||
melor9 | 0 | 734,397,311 | 4% | ||
ezunjoshy | 0 | 607,794,716 | 4% | ||
yayan | 0 | 688,222,863 | 4% | ||
acousticguitar | 0 | 14,171,208,108 | 50% | ||
hamismsf | 0 | 6,651,175,037 | 1% | ||
gerdtrudroepke | 0 | 73,108,453,502 | 20% | ||
hansmast | 0 | 628,744,094 | 4% | ||
viruk | 0 | 513,605,384 | 8% | ||
goblinknackers | 0 | 79,133,046,697 | 7% | ||
smartvote | 0 | 83,950,427,969 | 3.3% | ||
bambinaacida | 0 | 2,522,930,429 | 50% | ||
vixmemon | 0 | 2,514,566,665 | 6% | ||
honeycup-waters | 0 | 645,626,724 | 4% | ||
yaelg | 0 | 1,744,378,660 | 2.4% | ||
kylealex | 0 | 5,092,839,887 | 10% | ||
arnilarn | 0 | 671,898,701 | 4% | ||
orlandogonzalez | 0 | 3,070,949,632 | 25% | ||
coccodema | 0 | 2,843,937,364 | 25% | ||
voxmortis | 0 | 2,804,438,689 | 1.5% | ||
gamercreed | 0 | 3,627,347,137 | 8% | ||
thelittlebank | 0 | 60,934,740,306 | 4% | ||
javyeslava.photo | 0 | 846,955,939 | 3.2% | ||
jessica.steem | 0 | 1,894,532,000 | 42.5% | ||
cliffagreen | 0 | 5,338,900,213 | 10% | ||
palasatenea | 0 | 5,262,100,904 | 4% | ||
the.success.club | 0 | 4,259,787,852 | 4% | ||
lelluzzo | 0 | 508,985,281 | 25% | ||
athunderstruck | 0 | 3,570,367,549 | 8.75% | ||
stefano.massari | 0 | 39,463,352,717 | 38% | ||
thejollyroger | 0 | 2,314,369,989 | 100% | ||
merlin7 | 0 | 15,928,541,273 | 8% | ||
brianoflondon | 0 | 142,634,744,721 | 2% | ||
reverseacid | 0 | 875,556,363 | 4% | ||
luueetang | 0 | 451,549,648 | 4% | ||
esthersanchez | 0 | 2,095,513,888 | 30% | ||
pauliinasoilu | 0 | 498,607,275 | 4% | ||
kristall97 | 0 | 721,065,648 | 100% | ||
johannpiber | 0 | 643,157,702,128 | 55% | ||
dsj | 0 | 662,256,124 | 4% | ||
eliasseth | 0 | 468,933,503 | 4% | ||
followjohngalt | 0 | 954,484,032 | 8% | ||
astrochologist | 0 | 471,493,450 | 4% | ||
steemcryptosicko | 0 | 13,684,976,300 | 1.6% | ||
certain | 0 | 3,188,538,355 | 0.96% | ||
alvin0617 | 0 | 720,933,821 | 4% | ||
middleearth | 0 | 1,897,394,694 | 50% | ||
adinapoli | 0 | 14,273,929,513 | 25% | ||
multifacetas | 0 | 3,390,031,489 | 4% | ||
cakemonster | 0 | 4,206,187,386 | 8% | ||
discovery-it | 0 | 1,526,331,799,729 | 50% | ||
witkowskipawel | 0 | 1,423,748,753 | 4% | ||
hiddendragon | 0 | 648,643,758 | 38% | ||
chipdip | 0 | 820,516,553 | 10% | ||
pandapuzzles | 0 | 8,772,258,095 | 100% | ||
jpbliberty | 0 | 11,819,815,688 | 2% | ||
autobodhi | 0 | 1,538,388,170 | 8% | ||
samks | 0 | 513,377,458 | 4% | ||
solox | 0 | 1,425,952,342 | 8% | ||
double-negative | 0 | 522,883,417 | 20% | ||
michaias | 0 | 2,094,162,418 | 75% | ||
samsemilia7 | 0 | 876,854,348 | 39% | ||
vaultec | 0 | 190,565,538,349 | 12% | ||
kakakk | 0 | 590,815,859 | 4% | ||
steemstorage | 0 | 9,850,006,491 | 8% | ||
slothlydoesit | 0 | 2,284,620,422 | 1.87% | ||
steemegg | 0 | 1,665,149,390 | 4% | ||
whiterosecoffee | 0 | 9,111,921,395 | 3.75% | ||
thistle-rock | 0 | 1,482,973,227 | 50% | ||
juanbg | 0 | 8,269,125,125 | 25% | ||
edithbdraw | 0 | 1,215,569,704 | 4% | ||
lallo | 0 | 55,718,339,349 | 50% | ||
markwannabee | 0 | 464,453,473 | 100% | ||
hairgistix | 0 | 4,786,183,420 | 4% | ||
goodcontentbot | 0 | 2,809,351,083 | 50% | ||
mia-cc | 0 | 2,536,957,726 | 20% | ||
artmentor | 0 | 14,095,644,529 | 100% | ||
bluemaskman | 0 | 924,393,991 | 4% | ||
steemean | 0 | 9,977,642,410 | 5% | ||
raynen | 0 | 3,983,901,957 | 100% | ||
proxy-pal | 0 | 1,955,128,025 | 8% | ||
deveney | 0 | 466,172,168 | 100% | ||
deriyon | 0 | 463,011,826 | 100% | ||
hashkings | 0 | 2,296,714,696 | 2.8% | ||
littlesorceress | 0 | 4,059,159,632 | 4% | ||
historiasamorlez | 0 | 875,049,803 | 4% | ||
kggymlife | 0 | 3,840,157,209 | 20% | ||
pedrobrito2004 | 0 | 17,499,052,215 | 14% | ||
arnaldoropeza | 0 | 475,902,519 | 4% | ||
aaronkroeblinger | 0 | 102,302,623,333 | 50% | ||
david.steem | 0 | 9,502,742,314 | 45% | ||
cryptofiloz | 0 | 12,837,299,777 | 8% | ||
kryptogames | 0 | 7,667,215,791 | 20% | ||
jackramsey | 0 | 676,423,384 | 5.6% | ||
titti | 0 | 20,333,892,171 | 50% | ||
epicdice | 0 | 1,361,406,430 | 1.2% | ||
patris | 0 | 490,644,533 | 4% | ||
stregamorgana | 0 | 1,843,560,691 | 50% | ||
yanezdegomera | 0 | 470,077,565 | 20% | ||
meeplecomposer | 0 | 4,169,891,706 | 30% | ||
c3r34lk1ll3r | 0 | 470,262,874 | 2% | ||
iamsaray | 0 | 1,311,240,416 | 4% | ||
maclevis | 0 | 479,332,174 | 4% | ||
endersong | 0 | 1,030,399,009 | 6.4% | ||
libertycrypto27 | 0 | 779,780,367,511 | 100% | ||
edencourage | 0 | 6,333,515,252 | 50% | ||
robibasa | 0 | 68,193,442,810 | 50% | ||
akumagai | 0 | 38,286,923,324 | 100% | ||
justlee87 | 0 | 2,378,759,062 | 100% | ||
beerlover | 0 | 2,956,617,308 | 2.4% | ||
thor189 | 0 | 32,229,501,930 | 100% | ||
soma.unony | 0 | 475,920,261 | 4% | ||
newtrailers | 0 | 1,680,550,551 | 8% | ||
blumela | 0 | 16,901,124,207 | 50% | ||
qwerrie | 0 | 7,822,250,137 | 0.6% | ||
tinyhousecryptos | 0 | 471,191,876 | 5% | ||
michelmake.util | 0 | 1,529,402,701 | 100% | ||
xyz001 | 0 | 472,686,489 | 4% | ||
cryptomonica | 0 | 24,100,957,440 | 100% | ||
maruskina | 0 | 31,316,590,010 | 25% | ||
rtron86 | 0 | 11,625,333,030 | 50% | ||
aicu | 0 | 1,851,677,806 | 8% | ||
egginc.org | 0 | 588,199,743 | 100% | ||
victoriaxl | 0 | 1,833,714,133 | 25% | ||
omodei | 0 | 1,366,834,259 | 50% | ||
cryptogambit | 0 | 1,442,504,547 | 7.5% | ||
mind.force | 0 | 505,633,326 | 2% | ||
fambalam | 0 | 21,598,726,268 | 15% | ||
kgswallet | 0 | 519,416,263 | 10% | ||
h-hamilton | 0 | 1,714,484,748 | 4% | ||
tiffin | 0 | 919,237,840 | 8% | ||
reggaesteem | 0 | 492,785,354 | 5% | ||
thealliancebank | 0 | 2,001,170,791 | 15% | ||
bedazzled | 0 | 4,527,482,158 | 100% | ||
medussart | 0 | 1,444,050,795 | 50% | ||
aicoding | 0 | 868,465,393 | 4% | ||
capitanonema | 0 | 1,690,406,243 | 50% | ||
alypanda | 0 | 611,720,806 | 100% | ||
damaskinus | 0 | 1,070,667,733 | 25% | ||
tokensink | 0 | 4,942,981,533 | 8% | ||
beta500 | 0 | 5,697,021,364 | 8% | ||
knightsunited | 0 | 1,296,666,386 | 8% | ||
sbi-tokens | 0 | 1,024,943,851 | 1.1% | ||
marcellasunset | 0 | 879,864,764 | 50% | ||
madisonelizabeth | 0 | 589,670,366 | 100% | ||
precarious | 0 | 465,264,528 | 50% | ||
bcm | 0 | 1,852,379,716 | 15% | ||
entrepreneur.one | 0 | 7,608,318,817 | 100% | ||
baltai | 0 | 10,021,090,738 | 4% | ||
dappstats | 0 | 4,673,939,911 | 15% | ||
bozz.sports | 0 | 5,473,016,916 | 5% | ||
chris-uk | 0 | 1,310,766,500 | 4% | ||
axel-blaze | 0 | 25,141,733,337 | 50% | ||
discovery-blog | 0 | 8,558,626,566 | 50% | ||
dmoonfire | 0 | 33,931,340,047 | 71% | ||
sandymeyer | 0 | 2,925,197,985 | 1% | ||
riccc96 | 0 | 567,675,229 | 10% | ||
mowemu | 0 | 658,485,620 | 8% | ||
machan | 0 | 1,080,720,118 | 4% | ||
ibt-survival | 0 | 38,323,720,883 | 10% | ||
sarahandsam | 0 | 16,876,936,327 | 100% | ||
delilhavores | 0 | 3,392,320,220 | 50% | ||
hjmarseille | 0 | 2,001,722,840 | 45% | ||
keilis | 0 | 617,386,916 | 4% | ||
libertygame27 | 0 | 2,570,386,171 | 100% | ||
steemdiamond | 0 | 1,094,895,853 | 8% | ||
sweetval | 0 | 14,747,657,176 | 50% | ||
gloriaolar | 0 | 1,821,059,275 | 2.4% | ||
garlet | 0 | 35,205,914,584 | 50% | ||
julesquirin | 0 | 1,986,613,076 | 4% | ||
yunnie | 0 | 7,288,427,411 | 100% | ||
cornavirus | 0 | 844,817,332 | 8% | ||
hive-127039 | 0 | 476,995,604 | 25% | ||
hive-199963 | 0 | 5,294,493,812 | 8% | ||
brofund | 0 | 328,302,813 | 0.57% | ||
krisconkr | 0 | 931,583,253 | 4% | ||
fsm-core | 0 | 12,773,789,113 | 50% | ||
hivebuzz | 0 | 13,431,974,277 | 2% | ||
goldmonsters | 0 | 2,959,012,839 | 50% | ||
ghastlygames | 0 | 4,746,879,843 | 50% | ||
peterpanpan | 0 | 1,457,940,141 | 50% | ||
veeart | 0 | 3,038,470,551 | 50% | ||
holoferncro | 0 | 14,405,039,866 | 10% | ||
the100 | 0 | 991,919,980 | 4% | ||
meppij | 0 | 31,420,738,116 | 50% | ||
matteus57 | 0 | 4,550,004,241 | 50% | ||
hiveonboard | 0 | 1,693,631,664 | 4% | ||
kiemurainen | 0 | 14,787,793,015 | 3.36% | ||
ecency | 0 | 362,630,362,427 | 1% | ||
hive.curation | 0 | 6,100,923,377 | 89% | ||
sportsfanboy | 0 | 622,772,111 | 50% | ||
joseq1570 | 0 | 2,682,669,426 | 15% | ||
miguelpeliculas | 0 | 2,830,799,099 | 40% | ||
flewsplash | 0 | 5,629,386,946 | 50% | ||
cronicasdelcesar | 0 | 5,214,180,035 | 100% | ||
quinnertronics | 0 | 9,712,836,004 | 7% | ||
ilovegames | 0 | 574,882,642 | 1.6% | ||
anafae | 0 | 1,008,808,830 | 1.6% | ||
ecency.stats | 0 | 324,760,832 | 1% | ||
hivecoffee | 0 | 788,125,155 | 8% | ||
craw | 0 | 631,513,792 | 8% | ||
sevenoh-fiveoh | 0 | 1,622,104,398 | 4% | ||
liz.writes | 0 | 521,412,355 | 27% | ||
bindalove | 0 | 1,174,613,418 | 50% | ||
visualartist | 0 | 1,013,339,206 | 4% | ||
altleft | 0 | 37,683,062,959 | 0.08% | ||
omarrojas | 0 | 3,400,321,987 | 4% | ||
noalys | 0 | 1,791,029,280 | 4% | ||
borniet | 0 | 1,557,180,748 | 4% | ||
evagavilan2 | 0 | 2,406,835,527 | 4% | ||
communityunity | 0 | 7,726,619,780 | 15% | ||
death-and-taxes | 0 | 626,467,754 | 8% | ||
barbyjr | 0 | 2,480,343,847 | 25% | ||
mattbee | 0 | 553,288,965 | 100% | ||
ismaelrd04 | 0 | 806,946,156 | 7.5% | ||
dhedge | 0 | 16,809,725,508 | 3% | ||
koshwe | 0 | 390,279,285 | 50% | ||
cosplay.hadr | 0 | 1,798,275,393 | 8% | ||
hadrgames | 0 | 1,852,963,556 | 8% | ||
meritocracy | 0 | 89,648,840,261 | 0.8% | ||
pepeymeli | 0 | 788,261,062 | 50% | ||
dcrops | 0 | 56,353,574,970 | 4% | ||
libertyleo27 | 0 | 586,874,962 | 100% | ||
rondonshneezy | 0 | 791,965,049 | 4% | ||
johnny023 | 0 | 625,688,502 | 4% | ||
whywhy | 0 | 2,514,620,232 | 2.24% | ||
hive-126300 | 0 | 492,273,657 | 100% | ||
yozen | 0 | 3,410,461,381 | 4% | ||
esmeesmith | 0 | 3,579,123,259 | 4% | ||
endrius | 0 | 745,637,210 | 75% | ||
traderhive | 0 | 1,424,697,002 | 8% | ||
cryptosneeze | 0 | 1,950,749,769 | 4% | ||
tawadak24 | 0 | 6,013,564,155 | 4% | ||
repayme4568 | 0 | 714,430,813 | 25% | ||
ausbit.dev | 0 | 932,761,523 | 4% | ||
bobthebuilder2 | 0 | 6,765,700,616 | 7.5% | ||
thecryptopimp | 0 | 3,117,701,744 | 17.5% | ||
tokenpimp | 0 | 225,975,763,117 | 17.5% | ||
pimptoken | 0 | 2,019,728,857 | 17.5% | ||
elgatoshawua | 0 | 1,285,699,995 | 4% | ||
farleyfund | 0 | 5,953,128,952 | 100% | ||
limn | 0 | 1,338,119,332 | 4% | ||
nyxlabs | 0 | 1,083,454,868 | 4% | ||
biglove | 0 | 468,698,818 | 10% | ||
dodovietnam | 0 | 648,969,040 | 4% | ||
brofi | 0 | 46,381,955,320 | 0.57% | ||
failingforwards | 0 | 5,197,133,428 | 4% | ||
rochow | 0 | 6,530,180,580 | 94.03% | ||
riandeuk | 0 | 50,787,894,771 | 100% | ||
joseluis91 | 0 | 7,755,697,141 | 50% | ||
m0rt0nmattd | 0 | 1,356,333,195 | 100% | ||
high8125theta | 0 | 48,138,073,079 | 60% | ||
trippymane | 0 | 2,640,984,045 | 8% | ||
nfttunz | 0 | 4,589,737,933 | 0.28% | ||
okluvmee | 0 | 7,138,508,309 | 4% | ||
atexoras.pub | 0 | 2,185,151,325 | 4% | ||
pousinha | 0 | 1,652,683,116 | 50% | ||
merit.ahama | 0 | 8,641,270,678 | 2.4% | ||
holovision.cash | 0 | 3,672,541,455 | 100% | ||
quiubi | 0 | 4,538,716,023 | 25% | ||
krrizjos18 | 0 | 2,201,376,255 | 25% | ||
kkartdesign | 0 | 864,042,121 | 25% | ||
maridmc | 0 | 8,286,009,633 | 50% | ||
mirteg | 0 | 1,088,820,708 | 8% | ||
podping | 0 | 12,443,221,812 | 2% | ||
dibblers.dabs | 0 | 37,469,918,449 | 8.75% | ||
davidbright | 0 | 1,421,335,387 | 4% | ||
jessicaossom | 0 | 1,297,730,280 | 4% | ||
drhueso | 0 | 2,096,207,144 | 4% | ||
biggerjoe | 0 | 500,225,206 | 0.22% | ||
ayee11 | 0 | 566,607,988 | 100% | ||
mayberlys | 0 | 2,301,454,219 | 50% | ||
farmingtales | 0 | 3,221,895,448 | 50% | ||
trentonlundy1 | 0 | 591,629,803 | 7.5% | ||
stewie.wieno | 0 | 10,822,583,573 | 100% | ||
danokoroafor | 0 | 857,831,685 | 4% | ||
instamental | 0 | 786,377,610 | 4% | ||
rhiaji | 0 | 569,342,176 | 100% | ||
badge-646464 | 0 | 453,898,119 | 8% | ||
seattlea | 0 | 1,920,710,795 | 3.75% | ||
torz18 | 0 | 4,288,349,493 | 100% | ||
mochilub | 0 | 1,979,160,038 | 1.87% | ||
aries90 | 0 | 71,723,844,639 | 8% | ||
franvenezuela | 0 | 1,363,357,620 | 25% | ||
rencongland | 0 | 900,887,916 | 4% | ||
martinthemass | 0 | 621,884,132 | 100% | ||
mantis-tobaggon | 0 | 605,943,385 | 4% | ||
spirit09 | 0 | 465,602,949 | 100% | ||
frazfrea | 0 | 1,831,698,229 | 50% | ||
acantoni | 0 | 967,747,360 | 4% | ||
pogier | 0 | 4,412,206,386 | 100% | ||
blingit | 0 | 5,418,119,677 | 4% | ||
jrjaime | 0 | 2,487,306,636 | 15% | ||
kingz1337 | 0 | 1,330,943,242 | 100% | ||
axelx12 | 0 | 2,465,417,702 | 100% | ||
tonmarinduque | 0 | 708,908,011 | 25% | ||
tarabh | 0 | 23,461,108,807 | 100% | ||
rynos-6 | 0 | 2,876,824,795 | 100% | ||
eolianpariah2 | 0 | 7,152,725,983 | 3% | ||
pinkhub | 0 | 40,094,796,020 | 100% | ||
sephiwolf | 0 | 543,052,218 | 8% | ||
zirkonov | 0 | 1,219,251,277 | 30% | ||
cryptogillone | 0 | 830,998,837 | 50% | ||
cantfoldaces | 0 | 674,863,167 | 7.5% | ||
orangeandwater | 0 | 2,128,447,230 | 100% | ||
adrianalara | 0 | 749,944,584 | 4% | ||
h3m4n7 | 0 | 970,800,310 | 4% | ||
thebigfish | 0 | 20,064,518,822 | 11.25% | ||
kingz1338 | 0 | 755,351,320 | 100% | ||
kingz1339 | 0 | 755,131,883 | 100% | ||
balaenoptera | 0 | 10,162,882,237 | 100% | ||
ikill4yo0 | 0 | 7,305,199,853 | 100% | ||
ragk88 | 0 | 5,069,542,363 | 100% | ||
onw | 0 | 4,873,578,906 | 100% | ||
crimsonowl-art | 0 | 828,858,819 | 25% | ||
newilluminati | 0 | 22,899,944,278 | 4% | ||
thgaming | 0 | 1,085,415,080 | 3.75% | ||
noctury | 0 | 2,913,245,198 | 4% | ||
hoosie | 0 | 122,183,307,225 | 50% | ||
sagarkothari88 | 0 | 780,349,862,424 | 12% | ||
albuslucimus | 0 | 631,865,711 | 4% | ||
marlonfund | 0 | 982,777,207 | 100% | ||
stefy.music | 0 | 1,474,038,415 | 4% | ||
pensieristupendi | 0 | 1,953,805,772 | 100% | ||
vindiesel1980 | 0 | 11,881,229,084 | 4% | ||
asado | 0 | 1,601,074,816 | 4% | ||
netvalar | 0 | 6,729,480,786 | 50% | ||
lukasbachofner | 0 | 6,420,678,366 | 4% | ||
allentaylor | 0 | 1,666,139,720 | 4% | ||
zerozeroone | 0 | 20,298,682,934 | 100% | ||
annabeth | 0 | 1,218,718,442 | 8% | ||
andre.btc | 0 | 2,551,480,190 | 40% | ||
haveyaheard | 0 | 2,171,173,429 | 15% | ||
henrietta27 | 0 | 1,005,183,844 | 4% | ||
doodleaday | 0 | 39,740,736,134 | 50% | ||
pimpdistrict | 0 | 628,663,610 | 17.5% | ||
thepimpdistrict | 0 | 1,097,489,553 | 17.5% | ||
azj26 | 0 | 4,639,828,845 | 16% | ||
ydaiznfts | 0 | 851,799,999 | 8.75% | ||
balabambuz | 0 | 1,093,867,654 | 4% | ||
her18lux | 0 | 12,102,447,105 | 100% | ||
drivingindevon | 0 | 2,441,003,865 | 6.4% | ||
treasuree | 0 | 1,104,169,612 | 4% | ||
the420syndicate | 0 | 1,082,610,903 | 100% | ||
archangel21 | 0 | 20,951,482,830 | 8% | ||
shawnnft | 0 | 1,197,389,998 | 0.8% | ||
belug | 0 | 10,587,474,906 | 2.4% | ||
filmmaking4hive | 0 | 2,645,538,785 | 8% | ||
mugueto2022 | 0 | 555,466,884 | 20% | ||
joyyusuf | 0 | 2,254,978,853 | 50% | ||
windail1 | 0 | 1,276,843,462 | 100% | ||
baboz | 0 | 2,276,292,698 | 2% | ||
cuzimgleb | 0 | 1,776,145,212 | 70% | ||
kryptofire | 0 | 1,207,115,346 | 20% | ||
mr-rent | 0 | 4,359,575,461 | 75% | ||
emreal | 0 | 768,896,610 | 4% | ||
soyjoselopez | 0 | 466,140,436 | 20% | ||
cryoverall | 0 | 942,345,628 | 50% | ||
hk-curation | 0 | 9,008,293,086 | 5.6% | ||
mukadder | 0 | 10,235,571,533 | 2% | ||
toekins | 0 | 754,116,657 | 15% | ||
iwannabeme | 0 | 965,143,812 | 7.5% | ||
vragolana | 0 | 536,269,433 | 4% | ||
daje10 | 0 | 5,423,835,357 | 50% | ||
idksamad78699 | 0 | 1,283,399,065 | 4% | ||
jasedmf | 0 | 555,736,694 | 100% | ||
itcouldbecloud | 0 | 921,129,122 | 100% | ||
assistance | 0 | 1,305,837,733 | 15% | ||
justfavour | 0 | 2,596,042,384 | 4% | ||
hayleysv | 0 | 2,058,800,017 | 25% | ||
oasiskp2 | 0 | 1,258,639,517 | 8% | ||
lailalaurent | 0 | 1,238,323,307 | 100% | ||
pinkchic | 0 | 734,925,349 | 1.5% | ||
yopeks | 0 | 471,795,722 | 50% | ||
r4f4 | 0 | 551,717,539 | 25% | ||
jijisaurart | 0 | 3,361,432,366 | 4% | ||
bonnierabbit | 0 | 11,928,458,315 | 100% | ||
smariam | 0 | 2,835,332,895 | 25% | ||
bloomyogi | 0 | 23,925,043,856 | 100% | ||
wasined | 0 | 1,038,691,998 | 8% | ||
minas-glory | 0 | 465,509,079 | 4% | ||
yzamazing | 0 | 1,753,003,452 | 25% | ||
clpacksperiment | 0 | 3,529,121,678 | 4% | ||
the-burn | 0 | 2,476,742,627 | 4% | ||
hiq.pimp | 0 | 48,826,231 | 12.38% | ||
p1k4ppa10 | 0 | 23,611,985,003 | 20% | ||
ambicrypto | 0 | 204,766,173,731 | 8% | ||
humbe | 0 | 6,279,181,734 | 2% | ||
dresden.theone | 0 | 2,544,002,621 | 4% | ||
jhymi | 0 | 5,076,258,508 | 4% | ||
slothbuzz | 0 | 2,836,027,985 | 7.5% | ||
nftfrappe | 0 | 332,789,162,133 | 50% | ||
hive-179513 | 0 | 1,989,808,930 | 50% | ||
technico | 0 | 1,483,787,963 | 4% | ||
abu78 | 0 | 1,868,332,124 | 4% | ||
jesus-son | 0 | 2,635,646,016 | 4% | ||
denisda | 0 | 3,919,739,592 | 25% | ||
whitneyalexx | 0 | 2,226,591,118 | 7.5% | ||
slothburn | 0 | 1,722,009,155 | 7.5% | ||
hikergirl | 0 | 969,062,530 | 4% | ||
lettinggotech | 0 | 1,874,916,885 | 4% | ||
monkeymanking | 0 | 1,096,978,978 | 100% | ||
tahastories1 | 0 | 535,051,071 | 4% | ||
ayamihaya | 0 | 3,616,652,947 | 42% | ||
rhemagames | 0 | 7,498,059,817 | 4% | ||
vsc.network | 0 | 130,841,729,476 | 100% | ||
aslamrer | 0 | 738,814,942 | 4% | ||
kryptof | 0 | 13,662,674,057 | 15% | ||
johndeeback | 0 | 16,944,090,548 | 100% | ||
ma3str0 | 0 | 807,559,490 | 7.5% | ||
astronerd | 0 | 524,148,129 | 4% | ||
earn.vote | 0 | 1,985,185,058 | 100% | ||
joycebuzz | 0 | 515,264,726 | 4% | ||
hecatonquirox | 0 | 482,735,748 | 8% | ||
acurator | 0 | 87,889,950,645 | 30% | ||
iamscinttwister | 0 | 950,748,135 | 25% | ||
bulliontools | 0 | 1,430,293,965 | 3.75% | ||
blackalas | 0 | 51,473,505,028 | 31.5% | ||
thewobs94 | 0 | 973,014,190 | 100% | ||
maickto | 0 | 7,765,737,271 | 99% | ||
juniorcreed1 | 0 | 698,427,145 | 50% | ||
janwrites | 0 | 559,172,103 | 8% | ||
ben.leo | 0 | 827,584,880 | 100% | ||
ghilvar | 0 | 2,884,655,124 | 50% | ||
lolz.byte | 0 | 0 | 100% | ||
sararossi | 0 | 18,312,832,186 | 100% | ||
marcelloracconti | 0 | 927,364,449 | 50% | ||
dandelion24 | 0 | 1,893,949,783 | 50% | ||
dab-vote | 0 | 1,273,322,740 | 0.28% | ||
tsjudy | 0 | 1,481,911,219 | 50% |
<div class="pull-left">https://cdn.steemitimages.com/DQmTAn3c753LR7bHCLPo96g9UvRMaPFwaMYn8VQZa85xczC/discovery_logo_colore%20-%20Copia.png</div><br> This post was shared and voted inside the discord by the curators team of <a href="https://discord.gg/cMMp943"> discovery-it</a> <br>Join our <a href = "https://hive.blog/trending/hive-193212"> Community</a> and follow our <a href = "https://hive.vote/dash.php?i=1&trail=discovery-it">Curation Trail</a><br>Discovery-it is also a Witness, vote for us <a href = "https://hivesigner.com/sign/account-witness-vote?witness=discovery-it&approve=true"> here</a> <br>Delegate to us for passive income. Check our <a href = "https://hive.blog/hive-193212/@discovery-it/delegations-program-80-fee-back"> 80% fee-back Program</a> <hr>
author | discovery-it |
---|---|
permlink | re-arc7icwolf-jzgfnqqx0t |
category | hive-146620 |
json_metadata | "{"app": "beem/0.24.26"}" |
created | 2024-08-27 23:01:54 |
last_update | 2024-08-27 23:01:54 |
depth | 1 |
children | 0 |
last_payout | 2024-09-03 23:01:54 |
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 | 773 |
author_reputation | 67,096,321,565,015 |
root_title | "[ENG/ITA] Python and Hive: A Tool to Simplify Curation | Work in Progress!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 136,589,944 |
net_rshares | 0 |
<div class="pull-left"> <img src="https://i.imgur.com/VDg3S7W.gif"></a> </div> <div class="pull-right"> @libertycrypto27, the HiQ Smart Bot has recognized your request (1/2) and will start the voting trail. In addition, @arc7icwolf gets !PIMP from @hiq.redaktion.  <sub>For further questions, check out https://hiq-hive.com or join our [Discord](https://discord.gg/25Fp5wBvQa). And don't forget to vote [HiQs fucking Witness!](https://vote.hive.uno/@hiq.witness) 😻</sub> </div>
author | hiq.smartbot |
---|---|
permlink | re-engita-python-and-hive-a-tool-to-simplify-curation-work-in-progress-2ac-20240829t102534z |
category | hive-146620 |
json_metadata | "{"app": "beem/0.24.26"}" |
created | 2024-08-29 10:25:33 |
last_update | 2024-08-29 10:25:33 |
depth | 1 |
children | 0 |
last_payout | 2024-09-05 10:25:33 |
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 | 521 |
author_reputation | 3,284,924,454,526 |
root_title | "[ENG/ITA] Python and Hive: A Tool to Simplify Curation | Work in Progress!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 136,631,412 |
net_rshares | 0 |
<center><sub>[ 🎉 Upvoted 🎉 ](https://vote.hive.uno/@sagarkothari88)<br/> | [<sub>Discord</sub>](https://discord.gg/nrxrx2hgfu) | [<sub>Hive Inbox App</sub>](https://inbox.the-hive-mobile.app) | [<sub>Support/Vote</sub>](https://vote.hive.uno/@sagarkothari88) | |:----:|:----:|:----:| | [](https://discord.gg/nrxrx2hgfu) | [](https://inbox.the-hive-mobile.app) | [](https://vote.hive.uno/@sagarkothari88) | </sub></center>
author | hivecurators | ||||||
---|---|---|---|---|---|---|---|
permlink | 20240827t230339488z | ||||||
category | hive-146620 | ||||||
json_metadata | {"tags":["hive-185924","gift","support","hive-curators","motivate","witness","sagarkothari88"],"format":"markdown","app":"hivecurators_bot"} | ||||||
created | 2024-08-27 23:03:42 | ||||||
last_update | 2024-08-27 23:03:42 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2024-09-03 23:03:42 | ||||||
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 | 882 | ||||||
author_reputation | 6,181,477,982,082 | ||||||
root_title | "[ENG/ITA] Python and Hive: A Tool to Simplify Curation | Work in Progress!" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 100,000.000 HBD | ||||||
percent_hbd | 0 | ||||||
post_id | 136,589,968 | ||||||
net_rshares | 0 |
Ottime idee e ti seguo con molto interesse in questa tua avventura nella creazione di utili scritp !discovery 50 !PIMP !hiqvote @tipu curate 2
author | libertycrypto27 |
---|---|
permlink | re-arc7icwolf-2024828t1127821z |
category | hive-146620 |
json_metadata | {"tags":["hive-146620","python","hive","dev","pob","pimp","cent","inleo"],"app":"ecency/3.2.0-vision","format":"markdown+html"} |
created | 2024-08-27 23:01:24 |
last_update | 2024-08-27 23:01:24 |
depth | 1 |
children | 4 |
last_payout | 2024-09-03 23:01:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.017 HBD |
curator_payout_value | 0.017 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 142 |
author_reputation | 1,958,168,507,027,429 |
root_title | "[ENG/ITA] Python and Hive: A Tool to Simplify Curation | Work in Progress!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 136,589,935 |
net_rshares | 139,966,602,606 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
arc7icwolf | 0 | 139,828,025,117 | 83% | ||
badge-714285 | 0 | 138,577,489 | 14.28% |
Probabilmente tutto si tradurrà solamente in un po' di esercizio e qualcosa di nuovo imparato, però non si sa mai che un domani possa nascerne qualcosa di più utile e concreto :) Grazie mille per tutto il supporto ed i mega-upvotes! !PIZZA !LOL !LUV
author | arc7icwolf |
---|---|
permlink | re-libertycrypto27-2024828t10487309z |
category | hive-146620 |
json_metadata | {"tags":["hive-146620","python","hive","dev","pob","pimp","cent","inleo"],"app":"ecency/3.2.0-vision","format":"markdown+html"} |
created | 2024-08-28 08:48:09 |
last_update | 2024-08-28 08:48:09 |
depth | 2 |
children | 2 |
last_payout | 2024-09-04 08:48: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 | 251 |
author_reputation | 496,501,933,694,683 |
root_title | "[ENG/ITA] Python and Hive: A Tool to Simplify Curation | Work in Progress!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 136,610,939 |
net_rshares | 0 |
<div class='pull-right'><center><img src="https://lolztoken.com/lolz.png"><br><a href="https://lolztoken.com">lolztoken.com</a></p><br><br><br><br></center></div><p><center><strong>Did you hear about the dyslexic pimp?<br>He bought a warehouse.</strong><br><sub>Credit: <a href="https://peakd.com/@reddit">reddit</a></sub><br>@libertycrypto27, I sent you an <a href="https://lolztoken.com">$LOLZ</a> on behalf of arc7icwolf<br><br>(1/10)<br>Farm <strong><a href='https://lolztoken.com'>LOLZ tokens</a></strong> when you <strong><a href='https://peakd.com/hive-155986/@lolztoken/earn-10percent-apr-on-hive-power-delegations-to-the-lolz-project'>Delegate Hive</a> or <a href='https://peakd.com/hive-155986/@lolztoken/introducing-lolz-defi-now-you'>Hive Tokens</a>.</strong><br>Click to delegate: <a href='https://hivesigner.com/sign/delegateVestingShares?delegator=&delegatee=lolzbot&vesting_shares=10%20HP'>10</a> - <a href='https://hivesigner.com/sign/delegateVestingShares?delegator=&delegatee=lolzbot&vesting_shares=20%20HP'>20</a> - <a href='https://hivesigner.com/sign/delegateVestingShares?delegator=&delegatee=lolzbot&vesting_shares=50%20HP'>50</a> - <a href='https://hivesigner.com/sign/delegateVestingShares?delegator=&delegatee=lolzbot&vesting_shares=100%20HP'>100</a> HP</center></p>
author | lolzbot |
---|---|
permlink | re-re-libertycrypto27-2024828t10487309z-20240828t085006z |
category | hive-146620 |
json_metadata | "{"app": "beem/0.24.19"}" |
created | 2024-08-28 08:50:12 |
last_update | 2024-08-28 08:50:12 |
depth | 3 |
children | 0 |
last_payout | 2024-09-04 08:50:12 |
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 | 1,293 |
author_reputation | 196,132,179,798,702 |
root_title | "[ENG/ITA] Python and Hive: A Tool to Simplify Curation | Work in Progress!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 136,610,960 |
net_rshares | 0 |
@libertycrypto27, @arc7icwolf<sub>(1/4)</sub> sent you LUV. | <a href="https://crrdlx.on.fleek.co/" style="text-decoration:none">tools</a> | <a href="https://discord.gg/K5GvNhcPqR" style="text-decoration:none">discord</a> | <a href="https://peakd.com/c/hive-159259">community </a> | <a href="https://hivewiki.netlify.app" style="text-decoration:none">HiveWiki</a> | <a href="https://ichthys.netlify.app" style="text-decoration:none"><>< daily</a> <center>Made with <a href="https://peakd.com/@luvshares" target="_blank">LUV</a> by <a href="https://hive.blog/@crrdlx" target="_blank">crrdlx</a></center>
author | luvshares |
---|---|
permlink | re-re-libertycrypto27-2024828t10487309z-20240828t084817z |
category | hive-146620 |
json_metadata | "{"app": "beem/0.24.26"}" |
created | 2024-08-28 08:48:18 |
last_update | 2024-08-28 08:48:18 |
depth | 3 |
children | 0 |
last_payout | 2024-09-04 08:48:18 |
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 | 619 |
author_reputation | 5,651,102,754,153 |
root_title | "[ENG/ITA] Python and Hive: A Tool to Simplify Curation | Work in Progress!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 136,610,944 |
net_rshares | 0 |
<a href="https://tipu.online/hive_curator?libertycrypto27" target="_blank">Upvoted 👌</a> (Mana: 40/60) <a href="https://peakd.com/hive/@reward.app/reward-app-quick-guide-updated" target="_blank">Liquid rewards</a>.
author | tipu |
---|---|
permlink | re-re-arc7icwolf-2024828t1127821z-20240827t230129z |
category | hive-146620 |
json_metadata | "{"app": "beem/0.24.26"}" |
created | 2024-08-27 23:01:30 |
last_update | 2024-08-27 23:01:30 |
depth | 2 |
children | 0 |
last_payout | 2024-09-03 23:01:30 |
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 | 223 |
author_reputation | 55,907,731,942,968 |
root_title | "[ENG/ITA] Python and Hive: A Tool to Simplify Curation | Work in Progress!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 136,589,937 |
net_rshares | 0 |
My dear friends, You are doing great , I get admission In software engineering Now a days I am learning the basic which is C. your work motivate me very much, I love your work ,Keep it up and motivate us , Tell me It is easy for me to learn coding and work for hive blog chain , can I do it ?
author | mrdani12 | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
permlink | sizino | ||||||||||||
category | hive-146620 | ||||||||||||
json_metadata | {"app":"hiveblog/0.1"} | ||||||||||||
created | 2024-08-29 14:52:36 | ||||||||||||
last_update | 2024-08-29 14:52:36 | ||||||||||||
depth | 1 | ||||||||||||
children | 0 | ||||||||||||
last_payout | 2024-09-05 14:52:36 | ||||||||||||
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 | 292 | ||||||||||||
author_reputation | 197,536,835,513,225 | ||||||||||||
root_title | "[ENG/ITA] Python and Hive: A Tool to Simplify Curation | Work in Progress!" | ||||||||||||
beneficiaries |
| ||||||||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||||||||
percent_hbd | 10,000 | ||||||||||||
post_id | 136,635,454 | ||||||||||||
net_rshares | 0 |
<center>PIZZA! $PIZZA slices delivered: @arc7icwolf<sub>(4/10)</sub> tipped @pousinha pousinha tipped arc7icwolf arc7icwolf tipped stewie.wieno arc7icwolf tipped libertycrypto27 </center>
author | pizzabot |
---|---|
permlink | re-engita-python-and-hive-a-tool-to-simplify-curation-work-in-progress-2ac-20240828t084831z |
category | hive-146620 |
json_metadata | "{"app": "leothreads/pizzabot"}" |
created | 2024-08-28 08:48:30 |
last_update | 2024-09-01 20:07:18 |
depth | 1 |
children | 0 |
last_payout | 2024-09-04 08:48:30 |
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 | 195 |
author_reputation | 7,459,833,231,431 |
root_title | "[ENG/ITA] Python and Hive: A Tool to Simplify Curation | Work in Progress!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 136,610,947 |
net_rshares | 0 |
Bella idea, speriamo vada in porto, !PIZZA !BEER
author | pousinha |
---|---|
permlink | re-arc7icwolf-sj237p |
category | hive-146620 |
json_metadata | {"tags":["hive-146620"],"app":"peakd/2024.8.7"} |
created | 2024-08-31 00:11:51 |
last_update | 2024-08-31 00:11:51 |
depth | 1 |
children | 3 |
last_payout | 2024-09-07 00:11: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 | 48 |
author_reputation | 57,617,955,028,494 |
root_title | "[ENG/ITA] Python and Hive: A Tool to Simplify Curation | Work in Progress!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 136,684,533 |
net_rshares | 0 |
Grazie :) Probabilmente resterà sempre e solo un'idea, però io comunque come forma di esercizio punto a finire il tutto e creare un qualcosa di funzionante... poi chissà, magari un giorno servirà a qualcosa :) !LOL !PIZZA
author | arc7icwolf |
---|---|
permlink | re-pousinha-202491t22659909z |
category | hive-146620 |
json_metadata | {"tags":["hive-146620"],"app":"ecency/3.2.0-vision","format":"markdown+html"} |
created | 2024-09-01 20:06:57 |
last_update | 2024-09-01 20:06:57 |
depth | 2 |
children | 2 |
last_payout | 2024-09-08 20:06:57 |
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 | 223 |
author_reputation | 496,501,933,694,683 |
root_title | "[ENG/ITA] Python and Hive: A Tool to Simplify Curation | Work in Progress!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 136,770,302 |
net_rshares | 1,312,734,939 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
pousinha | 0 | 1,312,734,939 | 40% |
<div class='pull-right'><center><img src="https://lolztoken.com/lolz.png"><br><a href="https://lolztoken.com">lolztoken.com</a></p><br><br><br><br></center></div><p><center><strong>Why did the king go to the dentist?<br>To get his teeth crowned.</strong><br><sub>Credit: <a href="https://peakd.com/@reddit">reddit</a></sub><br>@pousinha, I sent you an <a href="https://lolztoken.com">$LOLZ</a> on behalf of arc7icwolf<br><br>(3/10)<br>Delegate Hive Tokens to Farm $LOLZ and earn 110% Rewards. <a href='https://peakd.com/@lolztoken/introducing-lolz-defi-now-you'>Learn more.</a></center></p>
author | lolzbot |
---|---|
permlink | re-re-pousinha-202491t22659909z-20240901t200715z |
category | hive-146620 |
json_metadata | "{"app": "beem/0.24.19"}" |
created | 2024-09-01 20:07:21 |
last_update | 2024-09-01 20:07:21 |
depth | 3 |
children | 0 |
last_payout | 2024-09-08 20:07:21 |
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 | 591 |
author_reputation | 196,132,179,798,702 |
root_title | "[ENG/ITA] Python and Hive: A Tool to Simplify Curation | Work in Progress!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 136,770,310 |
net_rshares | 0 |
Sicuramente che servirà, !PGM
author | pousinha |
---|---|
permlink | re-arc7icwolf-sj5xws |
category | hive-146620 |
json_metadata | {"tags":"hive-146620"} |
created | 2024-09-02 02:07:42 |
last_update | 2024-09-02 02:08:03 |
depth | 3 |
children | 0 |
last_payout | 2024-09-09 02:07:42 |
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 | 29 |
author_reputation | 57,617,955,028,494 |
root_title | "[ENG/ITA] Python and Hive: A Tool to Simplify Curation | Work in Progress!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 136,776,014 |
net_rshares | 0 |
Ohhh This is quite useful... I'll check the previous post... Learned a bit about Python in a compulsory course in school, although the language didn't stick😂😂😂😭
author | seki1 |
---|---|
permlink | re-arc7icwolf-six6te |
category | hive-146620 |
json_metadata | {"tags":["hive-146620"],"app":"peakd/2024.8.7"} |
created | 2024-08-28 08:41:39 |
last_update | 2024-08-28 08:41:39 |
depth | 1 |
children | 2 |
last_payout | 2024-09-04 08:41:39 |
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 | 161 |
author_reputation | 149,741,287,461,925 |
root_title | "[ENG/ITA] Python and Hive: A Tool to Simplify Curation | Work in Progress!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 136,610,850 |
net_rshares | 0 |
I'm just scratching the basics, but the possibility seems so many that I couldn't help but attempt to write something :) I'm trying to learn it on my own, but I can confirm that a lot of exercise is required not to forget what one has learned in the previous days/weeks/months !LOL I had to stop for a few months and I almost forgot everything 😂
author | arc7icwolf |
---|---|
permlink | re-seki1-2024828t111243109z |
category | hive-146620 |
json_metadata | {"tags":["hive-146620"],"app":"ecency/3.2.0-vision","format":"markdown+html"} |
created | 2024-08-28 09:12:45 |
last_update | 2024-08-28 09:12:45 |
depth | 2 |
children | 1 |
last_payout | 2024-09-04 09: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 | 346 |
author_reputation | 496,501,933,694,683 |
root_title | "[ENG/ITA] Python and Hive: A Tool to Simplify Curation | Work in Progress!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 136,611,237 |
net_rshares | 0 |
<div class='pull-right'><center><img src="https://lolztoken.com/lolz.png"><br><a href="https://lolztoken.com">lolztoken.com</a></p><br><br><br><br></center></div><p><center><strong>Did you know that the first french fries weren’t cooked in France?<br>They were cooked in Greece.</strong><br><sub>Credit: <a href="https://peakd.com/@belhaven14">belhaven14</a></sub><br>@seki1, I sent you an <a href="https://lolztoken.com">$LOLZ</a> on behalf of arc7icwolf<br><br>(4/10)<br>NEW: <a href='https://peakd.com/@lolz.burner/posts'>Join LOLZ's Daily Earn and Burn Contest and win $LOLZ</a></center></p>
author | lolzbot |
---|---|
permlink | re-re-seki1-2024828t111243109z-20240828t091305z |
category | hive-146620 |
json_metadata | "{"app": "beem/0.24.19"}" |
created | 2024-08-28 09:13:09 |
last_update | 2024-08-28 09:13:09 |
depth | 3 |
children | 0 |
last_payout | 2024-09-04 09:13: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 | 596 |
author_reputation | 196,132,179,798,702 |
root_title | "[ENG/ITA] Python and Hive: A Tool to Simplify Curation | Work in Progress!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 136,611,240 |
net_rshares | 0 |
Beautiful Soup, interesting.., I haven't tried scraping as yet. You can get a post count using BEEM, I can dig it out of my script if you like. BEEM is also deprecated and I am going to re-write my BOT soon, using alternative code.
author | slobberchops |
---|---|
permlink | re-arc7icwolf-sixwry |
category | hive-146620 |
json_metadata | {"tags":["hive-146620"],"app":"peakd/2024.8.7"} |
created | 2024-08-28 18:02:24 |
last_update | 2024-08-28 18:02:24 |
depth | 1 |
children | 3 |
last_payout | 2024-09-04 18:02:24 |
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 | 231 |
author_reputation | 2,427,110,508,205,057 |
root_title | "[ENG/ITA] Python and Hive: A Tool to Simplify Curation | Work in Progress!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 136,618,990 |
net_rshares | 0 |
I was looking for a way to build a word counter of my own and Beautiful Soup seemed like the way to go... I had no idea BEEM already had its own counter 😅 I just started using it and I still have to check a lot of stuff! :) >BEEM is also deprecated Really!? What a sad news, I was just starting to experiment with it... is there already an alternative around? I started learning python roughly 2 months ago and I thought that doing something tangible on Hive could help me stay motivated and focused :) Btw, many thanks for the support! This evening I already made some improvements to the code above: 1) I added one more func to create a new file every 24 hours, with each file having in its name the date it was created 2) I polished a bit the code and made it more readable Now I'm going to work on the other two scripts I'd like to write!
author | arc7icwolf |
---|---|
permlink | re-slobberchops-2024828t22505949z |
category | hive-146620 |
json_metadata | {"tags":["hive-146620"],"app":"ecency/3.2.0-vision","format":"markdown+html"} |
created | 2024-08-28 20:50:57 |
last_update | 2024-08-28 20:50:57 |
depth | 2 |
children | 2 |
last_payout | 2024-09-04 20:50:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.038 HBD |
curator_payout_value | 0.039 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 847 |
author_reputation | 496,501,933,694,683 |
root_title | "[ENG/ITA] Python and Hive: A Tool to Simplify Curation | Work in Progress!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 136,621,326 |
net_rshares | 308,495,309,640 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
slobberchops | 0 | 308,495,309,640 | 5% |
This will give you some idea of how to get the body content size using BEEM. # Get Approximate Bodysize of post bodysize = BEEMComment_post.body.split(" ", post.body.count(" ")) bodylen = len(bodysize) BEEM was maintained by an ex-witness named @holger80 who vanished some time ago. His library remains but it's getting more outdated every day. I am starting to look at the HIVE Condenser API, it's here: https://developers.hive.io/apidefinitions/condenser-api.html >I started learning python roughly 2 months ago and I thought that doing something tangible on Hive could help me stay motivated and focused :) Do it, it's very rewarding...
author | slobberchops |
---|---|
permlink | re-arc7icwolf-siy573 |
category | hive-146620 |
json_metadata | {"tags":["hive-146620"],"app":"peakd/2024.8.7"} |
created | 2024-08-28 21:04:15 |
last_update | 2024-08-28 21:04:15 |
depth | 3 |
children | 1 |
last_payout | 2024-09-04 21:04: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 | 657 |
author_reputation | 2,427,110,508,205,057 |
root_title | "[ENG/ITA] Python and Hive: A Tool to Simplify Curation | Work in Progress!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 136,621,511 |
net_rshares | 0 |
Credo che sia un progetto molto molto interessante e mi farebbe piacere anche un commento da parte di @libertycrypto27 con cui avevo già affrontato l’argomento. Domanda da non addetto ai lavori: ma poi questo script dove gira? Su un server? E come legge le informazioni sulla blockchain per poi curare?
author | stewie.wieno |
---|---|
permlink | re-arc7icwolf-2024828t0415246z |
category | hive-146620 |
json_metadata | {"content_type":"general","type":"comment","tags":["hive-146620","python","hive","dev","pob","pimp","cent","inleo"],"app":"ecency/3.1.5-mobile","format":"markdown+html"} |
created | 2024-08-27 22:41:51 |
last_update | 2024-08-27 22:41:51 |
depth | 1 |
children | 3 |
last_payout | 2024-09-03 22:41:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.016 HBD |
curator_payout_value | 0.017 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 303 |
author_reputation | 178,883,187,005,929 |
root_title | "[ENG/ITA] Python and Hive: A Tool to Simplify Curation | Work in Progress!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 136,589,668 |
net_rshares | 137,507,023,525 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
arc7icwolf | 0 | 137,507,023,525 | 83% |
Sì, per essere sempre operativo andrebbe messo su un server (o comunque su un pc che stia sempre accesso), in modo da poter monitorare la chain 24 ore al giorno; ora come ora, invece, è attivo solo quando lo testo sul mio pc (che però è un portatile, per cui sta acceso solo quando lo utilizzo). >E come legge le informazioni sulla blockchain per poi curare? La spiegazione tecnica non te la saprei dare 😅 perchè il modo in cui collegarsi è stato "programmato" all'inizio da chi ha sviluppato Steem/Hive, per cui chi è arrivato dopo può limitarsi ad utilizzare il lavoro già fatto. Nel mio codice la parte che consente il collegamento ad Hive è questa: ```python # Instanciate Hive HIVE_API_NODE = "https://api.deathwing.me" HIVE = Hive(node=[HIVE_API_NODE]) beem.instance.set_shared_blockchain_instance(HIVE) ``` mentre quest'altra è la parte che si occupa di leggere tutte le transazioni della chain che siano classificate come "comment" (i post ed i commenti rientrano entrambi in questa categoria): ```python for op in blockchain.stream( opNames=["comment"], start=start_block, threading=False, thread_num=1 ): ``` Una volta connesso ad Hive ed avendo a disposizione i dati sulle transazioni che mi interessano, posso aggiungere parti di codice che si occupino di analizzare quei dati (ad es. distinguendo i post dai commenti) e di effettuare determinate operazioni quando viene incontrato un dato che mi interessa (ad es. upvotare e/o commentare un post, nel primo script che ho fatto, o salvarne il link in un file di testo, nello script che ho pubblicato in questo post). Ora pensavo di rifinire il codice che ho pubblicato qui (la lista con i link ad esempio penso sarebbe più chiara se avesse un numero crescente di fronte ad ogni link, così per un eventuale curatore sarebbe più facile tenere traccia dell'ultimo link che ha controllato, soprattutto se dovesse coordinarsi con altri curatori) e poi pensavo di scrivere il secondo script (ossia quello che si occuperebbe di upvotare e commentare i link selezionati, che poi in buona parte potrei utilizzare il codice del primo bot che ho creato, che tanto faceva già qualcosa di simile). Da ultimo vorrei anche crearne un terzo che si occupi di generare un post automatico di riepilogo in cui siano riportati tutti i post upvotati quel giorno: in linea teorica i guadagni di questo post potrebbero così essere utilizzati per pagare i costi di un eventuale server e ricompensare i curatori per la loro attività. !PIZZA !LOL
author | arc7icwolf |
---|---|
permlink | re-stewiewieno-2024828t11556507z |
category | hive-146620 |
json_metadata | {"tags":["hive-146620","python","hive","dev","pob","pimp","cent","inleo"],"app":"ecency/3.2.0-vision","format":"markdown+html"} |
created | 2024-08-28 09:05:57 |
last_update | 2024-08-28 09:05:57 |
depth | 2 |
children | 2 |
last_payout | 2024-09-04 09:05:57 |
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 | 2,512 |
author_reputation | 496,501,933,694,683 |
root_title | "[ENG/ITA] Python and Hive: A Tool to Simplify Curation | Work in Progress!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 136,611,121 |
net_rshares | 4,643,792,775 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
stewie.wieno | 0 | 4,643,792,775 | 49% |
<div class='pull-right'><center><img src="https://lolztoken.com/lolz.png"><br><a href="https://lolztoken.com">lolztoken.com</a></p><br><br><br><br></center></div><p><center><strong>What happened when the cows escaped from the paddock?<br>Udder Chaos!</strong><br><sub>Credit: <a href="https://peakd.com/@reddit">reddit</a></sub><br>@stewie.wieno, I sent you an <a href="https://lolztoken.com">$LOLZ</a> on behalf of arc7icwolf<br><br>(2/10)<br>NEW: <a href='https://peakd.com/@lolz.burner/posts'>Join LOLZ's Daily Earn and Burn Contest and win $LOLZ</a></center></p>
author | lolzbot |
---|---|
permlink | re-re-stewiewieno-2024828t11556507z-20240828t091006z |
category | hive-146620 |
json_metadata | "{"app": "beem/0.24.19"}" |
created | 2024-08-28 09:10:12 |
last_update | 2024-08-28 09:10:12 |
depth | 3 |
children | 0 |
last_payout | 2024-09-04 09:10:12 |
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 | 567 |
author_reputation | 196,132,179,798,702 |
root_title | "[ENG/ITA] Python and Hive: A Tool to Simplify Curation | Work in Progress!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 136,611,203 |
net_rshares | 0 |
È un progetto davvero interessante. Ti faccio i miei complimenti!
author | stewie.wieno |
---|---|
permlink | re-arc7icwolf-2024828t131955350z |
category | hive-146620 |
json_metadata | {"content_type":"general","type":"comment","tags":["hive-146620","python","hive","dev","pob","pimp","cent","inleo"],"app":"ecency/3.1.5-mobile","format":"markdown+html"} |
created | 2024-08-28 11:19:57 |
last_update | 2024-08-28 11:19:57 |
depth | 3 |
children | 0 |
last_payout | 2024-09-04 11:19:57 |
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 | 65 |
author_reputation | 178,883,187,005,929 |
root_title | "[ENG/ITA] Python and Hive: A Tool to Simplify Curation | Work in Progress!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 136,612,894 |
net_rshares | 0 |