create account

Script en Python - Calcular y transferir las recompensas de curaci贸n a los delegadores 馃嚜馃嚫 馃嚭馃嚫 by alberto0607

View this thread on: hive.blogpeakd.comecency.com
· @alberto0607 ·
$13.30
Script en Python - Calcular y transferir las recompensas de curaci贸n a los delegadores 馃嚜馃嚫 馃嚭馃嚫
![](https://images.ecency.com/DQmU7w4X8fDNz24mrJWgQ8K57f5W2ZnnJSD54rt7SoBqYF7/banner_scrypt.png)
---
---
### Espa帽ol
---
Desde que iniciamos el proyecto @visualblock hemos tenido como prioridad la transparencia con nuestros delegadores. Al principio, tanto la creaci贸n de los post de curaci贸n como las transferencias semanales a nuestros delegadores han sido hechas de manera manual. A medida que hemos avanzado con el proyecto hemos estado incluyendo tecnolog铆a 煤til en la mejora de procesos, para lograr mayor eficacia y eficiencia. Por tal motivo quiero compartir con los usuarios que nos apoyan con sus delegaciones y con toda la comunidad de Hive el c贸digo base utilizado para calcular y transferir las recompensas de curaci贸n a los delegadores del proyecto @visualblock.

Tambi茅n quiero dar el primer paso en el compromiso que tengo con todos ustedes y con el testigo @hispapro,  para impulsar la innovaci贸n y el desarrollo tecnol贸gico en Hive.

Este script ha estado en pruebas durante varias semanas, la intenci贸n es implementarlo en la web que est谩 en desarrollo para administrar todos los procesos relacionados con las actividades que realizamos en Visualblock, lo cual nos permitir谩 reducir los tiempos de ejecuci贸n y poder aprovecharlo a favor del desarrollo de la comunidad.

Como anunciamos en los post de reporte de pago de las recompensas de curaci贸n semanales, devolvemos el 100% de las recompensas de curaci贸n seg煤n el HP aportado por cada usuario. Explico c贸mo realizamos este c谩lculo con el script:

1. Se obtiene la lista de delegadores con antig眉edad mayor a 4 d铆as.

2. Se remueve de la lista los delegadores donde su 煤ltima delegaci贸n sea igual a 0.

3. Se obtiene la 煤ltima delegaci贸n de cada delegador.

4. Se obtiene la cantidad total de las delegaciones recibidas.

5. Se obtiene la suma total de las recompensas de curaci贸n de la 煤ltima semana.

6. Se obtiene el HP de la cuenta VisualBlock.

7. Se obtiene el HP de la cuenta VisualBlock m谩s delegaciones.

8. Se obtiene la cantidad de recompensas de curaci贸n efectiva, restando la cantidad aportada por el propio HP de VisualBlock.

9. Se calcula la cantidad de HIVE a transferir a cada delegador a partir de la cantidad de recompensas de curaci贸n efectiva.

10. Se transfiere el monto en HIVE a cada delegador.

11. Se crea una tabla en markdown con toda la informaci贸n detallada.

El script est谩 desarrollo en Python usando como bibliotecas principales a [beem](https://github.com/holgern/beem) y [pypyodbc](https://github.com/pypyodbc/pypyodbc), adem谩s de una lista de dependencias que encontrar谩n en el archivo requirements.txt en el repositorio del c贸digo. Para el desarrollo de este script se us贸 la documentaci贸n del [Portal de desarrolladores de Hive](https://developers.hive.io/), [HiveSQL](https://hivesql.io/), [beem](https://github.com/holgern/beem) y de referencia el [bot de discord](https://github.com/enrique89ve/Alientopay) creado por @enrique89

El c贸digo est谩 alojado en los repositorios de GitLab de forma p煤blica para que pueda ser utilizado, modificado y distribuido. [Ver c贸digo fuente aqu铆](https://gitlab.com/alberto0torrealba/transferencia-delegaciones/-/tree/master/).

En el repositorio del c贸digo se encuentra la documentaci贸n para clonar el c贸digo, creaci贸n del entorno virtual, instalaci贸n de bibliotecas de Python, configuraci贸n de variables de entorno, instalaci贸n del controlador ODBC Driver 17 for SQL Server, y la puesta en marcha del script.

Espero les sea de utilidad y que pueda ser difundido para que llegue a todos los nuevos usuarios que se adentran en el desarrollo de aplicaciones para Hive. No se olviden dejar su comentario. Un abrazo.

---
### English
---
Since we started the @visualblock project, we have made transparency with our delegators a priority. In the beginning, both the creation of the curation posts and the weekly transfers to our delegators have been done manually. As we have progressed with the project we have been including useful technology in the improvement of processes, to achieve greater effectiveness and efficiency. For that reason I want to share with the users who support us with their delegations and with the whole Hive community the code base used to calculate and transfer the healing rewards to the delegators of the @visualblock project.

I also want to take the first step in the commitment I have with all of you and with the @hispapro witness, to drive innovation and technological development in Hive.

This script has been in testing for several weeks, the intention is to implement it on the web that is under development to manage all processes related to the activities we perform in Visualblock, which will allow us to reduce execution times and be able to take advantage of it in favor of the development of the community.

As we announced in the weekly curation rewards payment report posts, we return 100% of the curation rewards according to the HP contributed by each user. I explain how we perform this calculation with the script:

1. The list of delegators with seniority greater than 4 days is obtained.

2. Remove from the list the delegators where their last delegation is equal to 0.

3. The last delegation of each delegator is obtained.

4. The total number of delegations received is obtained.

5. The total sum of the healing rewards for the last week is obtained.

6. The HP of the VisualBlock account is obtained.

7. The HP of the VisualBlock account plus delegations is obtained.

8. The amount of effective healing rewards is obtained, subtracting the amount contributed by the VisualBlock's own HP.

9. The amount of HIVE to be transferred to each delegator is calculated from the amount of effective healing rewards.

10. The amount in HIVE is transferred to each delegator.

11. A markdown table is created with all the detailed information.

The script is developed in Python using as main libraries [beem](https://github.com/holgern/beem) and [pypyodbc](https://github.com/pypyodbc/pypyodbc), plus a list of dependencies that you will find in the requirements.txt file in the code repository. For the development of this script we used the documentation of [Hive Developer Portal](https://developers.hive.io/), [HiveSQL](https://hivesql.io/), [beem](https://github.com/holgern/beem) and for reference the [discord bot](https://github.com/enrique89ve/Alientopay) created by @enrique89

The code is publicly hosted in the GitLab repositories so that it can be used, modified and distributed. [See source code here](https://gitlab.com/alberto0torrealba/transferencia-delegaciones/-/tree/master/).

In the code repository you can find the documentation for cloning the code, creating the virtual environment, installing Python libraries, setting environment variables, installing the ODBC Driver 17 for SQL Server, and getting the script up and running.

I hope you find it useful and that it can be disseminated to reach all new users who are getting into the development of applications for Hive. Do not forget to leave your comments. Best regards.

Translated with www.DeepL.com/Translator (free version)

---

>Mi intenci贸n con esta publicaci贸n es dar mi aporte al software libre y al c贸digo abierto, difundiendo al p煤blico en general todos los beneficios, ventajas y facilidades de obtener versiones seguras, optimas y de vanguardia. 

<center>
<a href="https://www.digitalocean.com/?refcode=bd9ee6eaf5ca&utm_campaign=Referral_Invite&utm_medium=Referral_Program&utm_source=badge"><img src="https://web-platforms.sfo2.cdn.digitaloceanspaces.com/WWW/Badge%201.svg" alt="DigitalOcean Referral Badge" /></a>

<sup>
Si necesitas una VPS donde alojar tus servicios en la nube, entra con mi enlace de referido a DigitalOcean y consigue cr茅ditos para tus pruebas
</sup>
</center>
---
<center>
<sup>
![](https://images.ecency.com/DQmTe6rs3TJsrA76Xn6Qh7CuR45vkjNvUsr8HQfA7xpRtiV/imagen.png)

[Vota por nuestro Testigo aliado - @hispapro](https://vote.hive.uno/@hispapro)  
</sup>
</center>


---

Las im谩genes son m铆as o capturas de pantalla tomadas por m铆, a menos que se indiquen fuentes externas. La portada fue creada con canva e im谩genes libres de derechos de autor.

---

Discord: alberto0607
S铆gueme en Twitter:  [alberto_0607](https://twitter.com/alberto_0607)
馃憤  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 299 others
properties (23)
authoralberto0607
permlinkscript-en-python-calcular-y
categoryhive-154226
json_metadata"{"image":["https://images.ecency.com/DQmU7w4X8fDNz24mrJWgQ8K57f5W2ZnnJSD54rt7SoBqYF7/banner_scrypt.png","https://web-platforms.sfo2.cdn.digitaloceanspaces.com/WWW/Badge%201.svg","https://images.ecency.com/DQmTe6rs3TJsrA76Xn6Qh7CuR45vkjNvUsr8HQfA7xpRtiV/imagen.png"],"tags":["hive-154226","python","code","software","stemsocial","stem","ctp","proofofbrain","tribes","aliveandthriving"],"description":"Python script - Calculate and transfer healing rewards to delegators","app":"ecency/3.0.32-vision","format":"markdown+html","image_ratios":["1.7753","3.0769","3.0000"]}"
created2023-06-21 20:46:21
last_update2023-06-21 20:46:21
depth0
children28
last_payout2023-06-28 20:46:21
cashout_time1969-12-31 23:59:59
total_payout_value6.680 HBD
curator_payout_value6.617 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length8,260
author_reputation85,381,778,745,006
root_title"Script en Python - Calcular y transferir las recompensas de curaci贸n a los delegadores 馃嚜馃嚫 馃嚭馃嚫"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id124,660,664
net_rshares28,931,793,140,029
author_curate_reward""
vote details (363)
@capybaraexchange ·
<div class"text-justify">

>Tu publicacion ha sido votada por el Trail de CAPYBARAEXCHANGE por contenido excepcional y formar parte de nuestra comunidad de usuarios activos.

>***Unete a [nuestro canal de discord](https://discord.gg/zFPWeVK) en d贸nde podr谩s conocer mas acerca de nuestras operaciones y servicios. registrate ingresando en [capybaraexchange](https://capybaraexchange.com/register) para disfrutar del servicio***

**Si quieres formar parte de nuestro trail de curaci贸n, ingresa a HIVEVOTE, haciendo clic en la imagen del capybara aristocratico. Capybaraexchange tu casa de cambio, rapida, confiable y segura**
</div>

<center>
[![](https://images.hive.blog/DQmNQtfGCyD3ckrA4R8KR4VueTp8q6pc9vbhCXFxJH5HpEW/SAVE_20230427_021130.jpg)](https://hive.vote/dash.php?i=1&trail=takeru255)
</center>
properties (22)
authorcapybaraexchange
permlinkre-alberto0607-rwngeh
categoryhive-154226
json_metadata{"tags":["hive-154226"],"app":"peakd/2023.6.5"}
created2023-06-22 10:13:39
last_update2023-06-22 10:13:39
depth1
children0
last_payout2023-06-29 10:13:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length804
author_reputation7,693,189,992,752
root_title"Script en Python - Calcular y transferir las recompensas de curaci贸n a los delegadores 馃嚜馃嚫 馃嚭馃嚫"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id124,674,593
net_rshares0
@cristino-wist ·
La informaci贸n nos hace libre. Igualmente pasa con las delegaciones. La forma transparente y determinante del c谩lculo de recompensa en la generaci贸n de contenido a trav茅s de HP est谩 ah铆 en un script y libre para quien desee informarse. Genial!
properties (22)
authorcristino-wist
permlinkre-alberto0607-202418t175038651z
categoryhive-154226
json_metadata{"type":"comment","tags":["hive-154226","python","code","software","stemsocial","stem","ctp","proofofbrain","tribes","aliveandthriving"],"app":"ecency/3.0.44-mobile","format":"markdown+html"}
created2024-01-08 21:50:42
last_update2024-01-08 21:50:42
depth1
children0
last_payout2024-01-15 21:50:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length243
author_reputation240,973,542,277
root_title"Script en Python - Calcular y transferir las recompensas de curaci贸n a los delegadores 馃嚜馃嚫 馃嚭馃嚫"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id130,329,255
net_rshares0
@dhedge ·
Dhedge Call
<center>![1](https://images.hive.blog/u/dhedge/avatar?width=80&height=80)</center><br><br>This post has been selected for upvote from our token accounts by @melinda010100! Based on your tags you received upvotes from the following account(s):<br> <br>- @dhedge.bonus<br>- @dhedge.ctp<br>- @dhedge.pob<br>- @dhedge.alive<br>- @dhedge.stem<br><br>@melinda010100 has 13 vote calls left today.<br><br>Hold 10 or more DHEDGE to unlock daily dividends and gain access to upvote rounds on your posts from @dhedge. Hold 100 or more DHEDGE to unlock thread votes. Calling in our curation accounts currently has a minimum holding requirement of 150 DHEDGE. The more DHEDGE you hold, the higher upvote you can call in. [Buy DHEDGE on Tribaldex](https://tribaldex.com/trade/DHEDGE) or earn some daily by joining one of our many delegation pools at [app.dhedge.cc](https://app.dhedge.cc).
properties (22)
authordhedge
permlinkre-script-en-python-calcular-y-20230623t151545z
categoryhive-154226
json_metadata"{"app": "beem/0.24.26"}"
created2023-06-23 15:15:45
last_update2023-06-23 15:15:45
depth1
children0
last_payout2023-06-30 15:15:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length875
author_reputation5,003,962,900,629
root_title"Script en Python - Calcular y transferir las recompensas de curaci贸n a los delegadores 馃嚜馃嚫 馃嚭馃嚫"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id124,711,873
net_rshares0
@dsc-r2cornell ·
Congratulations, your post has been upvoted by @dsc-r2cornell, which is the curating account for @R2cornell's Discord Community. <center>Curated by Blessed-girl</center>
<center>![r2cornell_curation_banner.png](https://cdn.steemitimages.com/DQmTwPSK52pG2QZmyNE2XHeEtuHCNSpRwmTGY7wMaWbTp8A/r2cornell_curation_banner.png)</center>
Enhorabuena, su "post" ha sido "up-voted" por @dsc-r2cornell, que es la "cuenta curating" de la Comunidad de la Discordia de @R2cornell. 

### <center>[Visit our Discord - Visita nuestro Discord](https://discord.gg/rsRGDhC)</center>
properties (22)
authordsc-r2cornell
permlinkrwomf0
categoryhive-154226
json_metadata{"users":["dsc-r2cornell","r2cornell"],"image":["https://cdn.steemitimages.com/DQmTwPSK52pG2QZmyNE2XHeEtuHCNSpRwmTGY7wMaWbTp8A/r2cornell_curation_banner.png"],"links":["https://discord.gg/rsRGDhC"],"app":"hiveblog/0.1"}
created2023-06-23 01:21:00
last_update2023-06-23 01:21:00
depth1
children0
last_payout2023-06-30 01:21:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length561
author_reputation54,731,360,946,667
root_title"Script en Python - Calcular y transferir las recompensas de curaci贸n a los delegadores 馃嚜馃嚫 馃嚭馃嚫"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id124,696,805
net_rshares0
@ecency ·
**Yay!** 馃<br>Your content has been **boosted with Ecency Points**, by @alberto0607. <br>Use Ecency daily to boost your growth on platform! <br><br><b>Support Ecency</b><br>[Vote for new Proposal](https://hivesigner.com/sign/update-proposal-votes?proposal_ids=%5B245%5D&approve=true)<br>[Delegate HP and earn more](https://ecency.com/hive-125125/@ecency/daily-100-curation-rewards)
properties (22)
authorecency
permlinkre-2023623t2462849z
categoryhive-154226
json_metadata{"tags":["ecency"],"app":"ecency/3.0.20-welcome","format":"markdown+html"}
created2023-06-23 02:46:03
last_update2023-06-23 02:46:03
depth1
children0
last_payout2023-06-30 02:46:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length381
author_reputation613,589,286,978,643
root_title"Script en Python - Calcular y transferir las recompensas de curaci贸n a los delegadores 馃嚜馃嚫 馃嚭馃嚫"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id124,698,171
net_rshares0
@essygold1 ·
Technology is one of the most powerful tools in the development of the Hive projects as enumerated above by @alberto0607
properties (22)
authoressygold1
permlinkre-alberto0607-2023710t51510980z
categoryhive-154226
json_metadata{"tags":["hive-154226","python","code","software","stemsocial","stem","ctp","proofofbrain","tribes","aliveandthriving"],"app":"ecency/3.0.34-vision","format":"markdown+html"}
created2023-07-10 04:15:12
last_update2023-07-10 04:15:12
depth1
children0
last_payout2023-07-17 04:15:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length120
author_reputation7,541,693,987,178
root_title"Script en Python - Calcular y transferir las recompensas de curaci贸n a los delegadores 馃嚜馃嚫 馃嚭馃嚫"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id125,193,803
net_rshares0
@gabrielr29 ·
Que 茅pico! Python es bastante vers谩til jaja, lo he visto en un mont贸n de aplicaciones. Gracias por tus esfuerzos en apoyo a la comunidad hispana :D
properties (22)
authorgabrielr29
permlinkre-alberto0607-rwywjv
categoryhive-154226
json_metadata{"tags":["hive-154226"],"app":"peakd/2023.6.5"}
created2023-06-28 14:35:57
last_update2023-06-28 14:35:57
depth1
children1
last_payout2023-07-05 14:35:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length147
author_reputation37,494,667,324,058
root_title"Script en Python - Calcular y transferir las recompensas de curaci贸n a los delegadores 馃嚜馃嚫 馃嚭馃嚫"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id124,855,704
net_rshares0
@alberto0607 ·
Muchas gracias amigo. 
properties (22)
authoralberto0607
permlinkre-gabrielr29-2023628t152844835z
categoryhive-154226
json_metadata{"tags":["hive-154226"],"app":"ecency/3.0.33-vision","format":"markdown+html"}
created2023-06-28 20:28:45
last_update2023-06-28 20:28:45
depth2
children0
last_payout2023-07-05 20:28:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length22
author_reputation85,381,778,745,006
root_title"Script en Python - Calcular y transferir las recompensas de curaci贸n a los delegadores 馃嚜馃嚫 馃嚭馃嚫"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id124,865,059
net_rshares0
@hispapro ·
<center>![](https://images.ecency.com/DQmTe6rs3TJsrA76Xn6Qh7CuR45vkjNvUsr8HQfA7xpRtiV/imagen.png)</center>

<center><sub>脷nete a la comunidad Web3 en espa帽ol y su testigo activo para impulsar la colaboraci贸n descentralizada. Conectamos, fortalecemos y amplificamos voces. Juntos construimos el futuro digital.</sub></center>

---

<sub>Sigue, contacta y se parte del testigo en: // Follow, contact and be part of the witness in:</sub>
<center>

|<sub><center>[Hive](https://ecency.com/@hispapro)</center></sub>|<sub><center>[Discord](https://discord.gg/tXTD3B6xvZ)</center></sub>|<sub><center>[Twitter](https://twitter.com/hispapro)</center></sub>|
-|-|-
|<sub><center>[FanBase](https://hive.vote/dash.php?fan=hispapro&i=2)</center></sub>|<sub><center>[Trail](https://hive.vote/dash.php?trail=hispapro&i=1)</center></sub>|<sub><center>Delegaciones: [10 - ](https://hivesigner.com/sign/delegateVestingShares?delegatee=hispapro&vesting_shares=10%20HP)[50 - ](https://hivesigner.com/sign/delegateVestingShares?delegatee=hispapro&vesting_shares=50%20HP)[100 - ](https://hivesigner.com/sign/delegateVestingShares?delegatee=hispapro&vesting_shares=100%20HP)[500](https://hivesigner.com/sign/delegateVestingShares?delegatee=hispapro&vesting_shares=500%20HP)</center></sub>|

</center>

<center>![](https://images.ecency.com/DQmPqdJgo7yymPEasCQpmSjRtGETJQCrgARDCW8eggXVsis/separador_1.png)</center>

## <center><sub><div class= "phishy">***Vota por el testigo @Hispapro*** // ***Vote for the @Hispapro witness*** </div></sub></center> 

###### [Keychan](https://vote.hive.uno/@hispapro) - [Hive.blog](https://wallet.hive.blog/~witnesses) - [Ecency](https://ecency.com/witnesses) - [Peakd](https://peakd.com/me/witnesses) 
properties (22)
authorhispapro
permlinkre-alberto0607-2023621t172210884z
categoryhive-154226
json_metadata{"tags":["hive-154226","python","code","software","stemsocial","stem","ctp","proofofbrain","tribes","aliveandthriving"],"app":"ecency/3.0.32-vision","format":"markdown+html"}
created2023-06-21 21:22:12
last_update2023-06-21 21:22:12
depth1
children0
last_payout2023-06-28 21:22:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,713
author_reputation667,813,436,071,046
root_title"Script en Python - Calcular y transferir las recompensas de curaci贸n a los delegadores 馃嚜馃嚫 馃嚭馃嚫"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id124,661,538
net_rshares0
@lismarcarolina2 ·
yo tambien puedo apoyar asi ? !PIZZA
馃憤  ,
properties (23)
authorlismarcarolina2
permlinkre-alberto0607-rwollj
categoryhive-154226
json_metadata{"tags":["hive-154226"],"app":"peakd/2023.6.5"}
created2023-06-23 01:03:21
last_update2023-06-23 01:03:21
depth1
children3
last_payout2023-06-30 01:03:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length36
author_reputation57,670,993,192,462
root_title"Script en Python - Calcular y transferir las recompensas de curaci贸n a los delegadores 馃嚜馃嚫 馃嚭馃嚫"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id124,696,377
net_rshares112,703,553
author_curate_reward""
vote details (2)
@alberto0607 ·
馃
馃憤  ,
properties (23)
authoralberto0607
permlinkre-lismarcarolina2-2023622t20456559z
categoryhive-154226
json_metadata{"tags":["hive-154226"],"app":"ecency/3.0.32-vision","format":"markdown+html"}
created2023-06-23 01:04:57
last_update2023-06-23 01:04:57
depth2
children1
last_payout2023-06-30 01:04:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1
author_reputation85,381,778,745,006
root_title"Script en Python - Calcular y transferir las recompensas de curaci贸n a los delegadores 馃嚜馃嚫 馃嚭馃嚫"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id124,696,412
net_rshares112,316,028
author_curate_reward""
vote details (2)
@lismarcarolina2 ·
馃槙
馃憤  ,
properties (23)
authorlismarcarolina2
permlinkre-alberto0607-rwolye
categoryhive-154226
json_metadata{"tags":["hive-154226"],"app":"peakd/2023.6.5"}
created2023-06-23 01:11:03
last_update2023-06-23 01:11:03
depth3
children0
last_payout2023-06-30 01:11:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1
author_reputation57,670,993,192,462
root_title"Script en Python - Calcular y transferir las recompensas de curaci贸n a los delegadores 馃嚜馃嚫 馃嚭馃嚫"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id124,696,542
net_rshares112,509,674
author_curate_reward""
vote details (2)
@pizzabot ·
@lismarcarolina2, sorry! You need more to stake more $PIZZA to use this command.

The minimum requirement is 20.0 PIZZA staked.

More $PIZZA is available from [Hive-Engine](https://hive-engine.com/?p=market&t=PIZZA) or [Tribaldex](https://tribaldex.com/trade/PIZZA)
properties (22)
authorpizzabot
permlinkre-re-alberto0607-rwollj-20230623t010344z
categoryhive-154226
json_metadata"{"app": "pizzabot"}"
created2023-06-23 01:03:45
last_update2023-06-23 01:03:45
depth2
children0
last_payout2023-06-30 01:03:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length266
author_reputation7,436,786,204,887
root_title"Script en Python - Calcular y transferir las recompensas de curaci贸n a los delegadores 馃嚜馃嚫 馃嚭馃嚫"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id124,696,390
net_rshares0
@melinda010100 ·
Onward and Upward! Nicely Done!
!DHEDGE 
馃憤  ,
properties (23)
authormelinda010100
permlinkre-alberto0607-2023623t101536233z
categoryhive-154226
json_metadata{"tags":["hive-154226","python","code","software","stemsocial","stem","ctp","proofofbrain","tribes","aliveandthriving"],"app":"ecency/3.0.41-mobile","format":"markdown+html"}
created2023-06-23 15:15:33
last_update2023-06-23 15:15:33
depth1
children1
last_payout2023-06-30 15:15:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length40
author_reputation1,039,931,404,518,318
root_title"Script en Python - Calcular y transferir las recompensas de curaci贸n a los delegadores 馃嚜馃嚫 馃嚭馃嚫"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id124,711,868
net_rshares112,123,980
author_curate_reward""
vote details (2)
@alberto0607 ·
Thank you so much! And grateful to you for all the support.
馃憤  ,
properties (23)
authoralberto0607
permlinkre-melinda010100-2023623t101659994z
categoryhive-154226
json_metadata{"tags":["hive-154226","python","code","software","stemsocial","stem","ctp","proofofbrain","tribes","aliveandthriving"],"app":"ecency/3.0.32-vision","format":"markdown+html"}
created2023-06-23 15:17:00
last_update2023-06-23 15:17:00
depth2
children0
last_payout2023-06-30 15:17:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length59
author_reputation85,381,778,745,006
root_title"Script en Python - Calcular y transferir las recompensas de curaci贸n a los delegadores 馃嚜馃嚫 馃嚭馃嚫"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id124,711,920
net_rshares111,930,797
author_curate_reward""
vote details (2)
@oscarps ·
!ALIVE
!VSC
!PGM
properties (22)
authoroscarps
permlinkre-alberto0607-2023621t224958381z
categoryhive-154226
json_metadata{"tags":["hive-154226","python","code","software","stemsocial","stem","ctp","proofofbrain","tribes","aliveandthriving"],"app":"ecency/3.0.32-vision","format":"markdown+html"}
created2023-06-21 20:50:00
last_update2023-06-21 20:50:00
depth1
children3
last_payout2023-06-28 20:50:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length16
author_reputation430,777,015,489,433
root_title"Script en Python - Calcular y transferir las recompensas de curaci贸n a los delegadores 馃嚜馃嚫 馃嚭馃嚫"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id124,660,731
net_rshares0
@pgm-curator ·
<center>Sent 0.1 PGM - 0.1 LVL- 1 STARBITS  - 0.05 DEC - 1 SBT - 0.1 THG - 0.000001 SQM - 0.1 BUDS - 0.01 WOO tokens </center>

<center><sub>remaining commands 3</sub></center>


**BUY AND STAKE THE PGM TO SEND A LOT OF TOKENS!**

The tokens that the command sends are: 0.1 PGM-0.1 LVL-0.1 THGAMING-0.05 DEC-15 SBT-1 STARBITS-[0.00000001 BTC (SWAP.BTC) only if you have 2500 PGM in stake or more ]

5000 PGM IN STAKE = 2x rewards! 

![image.png](https://files.peakd.com/file/peakd-hive/zottone444/23t7AyKqAfdxKEJPQrpePMW15BCPhbyrf5VoHWxhBFcEcPLjDUVVQAh9ZAopbmoJDekS6.png)
Discord [![image.png](https://files.peakd.com/file/peakd-hive/hive-135941/23wfr3mtLS9ddSpifBvh7mwLx1rN3eoaSvbwUxTngsNR1GQ8EiZTrC9P9RwZxHCCfK8e5.png)](https://discord.gg/KCvuNTEjWw)


Support the curation account @ pgm-curator with a delegation [10 HP](https://hivesigner.com/sign/op/WyJkZWxlZ2F0ZV92ZXN0aW5nX3NoYXJlcyIseyJkZWxlZ2F0b3IiOiJfX3NpZ25lciIsImRlbGVnYXRlZSI6InBnbS1jdXJhdG9yIiwidmVzdGluZ19zaGFyZXMiOiIxMCJ9XQ..) - [50 HP](https://hivesigner.com/sign/op/WyJkZWxlZ2F0ZV92ZXN0aW5nX3NoYXJlcyIseyJkZWxlZ2F0b3IiOiJfX3NpZ25lciIsImRlbGVnYXRlZSI6InBnbS1jdXJhdG9yIiwidmVzdGluZ19zaGFyZXMiOiI1MCJ9XQ..) - [100 HP](https://hivesigner.com/sign/op/WyJkZWxlZ2F0ZV92ZXN0aW5nX3NoYXJlcyIseyJkZWxlZ2F0b3IiOiJfX3NpZ25lciIsImRlbGVnYXRlZSI6InBnbS1jdXJhb3RyIiwidmVzdGluZ19zaGFyZXMiOiIxMDAifV0.) - [500 HP](https://hivesigner.com/sign/op/WyJkZWxlZ2F0ZV92ZXN0aW5nX3NoYXJlcyIseyJkZWxlZ2F0b3IiOiJfX3NpZ25lciIsImRlbGVnYXRlZSI6InBnbS1jdXJhdG9yIiwidmVzdGluZ19zaGFyZXMiOiI1MDAifV0.) - [1000 HP](https://hivesigner.com/sign/op/WyJ0cmFuc2Zlcl90b192ZXN0aW5nIix7ImZyb20iOiJfX3NpZ25lciIsInRvIjoicGdtLWN1cmF0b3IiLCJhbW91bnQiOiIxMDAwIn1d)

Get **potential** votes from @ pgm-curator by paying in PGM, here is a [guide](https://peakd.com/hive-146620/@zottone444/pay-1-pgm-and-get-4-votes-itaegn)



<sub>I'm a bot, if you want a hand ask @ zottone444</sub>

***
properties (22)
authorpgm-curator
permlinkpgm-curatoroscarps1687380615336
categoryhive-154226
json_metadata{"tags":[],"app":"pgm/0.1","format":"markdown+html"}
created2023-06-21 20:50:15
last_update2023-06-21 20:50:15
depth2
children0
last_payout2023-06-28 20:50:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,902
author_reputation3,409,490,822,394
root_title"Script en Python - Calcular y transferir las recompensas de curaci贸n a los delegadores 馃嚜馃嚫 馃嚭馃嚫"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id124,660,739
net_rshares0
@visualbot ·
<center>

<img src="https://cdn.discordapp.com/attachments/1066793121372971078/1069442515960340530/Picsart_23-01-21_13-21-28-055.jpg">

<sub>@oscarps has sent VSC to @alberto0607</sub>

<sub>This post was rewarded with 0.1 VSC to support your work.
Join our photography community<A HREF="https://peakd.com/c/hive-132248/created"><STRONG>Visual Shots</STRONG></A>
Check here to <A HREF="https://hive-engine.com/trade/VSC"><STRONG>view or trade VSC Tokens</STRONG></A>
Be part of our <A HREF="https://hive.vote/dash.php?trail=visualshots&i=1"><STRONG>Curation Trail</STRONG></A></sub>

---

<sub>@oscarps ha enviado VSC a @alberto0607</sub>

<sub>脡ste post fue recompensado con 0.1 VSC para apoyar tu trabajo.
脷nete a nuestra comunidad de fotograf铆a <A HREF="https://peakd.com/c/hive-132248/created"><STRONG>Visual Shots</STRONG></A>
Consulte aqu铆 para <A HREF="https://hive-engine.com/trade/VSC"><STRONG>ver o intercambiar VSC Tokens</STRONG></A>
Se parte de nuestro <A HREF="https://hive.vote/dash.php?trail=visualshots&i=1"><STRONG>Trail de Curaci贸n</STRONG></A></sub>

</center>

---

<center>Uses: 2/10</center>
properties (22)
authorvisualbot
permlinkre-oscarps-re-alberto0607-2023621t224958381z-20230621t205007409z
categoryhive-154226
json_metadata{"app":"hive-bot/0.6.3"}
created2023-06-21 20:50:09
last_update2023-06-21 20:50:09
depth2
children0
last_payout2023-06-28 20:50:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,114
author_reputation734,995,980,039
root_title"Script en Python - Calcular y transferir las recompensas de curaci贸n a los delegadores 馃嚜馃嚫 馃嚭馃嚫"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id124,660,734
net_rshares0
@youarealive ·
<center><p>@alberto0607! <b>You Are Alive</b> so I just staked 0.1 <b>$ALIVE</b> to your account on behalf of @oscarps. <sub>(2/10)</sub></p>
<p>The tip has been paid for by the <a href="https://www.wearealiveand.social/">We Are Alive Tribe</a> through the earnings on @alive.chat, feel free to swing by our daily chat any time you want, plus you can win Hive Power and Alive Power delegations and Ecency Points in our chat every day. <br /> <img src="https://i.imgur.com/p2WXJLn.png"></p></center>
properties (22)
authoryouarealive
permlinkre-re-alberto0607-2023621t224958381z-20230621t205018z
categoryhive-154226
json_metadata"{"app": "beem/0.24.26"}"
created2023-06-21 20:50:18
last_update2023-06-21 20:50:18
depth2
children0
last_payout2023-06-28 20:50:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length498
author_reputation10,879,217,502,976
root_title"Script en Python - Calcular y transferir las recompensas de curaci贸n a los delegadores 馃嚜馃嚫 馃嚭馃嚫"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id124,660,740
net_rshares0
@pizzabot ·
<center>PIZZA!


$PIZZA slices delivered:
@sacra97<sub>(5/10)</sub> tipped @alberto0607 


</center>
properties (22)
authorpizzabot
permlinkre-script-en-python-calcular-y-20230622t104527z
categoryhive-154226
json_metadata"{"app": "pizzabot"}"
created2023-06-22 10:45:27
last_update2023-06-22 10:45:27
depth1
children0
last_payout2023-06-29 10:45:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length100
author_reputation7,436,786,204,887
root_title"Script en Python - Calcular y transferir las recompensas de curaci贸n a los delegadores 馃嚜馃嚫 馃嚭馃嚫"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id124,675,164
net_rshares0
@poshthreads ·
$0.02
https://leofinance.io/threads/hispapro/re-hispapro-294hdgtnj
<sub> The rewards earned on this comment will go directly to the people ( hispapro ) sharing the post on LeoThreads,LikeTu,dBuzz.</sub>
馃憤  ,
properties (23)
authorposhthreads
permlinkre-alberto0607-script-en-python-calcular-y-1168
categoryhive-154226
json_metadata"{"app":"Poshtoken 0.0.2","payoutToUser":["hispapro"]}"
created2023-06-21 23:04:24
last_update2023-06-21 23:04:24
depth1
children0
last_payout2023-06-28 23:04:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.022 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length197
author_reputation415,471,585,053,248
root_title"Script en Python - Calcular y transferir las recompensas de curaci贸n a los delegadores 馃嚜馃嚫 馃嚭馃嚫"
beneficiaries
0.
accountnomnomnomnom
weight10,000
max_accepted_payout1,000,000.000 HBD
percent_hbd0
post_id124,663,609
net_rshares98,221,371,003
author_curate_reward""
vote details (2)
@sacra97 ·
Parece un completo programa que cubre todas las bases sin duda alguna, debe aliviar y mejorar la forma de entregar recompensas de delegaci贸n. Poniendo esos conocimientos a funcionar, debi贸 llevarte muchas horas de trabajo  pero la recompensa esta all铆 lista. Much铆simo 茅xito @alberto0607  un abrazo 
馃憤  ,
properties (23)
authorsacra97
permlinkre-alberto0607-2023622t64226783z
categoryhive-154226
json_metadata{"tags":["hive-154226","python","code","software","stemsocial","stem","ctp","proofofbrain","tribes","aliveandthriving"],"app":"ecency/3.0.32-vision","format":"markdown+html"}
created2023-06-22 10:42:27
last_update2023-06-22 10:42:27
depth1
children1
last_payout2023-06-29 10:42:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length299
author_reputation442,783,513,113,506
root_title"Script en Python - Calcular y transferir las recompensas de curaci贸n a los delegadores 馃嚜馃嚫 馃嚭馃嚫"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id124,675,107
net_rshares138,719,468
author_curate_reward""
vote details (2)
@alberto0607 ·
Ha sido un proceso de mucho estudio, aprendizaje y satisfacci贸n @sacra97. En realidad ayuda a evitar errores y a ganar tiempo. Adem谩s nos permite ser justos y transparentes con quienes nos apoyan. Una abrazo de vuelta 馃
馃憤  ,
properties (23)
authoralberto0607
permlinkre-sacra97-2023622t63625141z
categoryhive-154226
json_metadata{"tags":["hive-154226","python","code","software","stemsocial","stem","ctp","proofofbrain","tribes","aliveandthriving"],"app":"ecency/3.0.32-vision","format":"markdown+html"}
created2023-06-22 11:36:27
last_update2023-06-22 11:36:27
depth2
children0
last_payout2023-06-29 11:36:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length219
author_reputation85,381,778,745,006
root_title"Script en Python - Calcular y transferir las recompensas de curaci贸n a los delegadores 馃嚜馃嚫 馃嚭馃嚫"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id124,676,139
net_rshares138,494,370
author_curate_reward""
vote details (2)
@sacra97 ·
Veo que todos te dejaron apoyo, yo estoy aprendiendo a dejar tambi茅n algo de apoyo de token 
 !PIZZA
馃憤  ,
properties (23)
authorsacra97
permlinkrwnhui
categoryhive-154226
json_metadata{"app":"hiveblog/0.1"}
created2023-06-22 10:44:42
last_update2023-06-22 10:44:42
depth1
children1
last_payout2023-06-29 10:44:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length100
author_reputation442,783,513,113,506
root_title"Script en Python - Calcular y transferir las recompensas de curaci贸n a los delegadores 馃嚜馃嚫 馃嚭馃嚫"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id124,675,148
net_rshares118,661,105
author_curate_reward""
vote details (2)
@alberto0607 ·
Muchas gracias !CTP
馃憤  ,
properties (23)
authoralberto0607
permlinkre-sacra97-2023622t63658338z
categoryhive-154226
json_metadata{"tags":["ecency"],"app":"ecency/3.0.32-vision","format":"markdown+html"}
created2023-06-22 11:37:00
last_update2023-06-22 11:37:00
depth2
children0
last_payout2023-06-29 11:37:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length19
author_reputation85,381,778,745,006
root_title"Script en Python - Calcular y transferir las recompensas de curaci贸n a los delegadores 馃嚜馃嚫 馃嚭馃嚫"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id124,676,147
net_rshares118,460,077
author_curate_reward""
vote details (2)
@yonnathang ·
@tipu curate 8
properties (22)
authoryonnathang
permlinkre-alberto0607-2023621t23552753z
categoryhive-154226
json_metadata{"tags":["hive-154226","python","code","software","stemsocial","stem","ctp","proofofbrain","tribes","aliveandthriving"],"app":"ecency/3.0.32-vision","format":"markdown+html"}
created2023-06-22 03:55:27
last_update2023-06-22 03:55:27
depth1
children2
last_payout2023-06-29 03:55:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length14
author_reputation373,434,795,535,877
root_title"Script en Python - Calcular y transferir las recompensas de curaci贸n a los delegadores 馃嚜馃嚫 馃嚭馃嚫"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id124,668,696
net_rshares0
@alberto0607 ·
Gracias @yonnathang 
馃憤  ,
properties (23)
authoralberto0607
permlinkre-yonnathang-2023621t23328648z
categoryhive-154226
json_metadata{"tags":["hive-154226","python","code","software","stemsocial","stem","ctp","proofofbrain","tribes","aliveandthriving"],"app":"ecency/3.0.32-vision","format":"markdown+html"}
created2023-06-22 04:03:30
last_update2023-06-22 04:03:30
depth2
children0
last_payout2023-06-29 04:03:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length20
author_reputation85,381,778,745,006
root_title"Script en Python - Calcular y transferir las recompensas de curaci贸n a los delegadores 馃嚜馃嚫 馃嚭馃嚫"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id124,668,802
net_rshares138,944,836
author_curate_reward""
vote details (2)
@tipu ·
<a href="https://tipu.online/hive_curator?yonnathang" target="_blank">Upvoted  &#128076;</a> (Mana: 0/75) <a href="https://peakd.com/hive/@reward.app/reward-app-quick-guide-updated" target="_blank">Liquid rewards</a>.
properties (22)
authortipu
permlinkre-re-alberto0607-2023621t23552753z-20230622t035533z
categoryhive-154226
json_metadata"{"app": "beem/0.24.26"}"
created2023-06-22 03:55:33
last_update2023-06-22 03:55:33
depth2
children0
last_payout2023-06-29 03:55:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length217
author_reputation55,900,783,339,499
root_title"Script en Python - Calcular y transferir las recompensas de curaci贸n a los delegadores 馃嚜馃嚫 馃嚭馃嚫"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id124,668,698
net_rshares0