create account

Python & Hive: How start easy by alinalazareva

View this thread on: hive.blogpeakd.comecency.com
· @alinalazareva ·
$3.14
Python & Hive: How start easy
I love Hive and Python :)
I love it when machines work instead of me ...
I don't like it when I miss something...
And of course, I absolutely love free.
So this post is about making my hive experiences free and helping me.

The first thing that prevents you from learning Python is the presence of a server on which it is installed and ready to work around the clock.
But the problem is solved with the help of [replit.com](https://replit.com/) registration in which is free and is performed in a couple of clicks

<center>
![image.png](https://images.hive.blog/DQmUAzGEwVdDeNw6qzpRk72xAuUBNzoV2zUmyUC6JQPPWMT/image.png)
</center>

Undoubtedly, those who are more attentive will be surprised to say - "What's the point if there is no **Always On Repls** mode in the free plan"

<center>
![image.png](https://images.hive.blog/DQmSw4RAYQqohsHoQ5ZzDZmxFgCK2cFm21Aprc2BoZovFcs/image.png)
</center>

And they will be right. If we close the browser, after 10-30 minutes our script will stop. But if "someone" periodically opens a link leading to the page of our web server, the scripts will continue to work indefinitely.

<center>
![image.png](https://images.hive.blog/DQmPeDczCdsJtfrimR4Ke3L14fj6jSgc5JiK6p7EgsGuyxb/image.png)
</center>

For example, the [uptimerobot.com](https://uptimerobot.com/) service will open it every five minutes for free.

<center>
**Disclamation: Don't forget, this is a public service, so be safe.**
</center>

I prefer to receive telegram notifications. (But if anyone is interested in how to make my plan on Discord, I will make a separate post) so I will describe how to make a simple telegram bot.

To do this, you need to follow a few simple steps.
Contact the bot https://t.me/BotFather

<center>
![image.png](https://images.hive.blog/DQmPkvJd954rgZBjvwKCBjk9y27em6xx6pG3FtaeigrpNuA/image.png)
</center>

Give the command to create a new bot

```
/newbot 
```

And we answer questions
Choose a name for the bot (I specified NameMyBotForTestPyHive)
And the username, which for bots must end with _bot (I specified NameMyBotForTestPyHive_bot)

<center>
![image.png](https://images.hive.blog/DQmNX8FZPZoy2reLvJUoj2upaM21gJ3VFPx4TJQUbUtLHzf/image.png)
</center>

As a result, we received a token to access the HTTP API
It makes sense that I removed it. Anyone who knows the token can control your bot.

For convenience, I created a channel in which my bot will report the events I need

<center>
![image.png](https://images.hive.blog/DQmXupptcU99Uvzjo568RMHUQ116B2AmDDHpnosCeRJ2pgV/image.png)
![image.png](https://images.hive.blog/DQmWZXcAjxuCaDT5cGfvsutWK7cicHAPLyr9EexjYubeAie/image.png)
![image.png](https://images.hive.blog/DQmNx11yjRTqrwnzZAikQx3rb3RFX1gbAM4iqqHiThEgRNx/image.png)
</center>

Public or private channel - it's your choice. It does not affect work in any way.

<center>
![image.png](https://images.hive.blog/DQmSmtRiXAbZysjAzMSycFGNggjD88Zvtxa2mqELNW8Uoko/image.png)
</center>

And immediately add our bot to the channel.

<center>
![image.png](https://images.hive.blog/DQmNct1Nw7XkPFpZG6mBvimFtLCBAN86ox4CaC7FL7Y474S/image.png)
</center>

Make him an admin

<center>
![image.png](https://images.hive.blog/DQmZUP1W5YKaXJLhgsZgREYbjW4yVKiiZrKRnawib3uTyKL/image.png)
</center>

In general, it is enough for us that the bot has the right to send messages to the channel, but I left everything by default

<center>
![image.png](https://images.hive.blog/DQmYVY2Max45B7iGXrMnBBQDRYJ44f6c7NvgpEuxSnymRhy/image.png)
</center>

We need to find out the channel id to which the bot will send messages.
To do this, we will write any message in the channel and send it to the bot https://t.me/getidsbot

<center>
![image.png](https://images.hive.blog/DQmXS8J9JdcoHsuX1pWzUSGi1Z1medU2246cwNscpynzTQC/image.png)
</center>

In response, we will receive a message with information about us, about the channel and about the message.

<center>
![image.png](https://images.hive.blog/DQmTSH9ZbvofTbviUPVd2kBMLLm7E18XCcK5mERZh9YuXpm/image.png)
</center>

**IMPORTANT The channel id starts with a minus sign and it is important**

Before working with Telegram’s API, you need to get your own API ID and hash:

1. [Login to your Telegram account](https://my.telegram.org/) with the phone number of the developer account to use.
2. Click under API Development tools.
3. A Create new application window will appear. Fill in your application details. There is no need to enter any URL, and only the first two fields (App title and Short name) can currently be changed later.
4. Click on Create application at the end. Remember that your API hash is secret and Telegram won’t let you revoke it. Don’t post it anywhere!

## Note
This API ID and hash is the one used by your application, not your phone number. You can use this API ID and hash with any phone number or even for bot accounts.
(c) [Telethon Docs](https://docs.telethon.dev/en/stable/basic/signing-in.html)

### <center>Setup phase completed</center>

<center>![image.png](https://images.hive.blog/DQmUkTpbLwrjMW5ygCBXRa2MKGx2jbt79N7ZFkvgeXuc4TS/image.png)
</center>

And select the Python template (although in some cases it is more convenient to use Python with Turtle or Python Discord Bot with pre-installed libraries)

<center>
![image.png](https://images.hive.blog/DQmVvU9Mwtspcqo7dpS5AVgYUtaKF2vspePHCbm2h1yDN6r/image.png)
</center>

Enter the name of our replit and click create

<center>
![image.png](https://images.hive.blog/DQmSmdFoPpK44xQcD61oM1cgVm3NyWnGHTY4AMsvHbv1UqK/image.png)
</center>

In the console (shell tab), install the necessary libraries.
telethon - for working with telegrams
beem - for working with the hive

```
pip install -U telethon
pip install -U beem
```
I prefer to keep the settings in a separate file, so I create a config.py file

<center>
![image.png](https://images.hive.blog/DQmbcxZNeHrLKXHCtYj6Nt1EoTZ6verEs2c81jKMXy2pBGo/image.png)
</center>

Since we use a public service and anyone can view the source code, we cannot enter our APIs directly in the code. But of course there is a way out. We will use environment variables.

<center>
![image.png](https://images.hive.blog/DQmQmEo4c3qMUdUaLdgXaY6FpzTcfCAuwHtWfEgSJtZT3bT/image.png)
![image.png](https://images.hive.blog/DQmViMgGvf2yeXiYsTUj6ey7A3BWTYmwTPndSWEKyR713Le/image.png)
</center>

In raw editor it looks something like this.

<center>
![image.png](https://images.hive.blog/DQmdYttDPKH6PXVzUpTGjJ3ZeuB6V9kC23312Re4akCnK1s/image.png)
</center>

That is, we set five environment variables

Create another background.py file in the project. Flask server will be launched in it, which will receive requests from the monitoring service and be used to maintain the script on ReplIt.

```
from flask import Flask
from flask import request
from threading import Thread
import time
import requests

app = Flask('')

@app.route('/')
def home():
  return "I'm alive"

def run():
  app.run(host='0.0.0.0', port=80)

def keep_alive():
  t = Thread(target=run)
  t.start()
```

This will be our page, which [uptimerobot.com](https://uptimerobot.com/) will check every five minutes.

In main.py we add our bot

```
# -*- coding: utf-8 -*-
from config import *

from beem import Hive
from beem.blockchain import Blockchain
from beem.nodelist import NodeList
from telethon.sync import TelegramClient
from telethon.sessions import MemorySession
from telethon.errors.rpcerrorlist import PeerFloodError, SessionPasswordNeededError

from background import keep_alive


nodelist = NodeList()
nodelist.update_nodes()
nodes = nodelist.get_hive_nodes()
hive = Hive(node=nodes)
print(hive.is_hive)
blockchain = Blockchain()
start_num = blockchain.get_current_block_num()
// checklist - A list of words that we are looking for in post titles (case is not important in check_pattern_func, we still translate it to lower)
checklist = {'Giveaway','giveaway','GIVEAWAY'}
// We store the session in memory (by default, a file is created, which is not suitable for us due to the publicity of the service)
bot = TelegramClient(MemorySession(), api_id, api_hash)
bot.start(bot_token=bot_token)

// Function to send a message to a channel
def send_message_func(text):
  bot.send_message(entity=my_chat_id, parse_mode='html', link_preview=False, message=text)

// Function to search for the occurrence of a word in a string
def check_pattern_func(text,key_words):
    words = text.lower().split()
    for word in words:
        for key in key_words:
            if key in word:
                return True
    return False
  
send_message_func('Start from ' + str(start_num) + ' block' )
// Starting the Flask Server
keep_alive()
// Listen to the blockchain. When we hear a comment appear
for op in blockchain.stream(opNames=['comment']):
// Check if it's a reply to someone's comment or if it's a new post
    if op['parent_author'] == '':
// If this is a new post, check if the word from the checklist is in the title
        if check_pattern_func(op['title'],checklist):
// Form a link to the post
            mess = hive_front+"@"+op['author']+"/"+op['permlink']
// Send it to the channel
            send_message_func(mess)
```

### Running our script

<center>
![image.png](https://images.hive.blog/DQmTsH4muSZsgeJWkyVsSpzbguPGejRH8XPigfMk5NFKnLT/image.png)
</center>

Copy the link to our server to add it to the monitoring service [uptimerobot.com](https://uptimerobot.com/)

<center>
![image.png](https://images.hive.blog/DQmV8MNjkuGdvQH5yLCgXWrEdzGN1QtTEKM4vyBJFbxLsvk/image.png)
</center>

That's all done!!! We will not miss any post containing the word Giveaway in the title.
In reality, we have over a hundred people in our hive doing a Giveaway. Therefore, you can modify the script a little.
For example add another list.
checklistgivers = {'aftersound','apprentice001','rtonline'}
Where to list those in whose Giveaway you want to participate. After that, in the bot, replace the lines

```
// If this is a new post, check if the word from the checklist is in the title
        if check_pattern_func(op['title'],checklist):
// Form a link to the post
            mess = hive_front+"@"+op['author']+"/"+op['permlink']
// Send it to the channel
            send_message_func(mess)
```

replaced by

```
// If this is a new post, check if the word from the checklist is in the title
        if check_pattern_func(op['title'],checklist):
//  If a new post was made by an author from the checklistgivers list
        	if check_pattern_func(op['author'],checklistgivers):
// Form a link to the post
            	mess = hive_front+"@"+op['author']+"/"+op['permlink']
// Send it to the channel
            	send_message_func(mess)
```

Then we will receive notifications only about them.

There are an incredible number of options for why to listen to the entire blockchain
- Listen to receive notifications in case of transfer of coins from YOUR accounts (as from a bank about suspicious transfers)
- Listen for notifications of significant token price changes
- Listen for notifications of transfers of significant amounts of tokens
- Organize auto-staking (if you put the key in the environment variables, you can use the script [Splinterlands SPS Auto-Staker v.1.2](https://peakd.com/hive-163521/@slobberchops/python-libraries-splinterlands-sps-auto-staker-v12) by @slobberchops )

Posted with [STEMGeeks](https://stemgeeks.net)
πŸ‘  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 216 others
πŸ‘Ž  
properties (23)
authoralinalazareva
permlinkpython-and-hive-how-start-easy
categoryhive-163521
json_metadata{"tags":["python","stemgeeks","leofinance","ctp","listnerds","waivio","aliveandthriving","pob","hive","stem"],"users":["slobberchops"],"image":["https://images.hive.blog/DQmUAzGEwVdDeNw6qzpRk72xAuUBNzoV2zUmyUC6JQPPWMT/image.png","https://images.hive.blog/DQmSw4RAYQqohsHoQ5ZzDZmxFgCK2cFm21Aprc2BoZovFcs/image.png","https://images.hive.blog/DQmPeDczCdsJtfrimR4Ke3L14fj6jSgc5JiK6p7EgsGuyxb/image.png","https://images.hive.blog/DQmPkvJd954rgZBjvwKCBjk9y27em6xx6pG3FtaeigrpNuA/image.png","https://images.hive.blog/DQmNX8FZPZoy2reLvJUoj2upaM21gJ3VFPx4TJQUbUtLHzf/image.png","https://images.hive.blog/DQmXupptcU99Uvzjo568RMHUQ116B2AmDDHpnosCeRJ2pgV/image.png","https://images.hive.blog/DQmWZXcAjxuCaDT5cGfvsutWK7cicHAPLyr9EexjYubeAie/image.png","https://images.hive.blog/DQmNx11yjRTqrwnzZAikQx3rb3RFX1gbAM4iqqHiThEgRNx/image.png","https://images.hive.blog/DQmSmtRiXAbZysjAzMSycFGNggjD88Zvtxa2mqELNW8Uoko/image.png","https://images.hive.blog/DQmNct1Nw7XkPFpZG6mBvimFtLCBAN86ox4CaC7FL7Y474S/image.png","https://images.hive.blog/DQmZUP1W5YKaXJLhgsZgREYbjW4yVKiiZrKRnawib3uTyKL/image.png","https://images.hive.blog/DQmYVY2Max45B7iGXrMnBBQDRYJ44f6c7NvgpEuxSnymRhy/image.png","https://images.hive.blog/DQmXS8J9JdcoHsuX1pWzUSGi1Z1medU2246cwNscpynzTQC/image.png","https://images.hive.blog/DQmTSH9ZbvofTbviUPVd2kBMLLm7E18XCcK5mERZh9YuXpm/image.png","https://images.hive.blog/DQmUkTpbLwrjMW5ygCBXRa2MKGx2jbt79N7ZFkvgeXuc4TS/image.png","https://images.hive.blog/DQmVvU9Mwtspcqo7dpS5AVgYUtaKF2vspePHCbm2h1yDN6r/image.png","https://images.hive.blog/DQmSmdFoPpK44xQcD61oM1cgVm3NyWnGHTY4AMsvHbv1UqK/image.png","https://images.hive.blog/DQmbcxZNeHrLKXHCtYj6Nt1EoTZ6verEs2c81jKMXy2pBGo/image.png","https://images.hive.blog/DQmQmEo4c3qMUdUaLdgXaY6FpzTcfCAuwHtWfEgSJtZT3bT/image.png","https://images.hive.blog/DQmViMgGvf2yeXiYsTUj6ey7A3BWTYmwTPndSWEKyR713Le/image.png","https://images.hive.blog/DQmdYttDPKH6PXVzUpTGjJ3ZeuB6V9kC23312Re4akCnK1s/image.png","https://images.hive.blog/DQmTsH4muSZsgeJWkyVsSpzbguPGejRH8XPigfMk5NFKnLT/image.png","https://images.hive.blog/DQmV8MNjkuGdvQH5yLCgXWrEdzGN1QtTEKM4vyBJFbxLsvk/image.png"],"links":["https://replit.com/"],"app":"stemgeeks/0.1","format":"markdown","canonical_url":"https://stemgeeks.net/@alinalazareva/python-and-hive-how-start-easy"}
created2023-01-11 08:19:57
last_update2023-01-11 08:19:57
depth0
children14
last_payout2023-01-18 08:19:57
cashout_time1969-12-31 23:59:59
total_payout_value1.592 HBD
curator_payout_value1.548 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length11,288
author_reputation78,064,967,577,801
root_title"Python & Hive: How start easy"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id119,786,637
net_rshares6,454,803,404,985
author_curate_reward""
vote details (281)
@adcreatordesign ·
Hello @alinalazareva nice to meet you.
Barb 😊
!BBH
!CTP
!ALIVE
πŸ‘  
properties (23)
authoradcreatordesign
permlinkre-alinalazareva-rocfuv
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2023.1.1"}
created2023-01-11 22:59:18
last_update2023-01-11 22:59:18
depth1
children1
last_payout2023-01-18 22:59: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_length62
author_reputation23,905,823,738,724
root_title"Python & Hive: How start easy"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id119,805,200
net_rshares2,827,056,800
author_curate_reward""
vote details (1)
@youarealive ·
@adcreatordesign, sorry! You need more $ALIVE to use this command.

The minimum requirement is 1000.0 ALIVE staked.

More $ALIVE is available from [Hive-Engine](https://hive-engine.com/?p=market&t=ALIVE) or [Tribaldex](https://tribaldex.com/trade/ALIVE)
properties (22)
authoryouarealive
permlinkre-re-alinalazareva-rocfuv-20230111t225936z
categoryhive-163521
json_metadata"{"app": "beem/0.24.26"}"
created2023-01-11 22:59:36
last_update2023-01-11 22:59:36
depth2
children0
last_payout2023-01-18 22:59:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length253
author_reputation11,319,558,234,740
root_title"Python & Hive: How start easy"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id119,805,206
net_rshares0
@contagio ·
You have done an impressive job!

I will try to make time to test this method.

Thank you very much, this is very interesting!

!BBH
πŸ‘  , , , ,
properties (23)
authorcontagio
permlinkre-alinalazareva-roc51b
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2023.1.1"}
created2023-01-11 19:05:36
last_update2023-01-11 19:05:36
depth1
children1
last_payout2023-01-18 19:05:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length132
author_reputation18,328,394,939,930
root_title"Python & Hive: How start easy"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id119,799,535
net_rshares3,559,156,971
author_curate_reward""
vote details (5)
@bbhbot ·
<center><p>@alinalazareva! <b>Your Content Is Awesome</b> so I just sent 1 <b>$BBH</b> (Bitcoin Backed Hive) to your account on behalf of @contagio. <sub>(4/5)</sub></p>
<p><img src="https://i.ibb.co/wpjTdpp/bbh.png"></p></center>
properties (22)
authorbbhbot
permlinkre-re-alinalazareva-roc51b-20230111t190553z
categoryhive-163521
json_metadata"{"app": "beem/0.24.26"}"
created2023-01-11 19:05:54
last_update2023-01-11 19:05:54
depth2
children0
last_payout2023-01-18 19:05:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length230
author_reputation2,740,199,634,396
root_title"Python & Hive: How start easy"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id119,799,542
net_rshares0
@curation-cartel ·
![1UP-PIZZA.png](https://files.peakd.com/file/peakd-hive/curation-cartel/23xediR4hotaNsS5pUJrmYVg3YGeTLpui41uCij2jhUDZ4uFT84zoGJf8a8VnfELXLJgt.png) |  <div class="phishy"><u><h4>You have received a __1UP__ from @gwajnberg!</h4></u></div> The @oneup-cartel will soon upvote you with:<hr> __@leo-curator, @ctp-curator, @stem-curator, @vyb-curator, @pob-curator__ <hr>_And they will bring !PIZZA πŸ•._
-|-

<sup>[Learn more](https://peakd.com/hive-102223/@flauwy/the-curation-cartel-1up-trigger-smart-voting-mana-and-high-delegation-returns-for-14-different-tribes) about our delegation service to earn daily rewards. Join the Cartel on [Discord](https://discord.gg/mvtAneE3Ca).</sup>
properties (22)
authorcuration-cartel
permlinkre-python-and-hive-how-start-easy-20230111t230959z
categoryhive-163521
json_metadata"{"app": "beem/0.24.26"}"
created2023-01-11 23:10:00
last_update2023-01-11 23:10:00
depth1
children0
last_payout2023-01-18 23:10: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_length679
author_reputation1,123,882,653,763
root_title"Python & Hive: How start easy"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id119,805,412
net_rshares0
@gwajnberg ·
That is an amazing job
!1UP
πŸ‘  , , , ,
properties (23)
authorgwajnberg
permlinkrocg8u
categoryhive-163521
json_metadata{"tags":["stem"],"app":"stemgeeks/0.1","canonical_url":"https://stemgeeks.net/@gwajnberg/rocg8u"}
created2023-01-11 23:07:42
last_update2023-01-11 23:07:42
depth1
children0
last_payout2023-01-18 23:07: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_length27
author_reputation378,848,893,706,116
root_title"Python & Hive: How start easy"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id119,805,363
net_rshares3,384,792,995
author_curate_reward""
vote details (5)
@hivebuzz ·
Dear @alinalazareva,<br>Our previous proposal expired end of December and the Hivebuzz project is not funded anymore. May we ask you to review and support our new proposal (https://peakd.com/me/proposals/248)?<br>Thank you for your help!
properties (22)
authorhivebuzz
permlinktxt-alinalazareva-20230113t074303
categoryhive-163521
json_metadata{"image":["http://hivebuzz.me/notify.t6.png"]}
created2023-01-13 07:43:03
last_update2023-01-13 07:43:03
depth1
children0
last_payout2023-01-20 07:43: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_length237
author_reputation369,414,340,172,744
root_title"Python & Hive: How start easy"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id119,840,193
net_rshares0
@lisamgentile1961 ·
Thanks for sharing all that work you did. One of those posts that I will keep for future reference.Β 

Β  Β !ALIVE

Β  !CTP

  

Posted via [![](https://veews.io/images/icon_xsmall.png) Veews](https://veews.io)
properties (22)
authorlisamgentile1961
permlinkre-alinalazareva-n8un3svrv7
categoryhive-163521
json_metadata{"app":"veews/0.1","format":"markdown"}
created2023-01-17 12:53:54
last_update2023-01-17 12:53:54
depth1
children2
last_payout2023-01-24 12:53:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length206
author_reputation123,968,441,883,375
root_title"Python & Hive: How start easy"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id119,951,133
net_rshares0
@youarealive ·
<center><p>@alinalazareva! <b>You Are Alive</b> so I just staked 0.1 <b>$ALIVE</b> to your account on behalf of @lisamgentile1961. <sub>(3/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. <br /> <img src="https://i.imgur.com/p2WXJLn.png"></p></center>
πŸ‘  
properties (23)
authoryouarealive
permlinkre-re-alinalazareva-n8un3svrv7-20230117t125417z
categoryhive-163521
json_metadata"{"app": "beem/0.24.26"}"
created2023-01-17 12:54:18
last_update2023-01-17 12:54:18
depth2
children1
last_payout2023-01-24 12:54: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_length412
author_reputation11,319,558,234,740
root_title"Python & Hive: How start easy"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id119,951,140
net_rshares1,467,192,066
author_curate_reward""
vote details (1)
@lisamgentile1961 ·
Good Morning and Thank you, @youarealive! Enjoy your day.πŸ˜€<div><a href="https://engage.hivechain.app">![](https://i.imgur.com/XsrNmcl.png)</a></div>
πŸ‘  
properties (23)
authorlisamgentile1961
permlinkre-1673963832325
categoryhive-163521
json_metadata{"app":"engage"}
created2023-01-17 13:57:15
last_update2023-01-17 13:57:15
depth3
children0
last_payout2023-01-24 13:57: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_length148
author_reputation123,968,441,883,375
root_title"Python & Hive: How start easy"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id119,952,496
net_rshares30,289,428,260
author_curate_reward""
vote details (1)
@pizzabot ·
<center>πŸ• PIZZA !


I gifted <strong>$PIZZA</strong> slices here:
@curation-cartel<sub>(18/20)</sub> tipped @alinalazareva (x1)


<sub>Send $PIZZA tips in <a href="https://discord.gg/hivepizza">Discord</a> via tip.cc!</sub></center>
properties (22)
authorpizzabot
permlinkre-python-and-hive-how-start-easy-20230111t231057z
categoryhive-163521
json_metadata"{"app": "beem/0.24.19"}"
created2023-01-11 23:10:57
last_update2023-01-11 23:10:57
depth1
children0
last_payout2023-01-18 23:10: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_length232
author_reputation7,607,417,747,627
root_title"Python & Hive: How start easy"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id119,805,436
net_rshares0
@stemsocial ·
re-alinalazareva-python-and-hive-how-start-easy-20230111t155459296z
<div class='text-justify'> <div class='pull-left'>
 <img src='https://stem.openhive.network/images/stemsocialsupport7.png'> </div>

Thanks for your contribution to the <a href='/trending/hive-196387'>STEMsocial community</a>. Feel free to join us on <a href='https://discord.gg/9c7pKVD'>discord</a> to get to know the rest of us!

Please consider delegating to the @stemsocial account (85% of the curation rewards are returned).

You may also include @stemsocial as a beneficiary of the rewards of this post to get a stronger support.&nbsp;<br />&nbsp;<br />
</div>
πŸ‘  
properties (23)
authorstemsocial
permlinkre-alinalazareva-python-and-hive-how-start-easy-20230111t155459296z
categoryhive-163521
json_metadata{"app":"STEMsocial"}
created2023-01-11 15:55:00
last_update2023-01-11 15:55:00
depth1
children0
last_payout2023-01-18 15:55: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_length565
author_reputation22,927,741,259,786
root_title"Python & Hive: How start easy"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id119,795,146
net_rshares2,838,762,235
author_curate_reward""
vote details (1)
@theroad2freedom ·
I've been wanting to set up a way to auto-stake tokens in my accounts. This could very well be the knowledge I was looking for. Thank you very much. I'll have to find some time to get it all configured and see if I can make it work the way I want.
πŸ‘  , , , ,
properties (23)
authortheroad2freedom
permlinkre-alinalazareva-rohf75
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2023.1.1"}
created2023-01-14 15:33:06
last_update2023-01-14 15:33:06
depth1
children1
last_payout2023-01-21 15:33:06
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_length247
author_reputation4,632,155,216,323
root_title"Python & Hive: How start easy"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id119,876,245
net_rshares3,498,686,520
author_curate_reward""
vote details (5)
@alinalazareva ·
It's not as difficult as it seems.
To do this, you need to at least fill up
πŸ‘  , , ,
properties (23)
authoralinalazareva
permlinkre-theroad2freedom-rohfek
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2023.1.1"}
created2023-01-14 15:37:30
last_update2023-01-14 15:37:30
depth2
children0
last_payout2023-01-21 15:37: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_length75
author_reputation78,064,967,577,801
root_title"Python & Hive: How start easy"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id119,876,334
net_rshares616,079,926
author_curate_reward""
vote details (4)