create account

Hive Comments: I Built A Web App Using HiveSQL And Streamlit - All In Python by geekgirl

View this thread on: hive.blogpeakd.comecency.com
· @geekgirl · (edited)
$62.83
Hive Comments: I Built A Web App Using HiveSQL And Streamlit - All In Python
<center>![hivesqlapp.jpeg](https://images.hive.blog/DQmSuZsnR2abnJBz41JwAnfczJCmHqAGDiWmTzkeiBFrjH1/hivesqlapp.jpeg)</center>

**UPDATE:** ***I have updated the App so that you don't need your own credentials to use it. Please ignore any reference to getting or using your own HiveSQL credentials in the post. Thank You.***

**UPDATE-2:** ***I made the github repo to the code private because it was leaking the private credentials. I am just learning how these things work. If you need the code I will be happy to share. To make the github repo public I need to learn how to secure sensitive data first.***

**UPDATE-3:** https://leofinance.io/@geekgirl/update-on-my-experimental-app-hive-librarian

If you followed my previous posts, you probably already know I have been experimenting with HiveSQL and Streamlit in python. Today I decided to attempt to build something more useful and ended up deploying my very first simple App. Let's call it Hive Comments. Because that's all it does, it retrieves the historical comments made by one user to another.

Have you ever had a situation when you tried to remember an information that was shared in the comments sometime in the past? Or perhaps you were/are interested in seeing all the comments or conversations you had with a specific user? Or maybe even a conversations other users had with each other. If so, you may find it interesting to browse through the history of Hive comments among users.

Before I bore you with all the details how to build an App using Streamlit and HiveSQL, feel free to go the following link and try it yourself. I would appreciate any and all feedbacks.

https://hive-user-responses.herokuapp.com

To connect to the HiveSQL database login credentials are required. Since I wasn't sure about the terms of service and because HiveSQL is free for all users I chose to let Hive users use their of login credentials for HiveSQL. If you do not have one, it is easy to get. Simple transfer 0.01 HBD to @hivesql, and it will automatically send a transfer to your account with login and password information. If you don't have 0.01 HBD, I will be happy to send you. Just let me know in the comments.

Once you have the login/password for HiveSQL, just enter your username and password to the top two fields. Next two input fields ask for user-1 and user-1. After you click the ***Get Responses*** button, the results will output all the comments made by user-1 to user-2. For context, you can click the ***(source)*** and it will take to that comment on hive.blog. 

<center>**Writing the Code and Deploying to Heroku**</center>

The App itself is not complicated. It only has one simple task as described above. I use Streamlit because it makes making web apps easy and fast. It also makes deploying apps easy as well. I chose to deploy it on Heroku.

Initially I had issues deploying it, because I used `pyodbc` module which requires specific Microsoft sql driver. Even with `pyodbc` the App worked fine on the local machine. But problem happened when I tried to deploy it on Heroku.

Then I switched to a different module - `pymssql` and everything worked fine locally and was able to deploy without any issues. It works almost the same way as `pyodbc`.

The code itself contains lines to connect to HiveSQL using `pymssql` which takes an SQL command and returns the results. I store the SQL query in a SQLCommand variable.

Other lines of code use Streamlit functions to output labels, inputs, divs, p, and text on a webpage. Most of them are self-explanatory. To get started with Streamlit, feel free to read my previous post on the topic.

Then, there is also long lines of code that has to do with styling and CSS. With basic CSS knowledge and using Chrome's inspector we can identify and style all the elements displayed on the webpage.

Before deploying the App to Heroku we will need to place all files used and needed to github. First, we need the python files used. In this case, I only had one python file for the App. I also use an image, so I need to include that as well.

After that we need to create three more files with specific information in them. The file names will be:

* `Procfile`
* `requirements.text`
* `setup.sh`

The `Procfile` will have one line as following:

`web: sh setup.sh && streamlit run hive_responses-app.py`

Replace the .py filename with a filename of your App.

Inside the `requirement.txt` we need to place all the modules/dependencies we used in our python script with their version numbers. Like this:

`streamlit==0.74.1`
`pymssql==2.1.5`
`Pillow==8.1.0`

We can get that information with typing the following in the command prompt or terminal

`pip freeze` or in my case `pip3.8 freeze`

Last file `setup.sh` will contain the following.
```
mkdir -p ~/.streamlit/

echo "\
[server]\n\
port = $PORT\n\
enableCORS = false\n\
headless = true\n\
\n\
" > ~/.streamlit/config.toml
```

We don't need to make any changes in this file.

Here is the link to my github repository for this App:

https://github.com/librarian-hive/hive-comments

Now that everything is ready in github, we go to Heroku. In Heroku, we need to click **New** --> **Create new app**.

First we need to give our new app a name. After that, under **Deploy** tab and **Deployment method** we need to choose **Github**. It will ask for repository name, searches for it and connects to the repository.

Lastly, we click the **Deploy Branch** at the bottom of the page. It will take few minutes to configure and install everything properly. If everything goes well, at the end it will show a **View** link to the App. That's it.

Feel free to visit my super boring first app.

https://hive-user-responses.herokuapp.com


Posted Using [LeoFinance <sup>Beta</sup>](https://leofinance.io/@geekgirl/hive-comments-i-built-a-web-app-using-hivesql-and-streamlit-all-in-python)
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 326 others
properties (23)
authorgeekgirl
permlinkhive-comments-i-built-a-web-app-using-hivesql-and-streamlit-all-in-python
categoryhive-167922
json_metadata{"app":"leofinance/0.2","format":"markdown","tags":["hive-167922","hive","hivesql","python","coding","dev","tutorial","stem","neoxian","ctptalk","palnet","leofinance"],"canonical_url":"https://leofinance.io/@geekgirl/hive-comments-i-built-a-web-app-using-hivesql-and-streamlit-all-in-python","links":["https://leofinance.io/@geekgirl/update-on-my-experimental-app-hive-librarian","https://hive-user-responses.herokuapp.com","https://github.com/librarian-hive/hive-comments","https://leofinance.io/@geekgirl/hive-comments-i-built-a-web-app-using-hivesql-and-streamlit-all-in-python"],"image":["https://images.hive.blog/DQmSuZsnR2abnJBz41JwAnfczJCmHqAGDiWmTzkeiBFrjH1/hivesqlapp.jpeg"]}
created2021-01-29 05:46:24
last_update2021-01-30 07:00:15
depth0
children63
last_payout2021-02-05 05:46:24
cashout_time1969-12-31 23:59:59
total_payout_value33.116 HBD
curator_payout_value29.710 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length5,854
author_reputation1,586,488,611,824,452
root_title"Hive Comments: I Built A Web App Using HiveSQL And Streamlit - All In Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,607,248
net_rshares238,017,871,999,087
author_curate_reward""
vote details (390)
@aliento.leo · (edited)
$0.20
I tried it a little, and it¿s great. This way, we can look into other people's conversation, lol! I remember there was a set back on STEEM where you could see which was the account that supported you the most (in votes). It shut down because, at that time, the SQL was not free. I'll keep using your app and let you know if I have any feedback. 

-@eddiespino.

Posted Using [LeoFinance <sup>Beta</sup>](https://leofinance.io/@aliento.leo/re-geekgirl-sgfcl)
👍  
properties (23)
authoraliento.leo
permlinkre-geekgirl-sgfcl
categoryhive-167922
json_metadata{"app":"leofinance/0.2","format":"markdown","tags":["hive-167922","leofinance"],"canonical_url":"https://leofinance.io/@aliento.leo/re-geekgirl-sgfcl","links":["https://leofinance.io/@aliento.leo/re-geekgirl-sgfcl"]}
created2021-01-29 18:22:06
last_update2021-01-29 18:22:36
depth1
children1
last_payout2021-02-05 18:22:06
cashout_time1969-12-31 23:59:59
total_payout_value0.100 HBD
curator_payout_value0.101 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length457
author_reputation997,642,795,512
root_title"Hive Comments: I Built A Web App Using HiveSQL And Streamlit - All In Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,615,309
net_rshares1,240,745,040,714
author_curate_reward""
vote details (1)
@geekgirl ·
I remember there was that app. I can try to add those features as I learn more. Thanks.

Posted Using [LeoFinance <sup>Beta</sup>](https://leofinance.io/@geekgirl/re-aliento-leo-byxw1)
properties (22)
authorgeekgirl
permlinkre-aliento-leo-byxw1
categoryhive-167922
json_metadata{"app":"leofinance/0.2","format":"markdown","tags":["hive-167922","leofinance"],"canonical_url":"https://leofinance.io/@geekgirl/re-aliento-leo-byxw1"}
created2021-01-29 20:09:48
last_update2021-01-29 20:09:48
depth2
children0
last_payout2021-02-05 20:09:48
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_length184
author_reputation1,586,488,611,824,452
root_title"Hive Comments: I Built A Web App Using HiveSQL And Streamlit - All In Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,616,808
net_rshares0
@amr008 ·
$0.21
Great post :) Tried it and works smoothly . Keep up the good work , bring out more applications like above . It helps . 

!WINE

Posted Using [LeoFinance <sup>Beta</sup>](https://leofinance.io/@amr008/re-geekgirl-5z4fgt)
👍  
properties (23)
authoramr008
permlinkre-geekgirl-5z4fgt
categoryhive-167922
json_metadata{"app":"leofinance/0.2","format":"markdown","tags":["hive-167922","leofinance"],"canonical_url":"https://leofinance.io/@amr008/re-geekgirl-5z4fgt"}
created2021-01-29 06:39:51
last_update2021-01-29 06:39:51
depth1
children5
last_payout2021-02-05 06:39:51
cashout_time1969-12-31 23:59:59
total_payout_value0.102 HBD
curator_payout_value0.103 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length220
author_reputation61,403,929,105,681
root_title"Hive Comments: I Built A Web App Using HiveSQL And Streamlit - All In Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,607,681
net_rshares1,283,359,066,674
author_curate_reward""
vote details (1)
@geekgirl ·
Thanks for your help!
properties (22)
authorgeekgirl
permlinkqnoog0
categoryhive-167922
json_metadata{"app":"hiveblog/0.1"}
created2021-01-29 06:52:48
last_update2021-01-29 06:52:48
depth2
children3
last_payout2021-02-05 06:52:48
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_length21
author_reputation1,586,488,611,824,452
root_title"Hive Comments: I Built A Web App Using HiveSQL And Streamlit - All In Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,607,781
net_rshares0
@amr008 · (edited)
$0.09
Place don't mention. All credits to you. Great job. 

I should try out streamlit. 
I have couple of ideas on my mind. 

What's heroku actually? I am not sure . 
Posted Using [LeoFinance <sup>Beta</sup>](https://leofinance.io/@amr008/re-geekgirl-5twvdn)
👍  
properties (23)
authoramr008
permlinkre-geekgirl-5twvdn
categoryhive-167922
json_metadata{"app":"leofinance/0.2","format":"markdown","tags":["hive-167922","leofinance"],"canonical_url":"https://leofinance.io/@amr008/re-geekgirl-5twvdn","links":["https://leofinance.io/@amr008/re-geekgirl-5twvdn"]}
created2021-01-29 07:22:06
last_update2021-01-29 07:24:12
depth3
children2
last_payout2021-02-05 07:22:06
cashout_time1969-12-31 23:59:59
total_payout_value0.044 HBD
curator_payout_value0.044 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length252
author_reputation61,403,929,105,681
root_title"Hive Comments: I Built A Web App Using HiveSQL And Streamlit - All In Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,608,034
net_rshares595,505,189,655
author_curate_reward""
vote details (1)
@wine.bot ·
<center>
<sup>Cheers, @amr008 You Successfully Shared <b>0.100 WINE</b> With @geekgirl.</sup>
<sup>You Earned <b>0.100 WINE</b> As Curation Reward.</sup>
<sup>You Utilized <b>2/3</b> Successful Calls.</sup>

<img src="https://files.peakd.com/file/peakd-hive/theguruasia/0Mg2vSTo-Wine3Greeting.png" alt="wine-greeting">

---
<sup>[WINE Current Market Price](https://hive-engine.com/?p=market&t=WINE) : <b>1.100 HIVE</b></sup>
</center>
properties (22)
authorwine.bot
permlink20210129t064013013z
categoryhive-167922
json_metadata{"tags":["wine","wineyard"],"app":"tan-bot/1.1","format":"markdown"}
created2021-01-29 06:40:12
last_update2021-01-29 06:40:12
depth2
children0
last_payout2021-02-05 06:40: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_length435
author_reputation8,093,187,024,337
root_title"Hive Comments: I Built A Web App Using HiveSQL And Streamlit - All In Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,607,684
net_rshares0
@arcange ·
$0.19
To be honest, I would prefer that you use your own HiveSQL credentials in your app rather than having to manage hundreds of one-time-use new credentials.
👍  ,
properties (23)
authorarcange
permlinkre-geekgirl-qnopll
categoryhive-167922
json_metadata{"tags":["hive-167922"],"app":"peakd/2021.01.3"}
created2021-01-29 07:17:45
last_update2021-01-29 07:17:45
depth1
children10
last_payout2021-02-05 07:17:45
cashout_time1969-12-31 23:59:59
total_payout_value0.096 HBD
curator_payout_value0.097 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length153
author_reputation1,146,606,601,469,178
root_title"Hive Comments: I Built A Web App Using HiveSQL And Streamlit - All In Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,608,002
net_rshares1,218,741,236,149
author_curate_reward""
vote details (2)
@amr008 ·
There isn't any security issue right? In letting others use my credentials? 

Posted Using [LeoFinance <sup>Beta</sup>](https://leofinance.io/@amr008/re-arcange-5kjxlu)
properties (22)
authoramr008
permlinkre-arcange-5kjxlu
categoryhive-167922
json_metadata{"app":"leofinance/0.2","format":"markdown","tags":["hive-167922","leofinance"],"canonical_url":"https://leofinance.io/@amr008/re-arcange-5kjxlu"}
created2021-01-29 07:23:36
last_update2021-01-29 07:23:36
depth2
children4
last_payout2021-02-05 07:23: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_length168
author_reputation61,403,929,105,681
root_title"Hive Comments: I Built A Web App Using HiveSQL And Streamlit - All In Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,608,041
net_rshares0
@arcange ·
You should **never** share your credentials!
Shall someone else uses them and does something harmful to HiveSQL, they could be permanently revoked and lock you out.
properties (22)
authorarcange
permlinkre-amr008-qnp56j
categoryhive-167922
json_metadata{"tags":["hive-167922"],"app":"peakd/2021.01.3"}
created2021-01-29 12:54:18
last_update2021-01-29 12:54:18
depth3
children3
last_payout2021-02-05 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_length164
author_reputation1,146,606,601,469,178
root_title"Hive Comments: I Built A Web App Using HiveSQL And Streamlit - All In Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,611,446
net_rshares0
@geekgirl ·
$0.03
Awesome. I will try to update to that then. Thank You @arcange.

Posted Using [LeoFinance <sup>Beta</sup>](https://leofinance.io/@geekgirl/re-arcange-2kkwjh)
👍  
properties (23)
authorgeekgirl
permlinkre-arcange-2kkwjh
categoryhive-167922
json_metadata{"app":"leofinance/0.2","format":"markdown","tags":["hive-167922","leofinance"],"canonical_url":"https://leofinance.io/@geekgirl/re-arcange-2kkwjh"}
created2021-01-29 07:40:27
last_update2021-01-29 07:40:27
depth2
children4
last_payout2021-02-05 07:40:27
cashout_time1969-12-31 23:59:59
total_payout_value0.014 HBD
curator_payout_value0.015 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length157
author_reputation1,586,488,611,824,452
root_title"Hive Comments: I Built A Web App Using HiveSQL And Streamlit - All In Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,608,192
net_rshares212,243,698,164
author_curate_reward""
vote details (1)
@arcange ·
$0.22
Thank you.

> I made the github repo to the code private because it was leaking the private credentials.

The solution to keeping your repo public is:
- put your credential in a separate .php file (let's call it `credentials.php`) that you import into your main app code
- Add a `credential.example.php` with dummy credentials to your project and tell users to update it with their own credentials and rename it.
- add `credentials.php` to your .gitignore file to avoid it being pushed to your repo when you synch your project.
👍  ,
properties (23)
authorarcange
permlinkre-geekgirl-qnp4xg
categoryhive-167922
json_metadata{"tags":["hive-167922"],"app":"peakd/2021.01.3"}
created2021-01-29 12:48:54
last_update2021-01-29 12:48:54
depth3
children3
last_payout2021-02-05 12:48:54
cashout_time1969-12-31 23:59:59
total_payout_value0.112 HBD
curator_payout_value0.112 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length527
author_reputation1,146,606,601,469,178
root_title"Hive Comments: I Built A Web App Using HiveSQL And Streamlit - All In Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,611,392
net_rshares1,365,699,067,772
author_curate_reward""
vote details (2)
@beco132 ·
$0.09
For the sensitive data have you tried heroku config vars (https://devcenter.heroku.com/articles/config-vars)
I'm having similar problems and I wonder if that's a good solution
👍  
properties (23)
authorbeco132
permlinkre-geekgirl-qnpsam
categoryhive-167922
json_metadata{"tags":["hive-167922"],"app":"peakd/2021.01.3"}
created2021-01-29 21:13:36
last_update2021-01-29 21:13:36
depth1
children1
last_payout2021-02-05 21:13:36
cashout_time1969-12-31 23:59:59
total_payout_value0.046 HBD
curator_payout_value0.047 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length175
author_reputation13,334,818,383,892
root_title"Hive Comments: I Built A Web App Using HiveSQL And Streamlit - All In Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,617,533
net_rshares608,522,768,511
author_curate_reward""
vote details (1)
@geekgirl ·
Thank you.  I will read that.
properties (22)
authorgeekgirl
permlinkqnq4mb
categoryhive-167922
json_metadata{"app":"hiveblog/0.1"}
created2021-01-30 01:39:48
last_update2021-01-30 01:39:48
depth2
children0
last_payout2021-02-06 01:39:48
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_length29
author_reputation1,586,488,611,824,452
root_title"Hive Comments: I Built A Web App Using HiveSQL And Streamlit - All In Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,620,443
net_rshares0
@bil.prag · (edited)
$0.09
this could be useful. bookmarked.

also simple and it works.

ned commented on dan posts only 9 times. wow :D
👍  
properties (23)
authorbil.prag
permlinkre-geekgirl-qnpejo
categoryhive-167922
json_metadata{"tags":["hive-167922"],"app":"peakd/2021.01.3"}
created2021-01-29 16:16:36
last_update2021-01-29 16:18:54
depth1
children1
last_payout2021-02-05 16:16:36
cashout_time1969-12-31 23:59:59
total_payout_value0.046 HBD
curator_payout_value0.046 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length109
author_reputation457,886,032,622,899
root_title"Hive Comments: I Built A Web App Using HiveSQL And Streamlit - All In Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,613,858
net_rshares596,622,323,051
author_curate_reward""
vote details (1)
@geekgirl ·
lol yea. that last one was funny and that was the one that made Dan to completely stop using Steem.

Posted Using [LeoFinance <sup>Beta</sup>](https://leofinance.io/@geekgirl/re-bil-prag-2ohquw)
properties (22)
authorgeekgirl
permlinkre-bil-prag-2ohquw
categoryhive-167922
json_metadata{"app":"leofinance/0.2","format":"markdown","tags":["hive-167922","leofinance"],"canonical_url":"https://leofinance.io/@geekgirl/re-bil-prag-2ohquw"}
created2021-01-29 20:07:27
last_update2021-01-29 20:07:27
depth2
children0
last_payout2021-02-05 20:07: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_length194
author_reputation1,586,488,611,824,452
root_title"Hive Comments: I Built A Web App Using HiveSQL And Streamlit - All In Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,616,783
net_rshares0
@chekohler ·
$0.09
Thats very cool would be fun to see who you comment with most out of all your followers and the pecentage of it
👍  ,
properties (23)
authorchekohler
permlinkre-geekgirl-qnosfg
categoryhive-167922
json_metadata{"tags":["hive-167922"],"app":"peakd/2021.01.3"}
created2021-01-29 08:18:51
last_update2021-01-29 08:18:51
depth1
children1
last_payout2021-02-05 08:18:51
cashout_time1969-12-31 23:59:59
total_payout_value0.044 HBD
curator_payout_value0.044 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length111
author_reputation524,332,427,393,665
root_title"Hive Comments: I Built A Web App Using HiveSQL And Streamlit - All In Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,608,514
net_rshares591,077,235,341
author_curate_reward""
vote details (2)
@geekgirl ·
Right now it just shows interactions with one user. It is a great idea to implement. Thank you.

Posted Using [LeoFinance <sup>Beta</sup>](https://leofinance.io/@geekgirl/re-chekohler-5zantu)
properties (22)
authorgeekgirl
permlinkre-chekohler-5zantu
categoryhive-167922
json_metadata{"app":"leofinance/0.2","format":"markdown","tags":["hive-167922","leofinance"],"canonical_url":"https://leofinance.io/@geekgirl/re-chekohler-5zantu"}
created2021-01-29 08:32:00
last_update2021-01-29 08:32:00
depth2
children0
last_payout2021-02-05 08:32: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_length191
author_reputation1,586,488,611,824,452
root_title"Hive Comments: I Built A Web App Using HiveSQL And Streamlit - All In Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,608,710
net_rshares0
@dalz ·
$0.20
I must try this at some point :)
👍  
properties (23)
authordalz
permlinkqnomb4
categoryhive-167922
json_metadata{"app":"hiveblog/0.1"}
created2021-01-29 06:06:45
last_update2021-01-29 06:06:45
depth1
children2
last_payout2021-02-05 06:06:45
cashout_time1969-12-31 23:59:59
total_payout_value0.108 HBD
curator_payout_value0.095 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length32
author_reputation1,900,948,943,972,841
root_title"Hive Comments: I Built A Web App Using HiveSQL And Streamlit - All In Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,607,402
net_rshares1,339,699,957,708
author_curate_reward""
vote details (1)
@geekgirl ·
Did you try the App? Please do. I need feedbacks. :)
properties (22)
authorgeekgirl
permlinkqnomhz
categoryhive-167922
json_metadata{"app":"hiveblog/0.1"}
created2021-01-29 06:10:48
last_update2021-01-29 06:10:48
depth2
children1
last_payout2021-02-05 06:10:48
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_length52
author_reputation1,586,488,611,824,452
root_title"Hive Comments: I Built A Web App Using HiveSQL And Streamlit - All In Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,607,426
net_rshares0
@dalz ·
Not yet .... on the phone now, cant make it running :)
properties (22)
authordalz
permlinkqnomx0
categoryhive-167922
json_metadata{"app":"hiveblog/0.1"}
created2021-01-29 06:19:51
last_update2021-01-29 06:19:51
depth3
children0
last_payout2021-02-05 06:19:51
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_length54
author_reputation1,900,948,943,972,841
root_title"Hive Comments: I Built A Web App Using HiveSQL And Streamlit - All In Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,607,504
net_rshares0
@encrypt3dbr0k3r ·
$0.09
Very cool, some nice work @geekgirl 
👍  
properties (23)
authorencrypt3dbr0k3r
permlinkre-geekgirl-qnpqk1
categoryhive-167922
json_metadata{"tags":["hive-167922"],"app":"peakd/2021.01.3"}
created2021-01-29 20:36:03
last_update2021-01-29 20:36:03
depth1
children1
last_payout2021-02-05 20:36:03
cashout_time1969-12-31 23:59:59
total_payout_value0.046 HBD
curator_payout_value0.046 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length36
author_reputation10,297,993,958,651
root_title"Hive Comments: I Built A Web App Using HiveSQL And Streamlit - All In Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,617,096
net_rshares602,545,514,068
author_curate_reward""
vote details (1)
@geekgirl ·
Thank you! I am glad you liked.
properties (22)
authorgeekgirl
permlinkqnq4nl
categoryhive-167922
json_metadata{"app":"hiveblog/0.1"}
created2021-01-30 01:40:33
last_update2021-01-30 01:40:33
depth2
children0
last_payout2021-02-06 01:40: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_length31
author_reputation1,586,488,611,824,452
root_title"Hive Comments: I Built A Web App Using HiveSQL And Streamlit - All In Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,620,450
net_rshares0
@hivebuzz ·
Congratulations @geekgirl! You have completed the following achievement on the Hive blockchain and have been rewarded with new badge(s) :

<table><tr><td><img src="https://images.hive.blog/60x70/http://hivebuzz.me/@geekgirl/replies.png?202101290717"></td><td>You got more than 6500 replies. Your next target is to reach 6750 replies.</td></tr>
</table>

<sub>_You can view your badges on [your board](https://hivebuzz.me/@geekgirl) and compare yourself to others in the [Ranking](https://hivebuzz.me/ranking)_</sub>
<sub>_If you no longer want to receive notifications, reply to this comment with the word_ `STOP`</sub>



**Check out the last post from @hivebuzz:**
<table><tr><td><a href="/hivebuzz/@hivebuzz/pud-202102"><img src="https://images.hive.blog/64x128/https://i.imgur.com/805FIIt.jpg"></a></td><td><a href="/hivebuzz/@hivebuzz/pud-202102">Next Hive Power Up Day is February 1st 2021</a></td></tr></table>
properties (22)
authorhivebuzz
permlinkhivebuzz-notify-geekgirl-20210129t073056000z
categoryhive-167922
json_metadata{"image":["http://hivebuzz.me/notify.t6.png"]}
created2021-01-29 07:30:54
last_update2021-01-29 07:30:54
depth1
children0
last_payout2021-02-05 07:30: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_length917
author_reputation369,196,938,108,764
root_title"Hive Comments: I Built A Web App Using HiveSQL And Streamlit - All In Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,608,114
net_rshares0
@hivetrending · (edited)
$0.21
Very cool, fun idea. I really enjoy write ups like...

Very cool, fun idea. I really enjoy write ups like these. I'll try to do some similar posts.

One suggestion: I've seen other repos include an example config file like config.toml.example. Then it's easier to modify and rename the file to get started.


 Posted using [Dapplr](https://app.dapplr.in/T3wBPsAV22JnmraG9)

 
👍  ,
properties (23)
authorhivetrending
permlinkvery-cool-fun-idea-i-really-a0ew4u0siq2ggvcvjx0t6k7n0xk4qf8r
categoryhive-167922
json_metadata{"app":"dapplr","format":"markdown","tags":["dapplr"],"media":[],"users_tagged":[]}
created2021-01-29 05:50:36
last_update2021-01-29 05:52:24
depth1
children1
last_payout2021-02-05 05:50:36
cashout_time1969-12-31 23:59:59
total_payout_value0.104 HBD
curator_payout_value0.110 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length322
author_reputation73,026,492,737,802
root_title"Hive Comments: I Built A Web App Using HiveSQL And Streamlit - All In Python"
beneficiaries
0.
accountdapplr
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,607,284
net_rshares1,366,548,743,924
author_curate_reward""
vote details (2)
@geekgirl ·
Thank you @hivetrending! 

Thanks for the suggestion. I will take a look. I didn't know that. I am new to using repositories and heroku. I normally do simple things that run on my computer.

Posted Using [LeoFinance <sup>Beta</sup>](https://leofinance.io/@geekgirl/re-hivetrending-z3avn)
👍  
properties (23)
authorgeekgirl
permlinkre-hivetrending-z3avn
categoryhive-167922
json_metadata{"app":"leofinance/0.2","format":"markdown","tags":["hive-167922","leofinance"],"canonical_url":"https://leofinance.io/@geekgirl/re-hivetrending-z3avn"}
created2021-01-29 06:08:36
last_update2021-01-29 06:08:36
depth2
children0
last_payout2021-02-05 06:08: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_length287
author_reputation1,586,488,611,824,452
root_title"Hive Comments: I Built A Web App Using HiveSQL And Streamlit - All In Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,607,413
net_rshares65,714,664
author_curate_reward""
vote details (1)
@jonsnow1983 ·
$0.20
Awesome contribution my dear. This is going to be very helpful!
👍  
properties (23)
authorjonsnow1983
permlinkre-geekgirl-qnpm34
categoryhive-167922
json_metadata{"tags":["hive-167922"],"app":"peakd/2021.01.3"}
created2021-01-29 18:59:30
last_update2021-01-29 18:59:30
depth1
children1
last_payout2021-02-05 18:59:30
cashout_time1969-12-31 23:59:59
total_payout_value0.098 HBD
curator_payout_value0.099 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length63
author_reputation516,278,940,251,323
root_title"Hive Comments: I Built A Web App Using HiveSQL And Streamlit - All In Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,615,753
net_rshares1,216,123,228,545
author_curate_reward""
vote details (1)
@geekgirl ·
Thank You!

Posted Using [LeoFinance <sup>Beta</sup>](https://leofinance.io/@geekgirl/re-jonsnow1983-2z2gz9)
properties (22)
authorgeekgirl
permlinkre-jonsnow1983-2z2gz9
categoryhive-167922
json_metadata{"app":"leofinance/0.2","format":"markdown","tags":["hive-167922","leofinance"],"canonical_url":"https://leofinance.io/@geekgirl/re-jonsnow1983-2z2gz9"}
created2021-01-29 20:10:12
last_update2021-01-29 20:10:12
depth2
children0
last_payout2021-02-05 20:10: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_length108
author_reputation1,586,488,611,824,452
root_title"Hive Comments: I Built A Web App Using HiveSQL And Streamlit - All In Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,616,815
net_rshares0
@josediccus ·
$0.10
@tipu curate
👍  
properties (23)
authorjosediccus
permlinkqnolfs
categoryhive-167922
json_metadata{"users":["tipu"],"app":"hiveblog/0.1"}
created2021-01-29 05:47:51
last_update2021-01-29 05:47:51
depth1
children3
last_payout2021-02-05 05:47:51
cashout_time1969-12-31 23:59:59
total_payout_value0.049 HBD
curator_payout_value0.049 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length12
author_reputation2,567,458,846,608,046
root_title"Hive Comments: I Built A Web App Using HiveSQL And Streamlit - All In Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,607,255
net_rshares656,473,140,021
author_curate_reward""
vote details (1)
@geekgirl ·
Thank You!
properties (22)
authorgeekgirl
permlinkqnomjx
categoryhive-167922
json_metadata{"app":"hiveblog/0.1"}
created2021-01-29 06:11:57
last_update2021-01-29 06:11:57
depth2
children1
last_payout2021-02-05 06:11:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length10
author_reputation1,586,488,611,824,452
root_title"Hive Comments: I Built A Web App Using HiveSQL And Streamlit - All In Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,607,436
net_rshares0
@josediccus ·
You're welcome
properties (22)
authorjosediccus
permlinkqnomoi
categoryhive-167922
json_metadata{"app":"hiveblog/0.1"}
created2021-01-29 06:14:42
last_update2021-01-29 06:14:42
depth3
children0
last_payout2021-02-05 06:14: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_length14
author_reputation2,567,458,846,608,046
root_title"Hive Comments: I Built A Web App Using HiveSQL And Streamlit - All In Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,607,461
net_rshares0
@tipu ·
<a href="https://tipu.online/hive_curator?josediccus" target="_blank">Upvoted  &#128076;</a> (Mana: 0/5) <a href="https://peakd.com/hive/@reward.app/reward-app-quick-guide-updated" target="_blank">Liquid rewards</a>.
properties (22)
authortipu
permlinkre-qnolfs-20210129t054801z
categoryhive-167922
json_metadata"{"app": "beem/0.24.20"}"
created2021-01-29 05:48:03
last_update2021-01-29 05:48:03
depth2
children0
last_payout2021-02-05 05:48: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_length216
author_reputation55,902,105,514,997
root_title"Hive Comments: I Built A Web App Using HiveSQL And Streamlit - All In Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,607,257
net_rshares0
@mominsdt ·
$0.09
@geekgirl , your coding is amazing, thank you for helping programmers.
👍  
properties (23)
authormominsdt
permlinkqnos8t
categoryhive-167922
json_metadata{"users":["geekgirl"],"app":"hiveblog/0.1"}
created2021-01-29 08:16:06
last_update2021-01-29 08:16:06
depth1
children1
last_payout2021-02-05 08:16:06
cashout_time1969-12-31 23:59:59
total_payout_value0.044 HBD
curator_payout_value0.044 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length70
author_reputation5,271,058,967,388
root_title"Hive Comments: I Built A Web App Using HiveSQL And Streamlit - All In Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,608,484
net_rshares585,277,160,007
author_curate_reward""
vote details (1)
@geekgirl ·
Thank You. I am just learning and experimenting.

Posted Using [LeoFinance <sup>Beta</sup>](https://leofinance.io/@geekgirl/re-mominsdt-6vpsp5)
👍  
properties (23)
authorgeekgirl
permlinkre-mominsdt-6vpsp5
categoryhive-167922
json_metadata{"app":"leofinance/0.2","format":"markdown","tags":["hive-167922","leofinance"],"canonical_url":"https://leofinance.io/@geekgirl/re-mominsdt-6vpsp5"}
created2021-01-29 08:32:39
last_update2021-01-29 08:32:39
depth2
children0
last_payout2021-02-05 08:32: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_length143
author_reputation1,586,488,611,824,452
root_title"Hive Comments: I Built A Web App Using HiveSQL And Streamlit - All In Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,608,723
net_rshares1,207,867,007
author_curate_reward""
vote details (1)
@nathanmars ·
$0.21
Amazing stuff! 

We need to bring more geeks to HIVE

Posted Using [LeoFinance <sup>Beta</sup>](https://leofinance.io/@nathanmars/re-geekgirl-3tjjxa)
👍  
properties (23)
authornathanmars
permlinkre-geekgirl-3tjjxa
categoryhive-167922
json_metadata{"app":"leofinance/0.2","format":"markdown","tags":["hive-167922","leofinance"],"canonical_url":"https://leofinance.io/@nathanmars/re-geekgirl-3tjjxa"}
created2021-01-29 15:22:00
last_update2021-01-29 15:22:00
depth1
children1
last_payout2021-02-05 15:22:00
cashout_time1969-12-31 23:59:59
total_payout_value0.104 HBD
curator_payout_value0.104 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length149
author_reputation336,354,946,115,368
root_title"Hive Comments: I Built A Web App Using HiveSQL And Streamlit - All In Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,613,136
net_rshares1,265,391,689,719
author_curate_reward""
vote details (1)
@geekgirl ·
Thanks You!

Posted Using [LeoFinance <sup>Beta</sup>](https://leofinance.io/@geekgirl/re-nathanmars-5tosen)
👍  
properties (23)
authorgeekgirl
permlinkre-nathanmars-5tosen
categoryhive-167922
json_metadata{"app":"leofinance/0.2","format":"markdown","tags":["hive-167922","leofinance"],"canonical_url":"https://leofinance.io/@geekgirl/re-nathanmars-5tosen"}
created2021-01-29 20:06:27
last_update2021-01-29 20:06:27
depth2
children0
last_payout2021-02-05 20:06: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_length108
author_reputation1,586,488,611,824,452
root_title"Hive Comments: I Built A Web App Using HiveSQL And Streamlit - All In Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,616,767
net_rshares63,792,563,378
author_curate_reward""
vote details (1)
@nickjames7283 ·
@nickjames7283 "Collaboration with tech companies to improve Bitco..."
Collaboration with tech companies to improve Bitcoin's scalability and transaction speed is essential. By working with developers, Bitcoin can evolve to handle more transactions [see it yourself](http://zeusai.xyz/)
properties (22)
authornickjames7283
permlinkre-geekgirl-qbmwrzgz
categoryhive-167922
json_metadata{"app":"leothreads/0.3","format":"markdown","tags":["leofinance"],"canonical_url":"https://inleo.io/threads/view/nickjames7283/re-geekgirl-qbmwrzgz","isPoll":false,"pollOptions":{},"dimensions":[]}
created2025-01-31 21:04:45
last_update2025-01-31 21:04:45
depth1
children0
last_payout2025-02-07 21:04: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_length215
author_reputation0
root_title"Hive Comments: I Built A Web App Using HiveSQL And Streamlit - All In Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id140,460,814
net_rshares0
@prakshsingh ·
Great work
properties (22)
authorprakshsingh
permlinkre-geekgirl-2021130t821732z
categoryhive-167922
json_metadata{"tags":["hive-167922","hive","hivesql","python","coding","dev","tutorial","stem","neoxian","ctptalk","palnet","leofinance"],"app":"ecency/3.0.12-mobile","format":"markdown+html"}
created2021-01-30 02:32:15
last_update2021-01-30 02:32:15
depth1
children0
last_payout2021-02-06 02:32: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_length10
author_reputation1,886,926,844,935
root_title"Hive Comments: I Built A Web App Using HiveSQL And Streamlit - All In Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,620,988
net_rshares0
@primersion ·
$0.09
Great idea you had there! I love to do small projects, because you learn so much on the way. I hope you will be creating more awesome projects like this :)

!gif hive
👍  ,
properties (23)
authorprimersion
permlinkre-geekgirl-2021129t224744649z
categoryhive-167922
json_metadata{"tags":["hive-167922","hive","hivesql","python","coding","dev","tutorial","stem","neoxian","ctptalk","palnet","leofinance"],"app":"ecency/3.0.13-vision","format":"markdown+html"}
created2021-01-29 21:47:45
last_update2021-01-29 21:47:45
depth1
children2
last_payout2021-02-05 21:47:45
cashout_time1969-12-31 23:59:59
total_payout_value0.048 HBD
curator_payout_value0.045 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length166
author_reputation91,109,041,081,432
root_title"Hive Comments: I Built A Web App Using HiveSQL And Streamlit - All In Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,617,905
net_rshares627,015,307,544
author_curate_reward""
vote details (2)
@geekgirl ·
Thank You! Yes, it is fun to work on something and learn at the same time.
👍  
properties (23)
authorgeekgirl
permlinkqnq4pw
categoryhive-167922
json_metadata{"app":"hiveblog/0.1"}
created2021-01-30 01:41:57
last_update2021-01-30 01:41:57
depth2
children0
last_payout2021-02-06 01:41: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_length74
author_reputation1,586,488,611,824,452
root_title"Hive Comments: I Built A Web App Using HiveSQL And Streamlit - All In Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,620,468
net_rshares78,400,271,915
author_curate_reward""
vote details (1)
@hivegifbot ·
<center>https://media.tenor.com/images/03a9f742fc82df04b53e11ccb9542a47/tenor.gif
[Via Tenor](https://tenor.com/)</center>
properties (22)
authorhivegifbot
permlinkre-re-geekgirl-2021129t224744649z-20210129t214838z
categoryhive-167922
json_metadata"{"app": "beem/0.24.20"}"
created2021-01-29 21:48:36
last_update2021-01-29 21:48:36
depth2
children0
last_payout2021-02-05 21:48: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_length122
author_reputation38,192,557,766,504
root_title"Hive Comments: I Built A Web App Using HiveSQL And Streamlit - All In Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,617,916
net_rshares0
@rollinshive ·
$0.09
Impressive! I love the motive! 
👍  
properties (23)
authorrollinshive
permlinkre-geekgirl-qnoprp
categoryhive-167922
json_metadata{"tags":["hive-167922"],"app":"peakd/2021.01.3"}
created2021-01-29 07:21:30
last_update2021-01-29 07:21:30
depth1
children1
last_payout2021-02-05 07:21:30
cashout_time1969-12-31 23:59:59
total_payout_value0.044 HBD
curator_payout_value0.045 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length31
author_reputation10,807,910,148,510
root_title"Hive Comments: I Built A Web App Using HiveSQL And Streamlit - All In Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,608,032
net_rshares597,231,421,613
author_curate_reward""
vote details (1)
@geekgirl ·
Thank You!

Posted Using [LeoFinance <sup>Beta</sup>](https://leofinance.io/@geekgirl/re-rollinshive-bzoyt)
properties (22)
authorgeekgirl
permlinkre-rollinshive-bzoyt
categoryhive-167922
json_metadata{"app":"leofinance/0.2","format":"markdown","tags":["hive-167922","leofinance"],"canonical_url":"https://leofinance.io/@geekgirl/re-rollinshive-bzoyt"}
created2021-01-29 07:41:03
last_update2021-01-29 07:41:03
depth2
children0
last_payout2021-02-05 07:41: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_length107
author_reputation1,586,488,611,824,452
root_title"Hive Comments: I Built A Web App Using HiveSQL And Streamlit - All In Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,608,199
net_rshares0
@sanjeevm ·
$0.18
> Simple transfer 0.01 HBD to @hivesql, and it will automatically send a transfer to your account with login and password information.

How do I read that information ? 
👍  
properties (23)
authorsanjeevm
permlinkre-geekgirl-qo7t95
categoryhive-167922
json_metadata{"tags":["hive-167922"],"app":"peakd/2021.01.3"}
created2021-02-08 14:51:06
last_update2021-02-08 14:51:06
depth1
children0
last_payout2021-02-15 14:51:06
cashout_time1969-12-31 23:59:59
total_payout_value0.088 HBD
curator_payout_value0.089 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length169
author_reputation677,428,978,856,456
root_title"Hive Comments: I Built A Web App Using HiveSQL And Streamlit - All In Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,778,145
net_rshares754,937,612,617
author_curate_reward""
vote details (1)
@starstrings01 ·
$0.06
Cool app. I would check it out but first I need to go get my hivesql login details. Wait, this works for mobile too right? 
👍  
properties (23)
authorstarstrings01
permlinkre-geekgirl-qnon7s
categoryhive-167922
json_metadata{"tags":["hive-167922"],"app":"peakd/2021.01.3"}
created2021-01-29 06:26:27
last_update2021-01-29 06:26:27
depth1
children5
last_payout2021-02-05 06:26:27
cashout_time1969-12-31 23:59:59
total_payout_value0.048 HBD
curator_payout_value0.014 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length123
author_reputation942,630,974,283,386
root_title"Hive Comments: I Built A Web App Using HiveSQL And Streamlit - All In Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,607,554
net_rshares645,273,856,279
author_curate_reward""
vote details (1)
@geekgirl ·
Yes, it does work on mobile.
properties (22)
authorgeekgirl
permlinkqnonb2
categoryhive-167922
json_metadata{"app":"hiveblog/0.1"}
created2021-01-29 06:28:15
last_update2021-01-29 06:28:15
depth2
children4
last_payout2021-02-05 06:28: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_length28
author_reputation1,586,488,611,824,452
root_title"Hive Comments: I Built A Web App Using HiveSQL And Streamlit - All In Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,607,573
net_rshares0
@starstrings01 ·
Great!! Thanks again would try it out
properties (22)
authorstarstrings01
permlinkre-geekgirl-qnonee
categoryhive-167922
json_metadata{"tags":["hive-167922"],"app":"peakd/2021.01.3"}
created2021-01-29 06:30:21
last_update2021-01-29 06:30:21
depth3
children0
last_payout2021-02-05 06:30: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_length37
author_reputation942,630,974,283,386
root_title"Hive Comments: I Built A Web App Using HiveSQL And Streamlit - All In Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,607,606
net_rshares0
@starstrings01 ·
Somehow I can't seem to find where to login @geekgirl


![IMG_20210129_123139.jpg](https://files.peakd.com/file/peakd-hive/starstrings01/C0olwbH4-IMG_20210129_123139.jpg)
properties (22)
authorstarstrings01
permlinkre-geekgirl-qnp1gv
categoryhive-167922
json_metadata{"tags":["hive-167922"],"app":"peakd/2021.01.3"}
created2021-01-29 11:34:09
last_update2021-01-29 11:34:09
depth3
children2
last_payout2021-02-05 11:34: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_length171
author_reputation942,630,974,283,386
root_title"Hive Comments: I Built A Web App Using HiveSQL And Streamlit - All In Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,610,609
net_rshares0
@themarkymark ·
$0.20
> I made the github repo to the code private because it was leaking the private credentials. I am just learning how these things work. If you need the code I will be happy to share. To make the github repo public I need to learn how to secure sensitive data first.

This is a very common issue, in fact there has been a few issues with private keys.  I had one person who had over 50,000 liquid Hive exposed on Github back in the Steem days.

Anyway, the best practice is structuring your app like this.

# Config File

* Put a config.js/config.yml into your project
* Add the config file to your .gitignore
* Store all secrets in the config file

# Env variables

* Use environment variables for secrets
* If using a script to launch and set env var, add it to .gitignore

Either of these two solutions will prevent leaking secrets to GitHub.

Seeing as you likely (I haven't seen your code) put secrets in your core files, you can't scrub your Git repo to just remove that file from the history.  Seeing as this is a small project, I would remove the .git folder and just fix your problem then make a new repo.

If you need the history, it gets a lot more complicated.

Posted Using [LeoFinance <sup>Beta</sup>](https://leofinance.io/@themarkymark/re-geekgirl-4iwha)
👍  
👎  
properties (23)
authorthemarkymark
permlinkre-geekgirl-4iwha
categoryhive-167922
json_metadata{"app":"leofinance/0.2","format":"markdown","tags":["hive-167922","leofinance"],"canonical_url":"https://leofinance.io/@themarkymark/re-geekgirl-4iwha"}
created2021-01-29 20:37:27
last_update2021-01-29 20:37:27
depth1
children1
last_payout2021-02-05 20:37:27
cashout_time1969-12-31 23:59:59
total_payout_value0.100 HBD
curator_payout_value0.100 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,268
author_reputation1,772,880,250,466,019
root_title"Hive Comments: I Built A Web App Using HiveSQL And Streamlit - All In Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,617,110
net_rshares1,223,274,424,251
author_curate_reward""
vote details (2)
@geekgirl ·
Awesome. Thank You. I will try these options.
properties (22)
authorgeekgirl
permlinkqnq4jz
categoryhive-167922
json_metadata{"app":"hiveblog/0.1"}
created2021-01-30 01:38:24
last_update2021-01-30 01:38:24
depth2
children0
last_payout2021-02-06 01:38:24
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_length45
author_reputation1,586,488,611,824,452
root_title"Hive Comments: I Built A Web App Using HiveSQL And Streamlit - All In Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,620,432
net_rshares0
@topbooster ·
$0.09
You built a good app for Hive users. Thank you @geekgirl for the Hive Comments app
👍  
properties (23)
authortopbooster
permlinkqnombm
categoryhive-167922
json_metadata{"users":["geekgirl"],"app":"hiveblog/0.1"}
created2021-01-29 06:08:12
last_update2021-01-29 06:08:12
depth1
children1
last_payout2021-02-05 06:08:12
cashout_time1969-12-31 23:59:59
total_payout_value0.048 HBD
curator_payout_value0.040 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length82
author_reputation14,454,501,146,413
root_title"Hive Comments: I Built A Web App Using HiveSQL And Streamlit - All In Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,607,411
net_rshares649,993,522,514
author_curate_reward""
vote details (1)
@geekgirl ·
Thank You!
properties (22)
authorgeekgirl
permlinkqnomkp
categoryhive-167922
json_metadata{"app":"hiveblog/0.1"}
created2021-01-29 06:12:24
last_update2021-01-29 06:12:24
depth2
children0
last_payout2021-02-05 06:12:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length10
author_reputation1,586,488,611,824,452
root_title"Hive Comments: I Built A Web App Using HiveSQL And Streamlit - All In Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,607,438
net_rshares0
@urun ·
Cool :)
properties (22)
authorurun
permlinkre-geekgirl-qnqe9l
categoryhive-167922
json_metadata{"tags":["hive-167922"],"app":"peakd/2021.01.3"}
created2021-01-30 05:08:09
last_update2021-01-30 05:08:09
depth1
children0
last_payout2021-02-06 05:08: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_length7
author_reputation94,054,151,913,937
root_title"Hive Comments: I Built A Web App Using HiveSQL And Streamlit - All In Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,621,997
net_rshares0
@xiaqiann ·
so cool!
properties (22)
authorxiaqiann
permlinkqnr4np
categoryhive-167922
json_metadata{"app":"hiveblog/0.1"}
created2021-01-30 14:38:18
last_update2021-01-30 14:38:18
depth1
children0
last_payout2021-02-06 14:38: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_length8
author_reputation36,965,596,039,187
root_title"Hive Comments: I Built A Web App Using HiveSQL And Streamlit - All In Python"
beneficiaries
0.
accounthiveonboard
weight100
1.
accounttipu
weight100
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,627,046
net_rshares0