#### Repository https://github.com/python #### What Will I Learn? - Stream tweets - Feeds for each user #### Requirements - Basic Python - Install Python 3 - Install Flask #### Resources - Python - https://www.python.org/ - Flask - http://flask.pocoo.org/ - Peewee http://docs.peewee-orm.com/en/latest/ - Sqlitebrowser https://sqlitebrowser.org/ #### Difficulty Basic ### Tutorial Content Hi all, this tutorial will still discuss social media applications using the flask, we have done many things about this project, you can see what has been done in the curriculum section below. In this tutorial we will add a new feature in this application, I will make a stream of tweets for the user or people we have followed, so later we can see the tweets from the users that we have followed. For that, we just see how the implementation of this project. ### Feeds Tweets I will make Feeds tweets so that we can see post tweets from users that we have followed, this feature is a feature that is often found in every application that is based on social media. I will change the **homepage** to create a feed when we are logged in. - **Feeds on the homepage** I will change the homepage to display feeds on our application. I will make a query that I will use to display all post users that I follow. for more details, we can see the code below: **app.py** ``` @app.route('/') @login_required def showHomePage(): user = get_current_user() messages = (Message.select() .where(Message.user << user.following()) ) return render_template('index.html', message = messages) ``` - Before we do a query we need to know the data of the user who is currently logged in, for that we can use the ```get_current_user()```function. We have defined this function in the previous tutorials. The following is the contents of the function: ``` def get_current_user(): if session.get('logged_in'): return User.get(User.id == session['user_id']) ``` This function uses a ***session*** to retrieve user data. in this function I will check the user who is logged in based on the session that was in key ``` if session.get('logged_in'):``` and then return the result of data. - ```Message``` is a model that handles posts from each user, so we can use this model to look for *posts* from users that we have followed, I will use the ```select ()```` function to fetch the data from table **Message**. - We will retrieve data from ***messages*** from users that we have followed so we can use ```where()``` to be more specific. - ```<< x in y``` on sqlite3 we can use operators like this **<< x in y**, to find *where in*. In its implementation in our application, I will look for the user message id in User following () ```Message.user() << User.following()```. **Message.user** In the table Message, we store the id of the user who posts. we can see the contents of the tab as shown below:  If we look at the table **Message**. We can see the user id of each post and we can find out which user has the post because we can see the list of user id in the **User** table.  **User.following()** While in this function we have made the previous [tutorial](https://steemit.com/utopian-io/@duski.harahap/make-social-media-applications-with-flask-8-handle-error-and-make-the-system-follow-a-user-1549792437933), this function is used to join the table relationship, the following functions. ``` def following(self): return (User.select() .join(Relationship, on=Relationship.to_user) .where(Relationship.from_user == self) .order_by(User.username)) ``` This function is in the **User** Model. This function performs a join with a table **relationship** to find out which users are *following and being followed*. <br> - And then the result of my query passes to the index.html template as follows: ```return render_template('index.html', message = messages)```. the **message** is the key we will use in the frontend and the **messages** is the name of the variable. <br> - **Show feed on the homepage** Now I will switch to the homepage page in the homepage layout we can use for to do data message looping: **index.html** ``` {%extends "layout.html" %} {% block body %} <div class="jumbotron"> <h1 class="display-4">Welcome to homepage, I'm using base layout</h1> <p class="lead">Welcome to the social media application that uses flasks</p> <hr class="my-4"> <p>For new users you are required to register to use this application. please click register</p> <a class="btn btn-primary btn-lg" href="{{url_for('registerPage')}}" role="button">Register</a> </div> <h2 style="text-align: center;">Your feed</h2> {% for message in messages%} <h4>{{message.content}} - by {{message.user.username}}</h4> <span style="font-size: 10px; font-style: italic;">{{message.published_at}}</span> {% endfor %} {% endblock %} ``` On the homepage, I'm still extending the layout ```{%extends "layout.html" %}```. In the backend section we have passed the message parameter, now I will do a loop on that data, as we can see in the code: ``` {% for message in messages%} <h4>{{message.content}} - by {{message.user.username}}</h4> <span style="font-size: 10px; font-style: italic;">{{message.published_at}}</span> {% endfor %} ``` in the message object there are some data that we will display namely ```{{message.content}}```, ````{{message.user.username}}````, and ```{{message.published_at}}```. If everything is finished I will do a number of demonstrations to see the results of the implementation, here this demonstration I will log in with the username **milleaduski1994**. - **Followed User2** .gif) **We can see in the picture above we have followed user2 so that I should see the status on my homepage.** but now if we see **User2 doesn't have a post yet**. therefore I will make a post using User2 like the picture that we can see below: **Create a post for User2** .gif) We can also see the post in the **message** table as we see in the picture below:  <br> Now that **User2** already has the latest post, now I will log into the **mileaduski1994** account. If it works then we will see the Status of **User2** on the homepage. .gif) As we saw in the picture above we have done to display the posting user that we have followed on our homepage. that means our system stream tweets are running well. Thank you for following this tutorial. hopefully, it will be useful for you. In the next tutorial, I will discuss a lot about feeds and relations between accounts.  ### Curriculum [Make social media applications with Flask #1: Design database and initial structure, Following and follower functions]( https://steemit.com/utopian-io/@duski.harahap/make-social-media-applications-with-flask-1-desaign-database-and-initial-structure-following-and-follower-functions-1547568096688) [Make social media applications with Flask #2: System routing and Templating, Make user register](https://steemit.com/utopian-io/@duski.harahap/make-social-media-applications-with-flask-2-system-routing-and-templating-make-user-register-1547816234338) [Make social media applications with Flask #3: Register user and Store data in SQLite, Base Layout](https://steemit.com/utopian-io/@duski.harahap/make-social-media-applications-with-flask-3-register-user-and-store-data-in-sqlite-base-layout-1548251533384) [Make social media applications with Flask #4: Login system and Use session to manage user data](https://steemit.com/utopian-io/@duski.harahap/make-social-media-applications-with-flask-4-login-system-and-use-session-to-manage-user-data-1548429289119) [Make social media applications with Flask #5: Authentication during registration and User notification]( https://steemit.com/utopian-io/@duski.harahap/make-social-media-applications-with-flask-5-authentication-during-registration-and-user-notification-1548686390863) [Make social media applications with Flask #6: View decorator and Post the first status](https://steemit.com/utopian-io/@duski.harahap/make-social-media-applications-with-flask-6-view-decorator-and-post-the-first-status-1549029740369) [Make social media applications with Flask #7: The use of backref and Create profile features]( https://steemit.com/utopian-io/@duski.harahap/make-social-media-applications-with-flask-7-the-use-of-backref-and-create-profile-features-1549339256879) [Make social media applications with Flask #8: Handle error and Make the system follow a user]( https://steemit.com/utopian-io/@duski.harahap/make-social-media-applications-with-flask-8-handle-error-and-make-the-system-follow-a-user-1549792437933) #### Proof of work done https://github.com/milleaduski/python-web-app
author | duski.harahap | ||||||
---|---|---|---|---|---|---|---|
permlink | make-social-media-applications-with-flask-10-stream-tweets-and-feeds-for-each-user-1550384814196 | ||||||
category | utopian-io | ||||||
json_metadata | {"app":"steemit/0.1","format":"markdown","image":["https://ipfs.busy.org/ipfs/QmbbLsgSSSij9G8gj2vHjWRRdwiJuygEZTvCaWEBcRU8HG","https://ipfs.busy.org/ipfs/QmdafUtjhCsV5NucsoyWkJZRewGq4ZLBeE88e915scEyMA","https://cdn.steemitimages.com/DQmPvvvaCbcL2itnkfmoRjNJAiEZ35JkAjLhk6EjyRvme1f/ezgif.com-video-to-gif%20(5).gif","https://cdn.steemitimages.com/DQmQAXRcAxiwjac7uoK4bhSbtokSBkKz6nYv5WRfAcPqHnF/ezgif.com-video-to-gif%20(6).gif","https://ipfs.busy.org/ipfs/Qmdb5pJzWRuSe1zB2DjTEBDtHKPXEvkJxMAJeb6XSPmThg","https://cdn.steemitimages.com/DQmbSZKHWuygUSnZqBRf9wzd3X4xhpQ428yphPgW8afBnqz/ezgif.com-video-to-gif%20(7).gif","https://cdn.steemitimages.com/DQmRgsQrdksPCKfMVMAmDzabxfLkQGqUNP6kJ719hxPpDnh/Screenshot_14.png"],"tags":["utopian-io","tutorials","python","web","flask"],"links":["https://github.com/python","https://www.python.org/","http://flask.pocoo.org/","http://docs.peewee-orm.com/en/latest/","https://sqlitebrowser.org/","https://steemit.com/utopian-io/@duski.harahap/make-social-media-applications-with-flask-8-handle-error-and-make-the-system-follow-a-user-1549792437933","https://steemit.com/utopian-io/@duski.harahap/make-social-media-applications-with-flask-1-desaign-database-and-initial-structure-following-and-follower-functions-1547568096688","https://steemit.com/utopian-io/@duski.harahap/make-social-media-applications-with-flask-2-system-routing-and-templating-make-user-register-1547816234338","https://steemit.com/utopian-io/@duski.harahap/make-social-media-applications-with-flask-3-register-user-and-store-data-in-sqlite-base-layout-1548251533384","https://steemit.com/utopian-io/@duski.harahap/make-social-media-applications-with-flask-4-login-system-and-use-session-to-manage-user-data-1548429289119","https://steemit.com/utopian-io/@duski.harahap/make-social-media-applications-with-flask-5-authentication-during-registration-and-user-notification-1548686390863","https://steemit.com/utopian-io/@duski.harahap/make-social-media-applications-with-flask-6-view-decorator-and-post-the-first-status-1549029740369","https://steemit.com/utopian-io/@duski.harahap/make-social-media-applications-with-flask-7-the-use-of-backref-and-create-profile-features-1549339256879","https://github.com/milleaduski/python-web-app"]} | ||||||
created | 2019-02-17 06:26:57 | ||||||
last_update | 2019-02-17 06:58:24 | ||||||
depth | 0 | ||||||
children | 6 | ||||||
last_payout | 2019-02-24 06:26:57 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 17.132 HBD | ||||||
curator_payout_value | 5.588 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 9,499 | ||||||
author_reputation | 60,094,717,098,672 | ||||||
root_title | "Make social media applications with Flask #10: Stream tweets and Feeds for each user" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 100,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 79,987,526 | ||||||
net_rshares | 45,056,208,996,505 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
tombstone | 0 | 2,995,750,758,065 | 12.73% | ||
daan | 0 | 11,577,319,341 | 3% | ||
rufans | 0 | 19,162,978,005 | 100% | ||
penguinpablo | 0 | 205,308,606,553 | 8% | ||
elena-singer | 0 | 35,663,674,561 | 100% | ||
techslut | 0 | 82,931,459,703 | 25% | ||
minersean | 0 | 5,138,994,881 | 75% | ||
erikaflynn | 0 | 15,054,476,187 | 35% | ||
lovenfreedom | 0 | 11,839,098,170 | 13% | ||
lordneroo | 0 | 29,300,473,915 | 50% | ||
miniature-tiger | 0 | 140,073,384,033 | 50% | ||
aleister | 0 | 7,842,904,203 | 15% | ||
jakipatryk | 0 | 14,639,550,241 | 50% | ||
jga | 0 | 1,848,045,642 | 15.91% | ||
yehey | 0 | 12,211,833,600 | 10% | ||
helo | 0 | 55,590,502,938 | 27.38% | ||
walnut1 | 0 | 34,394,394,239 | 15.91% | ||
lorenzor | 0 | 809,888,600 | 7.95% | ||
pinoy | 0 | 108,208,984 | 10% | ||
suesa | 0 | 108,491,716,713 | 25% | ||
codingdefined | 0 | 27,705,780,387 | 20% | ||
veritasvav | 0 | 77,311,713,953 | 100% | ||
tsoldovieri | 0 | 1,139,238,090 | 7.95% | ||
bachuslib | 0 | 20,729,441,447 | 100% | ||
steemitri | 0 | 149,866,710,727 | 100% | ||
helgapn | 0 | 6,664,618,817 | 100% | ||
iamphysical | 0 | 13,094,239,593 | 90% | ||
felixrodriguez | 0 | 628,412,634 | 5.56% | ||
leir | 0 | 2,097,653,663 | 50% | ||
azulear | 0 | 477,270,745 | 100% | ||
silviu93 | 0 | 3,658,366,856 | 15.91% | ||
jadabug | 0 | 1,404,340,552 | 1% | ||
crokkon | 0 | 55,083,321,308 | 50% | ||
accelerator | 0 | 11,916,701,842 | 0.79% | ||
espoem | 0 | 60,556,537,590 | 29.82% | ||
mcfarhat | 0 | 18,211,222,476 | 10.95% | ||
vishalsingh4997 | 0 | 108,834,750 | 15.91% | ||
loshcat | 0 | 1,157,055,984 | 100% | ||
pataty69 | 0 | 20,051,121,410 | 40% | ||
elear | 0 | 4,950,438,871 | 31.83% | ||
zoneboy | 0 | 5,425,508,609 | 31.83% | ||
carloserp-2000 | 0 | 32,903,490,835 | 100% | ||
carlos84 | 0 | 997,699,311 | 15.91% | ||
katamori | 0 | 974,848,647 | 13.6% | ||
utopian-io | 0 | 39,344,177,863,526 | 31.83% | ||
shammi | 0 | 5,731,429,187 | 90% | ||
jaff8 | 0 | 61,072,277,803 | 27.38% | ||
amestyj | 0 | 401,493,137 | 7.95% | ||
mcyusuf | 0 | 515,608,256 | 15.91% | ||
mvanyi | 0 | 3,691,832,419 | 100% | ||
cryptonized | 0 | 28,313,218,524 | 8% | ||
ivymalifred | 0 | 217,595,110 | 7.95% | ||
aussieninja | 0 | 6,026,199,071 | 15.91% | ||
ennyta | 0 | 124,927,296 | 7.95% | ||
vjap55 | 0 | 932,259,752 | 100% | ||
dedicatedguy | 0 | 62,238,290,263 | 100% | ||
amosbastian | 0 | 83,135,907,247 | 27.38% | ||
eliaschess333 | 0 | 1,376,178,522 | 7.95% | ||
ydavgonzalez | 0 | 283,531,757 | 0.79% | ||
asaj | 0 | 18,304,232,221 | 100% | ||
deliberator | 0 | 2,296,366,492 | 10% | ||
portugalcoin | 0 | 12,179,713,481 | 15% | ||
viperblckz | 0 | 5,170,549,464 | 100% | ||
vanarchist | 0 | 2,323,163,598 | 100% | ||
sargoon | 0 | 1,656,821,913 | 100% | ||
tobias-g | 0 | 121,385,236,888 | 43% | ||
yrmaleza | 0 | 68,740,594 | 7.95% | ||
miguelangel2801 | 0 | 84,392,849 | 7.95% | ||
didic | 0 | 30,564,668,033 | 25% | ||
emiliomoron | 0 | 277,329,857 | 7.95% | ||
dr-frankenstein | 0 | 9,282,080,918 | 50% | ||
bozz | 0 | 8,037,475,726 | 30% | ||
movement19 | 0 | 1,073,242,870 | 17% | ||
ulisesfl17 | 0 | 1,704,009,897 | 100% | ||
arac | 0 | 930,828,729 | 100% | ||
fego | 0 | 15,625,392,839 | 27.38% | ||
iamstan | 0 | 12,648,301,131 | 13% | ||
tomastonyperez | 0 | 1,479,981,162 | 7.95% | ||
elvigia | 0 | 1,373,222,003 | 7.95% | ||
adamada | 0 | 16,621,343,080 | 50% | ||
luiscd8a | 0 | 1,548,215,830 | 80% | ||
road2horizon | 0 | 7,661,299,218 | 10% | ||
statsexpert | 0 | 7,410,047,753 | 100% | ||
eniolw | 0 | 7,354,108,466 | 100% | ||
josedelacruz | 0 | 690,622,347 | 7.95% | ||
joseangelvs | 0 | 241,507,428 | 15.91% | ||
viannis | 0 | 213,488,888 | 7.95% | ||
flores39 | 0 | 401,734,570 | 100% | ||
enlighted | 0 | 155,907,890 | 40% | ||
kendallron | 0 | 219,239,476 | 15% | ||
erickyoussif | 0 | 654,284,885 | 15.91% | ||
trufflepig | 0 | 56,329,853,818 | 34% | ||
romeskie | 0 | 2,168,781,733 | 25% | ||
indayclara | 0 | 285,546,949 | 7.5% | ||
pinas | 0 | 452,540,569 | 50% | ||
anaestrada12 | 0 | 2,149,519,418 | 15.91% | ||
joelsegovia | 0 | 399,046,296 | 7.95% | ||
cryptouru | 0 | 1,769,826,640 | 8.5% | ||
jesusfl17 | 0 | 378,440,632 | 100% | ||
bflanagin | 0 | 2,694,286,321 | 15.91% | ||
ubaldonet | 0 | 3,197,949,921 | 70% | ||
bestofph | 0 | 6,392,466,368 | 15% | ||
dalz | 0 | 4,347,156,342 | 15.91% | ||
amart29 | 0 | 515,000,710 | 5.3% | ||
gorraudechan | 0 | 549,077,074 | 100% | ||
colrichate | 0 | 546,780,455 | 100% | ||
ocundhatfa | 0 | 536,712,096 | 100% | ||
coteemama | 0 | 533,957,662 | 100% | ||
luc.real | 0 | 226,202,683 | 100% | ||
nieloagranca | 0 | 4,297,656,348 | 8% | ||
elraberscer | 0 | 531,594,182 | 100% | ||
haleyy7qfwwhite | 0 | 553,292,476 | 100% | ||
cryptouno | 0 | 511,338,901 | 5% | ||
lupafilotaxia | 0 | 13,753,433,136 | 100% | ||
tbtek | 0 | 81,364,916 | 25% | ||
fran.frey | 0 | 248,842,004 | 7.95% | ||
meme.nation | 0 | 495,119,463 | 8.5% | ||
alaiza | 0 | 458,290,750 | 100% | ||
mops2e | 0 | 332,886,380 | 23.85% | ||
jrevilla | 0 | 71,501,024 | 15.91% | ||
isabelpereira | 0 | 4,790,959,682 | 8% | ||
swapsteem | 0 | 595,067,666 | 15.91% | ||
stem-espanol | 0 | 8,144,303,008 | 15.91% | ||
owllc | 0 | 62,124,885,478 | 10% | ||
sydneyik6by | 0 | 553,121,717 | 100% | ||
bhaski | 0 | 3,485,378,701 | 40% | ||
lapp | 0 | 460,749,136 | 100% | ||
steemtpistia | 0 | 460,241,968 | 100% | ||
crassipes | 0 | 460,479,367 | 100% | ||
aleestra | 0 | 317,034,616 | 15.91% | ||
hipilimer | 0 | 543,649,244 | 100% | ||
trandisptivi | 0 | 548,713,834 | 100% | ||
allisonab | 0 | 522,044,175 | 100% | ||
agrovision | 0 | 460,748,728 | 100% | ||
steemitweekly | 0 | 159,161,475 | 31.83% | ||
merlin7 | 0 | 3,742,780,773 | 0.1% | ||
steem-ua | 0 | 618,746,705,636 | 6.01% | ||
giulyfarci52 | 0 | 126,423,345 | 7.95% | ||
stmpay | 0 | 6,364,748,367 | 3.34% | ||
alex-hm | 0 | 1,017,717,674 | 50% | ||
wilmer14molina | 0 | 216,804,878 | 15.91% | ||
bitok.xyz | 0 | 1,354,283,516 | 5% | ||
bluesniper | 0 | 10,153,777,193 | 2.5% | ||
rewarding | 0 | 7,643,859,398 | 65.91% | ||
tipu.curator | 0 | 10,517,407,192 | 33% | ||
tony.montana | 0 | 1,844,827,934 | 5% | ||
jk6276.mons | 0 | 733,818,606 | 31.83% | ||
utopian.trail | 0 | 12,581,837,894 | 31.83% |
Thank you for your contribution @duski.harahap. After analyzing your tutorial we suggest the following points below: - Your tutorial is quite short for a good tutorial. We recommend you aim for capturing at least 2-3 concepts. - We suggest you put more features in your tutorial. - Your work with GIFs looks great, thanks for your work. Your contribution has been evaluated according to [Utopian policies and guidelines](https://join.utopian.io/guidelines), as well as a predefined set of questions pertaining to the category. To view those questions and the relevant answers related to your post, [click here](https://review.utopian.io/result/8/3-1-1-1-3-3-2-3-). ---- Need help? Chat with us on [Discord](https://discord.gg/uTyJkNm). [[utopian-moderator]](https://join.utopian.io/)
author | portugalcoin |
---|---|
permlink | re-duskiharahap-make-social-media-applications-with-flask-10-stream-tweets-and-feeds-for-each-user-1550384814196-20190217t113045993z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"users":["duski.harahap"],"links":["https://join.utopian.io/guidelines","https://review.utopian.io/result/8/3-1-1-1-3-3-2-3-","https://discord.gg/uTyJkNm","https://join.utopian.io/"],"app":"steemit/0.1"} |
created | 2019-02-17 11:30:45 |
last_update | 2019-02-17 11:30:45 |
depth | 1 |
children | 1 |
last_payout | 2019-02-24 11:30:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 10.294 HBD |
curator_payout_value | 3.272 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 791 |
author_reputation | 600,422,908,402,941 |
root_title | "Make social media applications with Flask #10: Stream tweets and Feeds for each user" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 79,994,769 |
net_rshares | 25,634,692,724,565 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
codingdefined | 0 | 27,975,115,778 | 20% | ||
espoem | 0 | 29,345,209,785 | 15% | ||
utopian-io | 0 | 25,376,160,680,867 | 17.66% | ||
jaff8 | 0 | 54,818,529,137 | 23.74% | ||
emrebeyler | 0 | 7,127,636 | 0.01% | ||
cheneats | 0 | 5,161,914,354 | 16.2% | ||
amosbastian | 0 | 73,784,218,111 | 23.74% | ||
nenya | 0 | 913,562,983 | 80% | ||
sudefteri | 0 | 5,430,555,331 | 100% | ||
reazuliqbal | 0 | 18,539,555,231 | 10% | ||
statsexpert | 0 | 7,145,724,567 | 100% | ||
holger.random | 0 | 1,427,358,790 | 100% | ||
nijn | 0 | 405,031,437 | 80% | ||
quenty | 0 | 3,645,872,324 | 60% | ||
curbot | 0 | 2,545,058,653 | 100% | ||
nimloth | 0 | 1,031,288,411 | 80% | ||
monster-inc | 0 | 6,520,077,521 | 100% | ||
yff | 0 | 19,685,364,329 | 100% | ||
curatortrail | 0 | 150,479,320 | 50% |
Thank you for your review, @portugalcoin! Keep up the good work!
author | utopian-io |
---|---|
permlink | re-re-duskiharahap-make-social-media-applications-with-flask-10-stream-tweets-and-feeds-for-each-user-1550384814196-20190217t113045993z-20190220t040536z |
category | utopian-io |
json_metadata | "{"app": "beem/0.20.17"}" |
created | 2019-02-20 04:05:36 |
last_update | 2019-02-20 04:05:36 |
depth | 2 |
children | 0 |
last_payout | 2019-02-27 04:05:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 64 |
author_reputation | 152,955,367,999,756 |
root_title | "Make social media applications with Flask #10: Stream tweets and Feeds for each user" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 80,128,357 |
net_rshares | 0 |
#### Hi @duski.harahap! Your post was upvoted by @steem-ua, new Steem dApp, using UserAuthority for algorithmic post curation! Your post is eligible for our upvote, thanks to our collaboration with @utopian-io! **Feel free to join our [@steem-ua Discord server](https://discord.gg/KpBNYGz)**
author | steem-ua |
---|---|
permlink | re-make-social-media-applications-with-flask-10-stream-tweets-and-feeds-for-each-user-1550384814196-20190217t151946z |
category | utopian-io |
json_metadata | "{"app": "beem/0.20.18"}" |
created | 2019-02-17 15:19:48 |
last_update | 2019-02-17 15:19:48 |
depth | 1 |
children | 0 |
last_payout | 2019-02-24 15:19:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 292 |
author_reputation | 23,214,230,978,060 |
root_title | "Make social media applications with Flask #10: Stream tweets and Feeds for each user" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 80,003,300 |
net_rshares | 0 |
Congratulations @duski.harahap! You have completed the following achievement on the Steem blockchain and have been rewarded with new badge(s) : <table><tr><td>https://steemitimages.com/60x70/http://steemitboard.com/@duski.harahap/votes.png?201902191006</td><td>You made more than 200 upvotes. Your next target is to reach 300 upvotes.</td></tr> </table> <sub>_[Click here to view your Board](https://steemitboard.com/@duski.harahap)_</sub> <sub>_If you no longer want to receive notifications, reply to this comment with the word_ `STOP`</sub> **Do not miss the last post from @steemitboard:** <table><tr><td><a href="https://steemit.com/valentine/@steemitboard/valentine-challenge-love-is-in-the-air"><img src="https://steemitimages.com/64x128/http://i.cubeupload.com/LvDzr5.png"></a></td><td><a href="https://steemit.com/valentine/@steemitboard/valentine-challenge-love-is-in-the-air">Valentine challenge - Love is in the air!</a></td></tr></table> > Support [SteemitBoard's project](https://steemit.com/@steemitboard)! **[Vote for its witness](https://v2.steemconnect.com/sign/account-witness-vote?witness=steemitboard&approve=1)** and **get one more award**!
author | steemitboard |
---|---|
permlink | steemitboard-notify-duskiharahap-20190219t110159000z |
category | utopian-io |
json_metadata | {"image":["https://steemitboard.com/img/notify.png"]} |
created | 2019-02-19 11:01:57 |
last_update | 2019-02-19 11:01:57 |
depth | 1 |
children | 0 |
last_payout | 2019-02-26 11:01:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1,168 |
author_reputation | 38,975,615,169,260 |
root_title | "Make social media applications with Flask #10: Stream tweets and Feeds for each user" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 80,088,479 |
net_rshares | 0 |
**Congratulations!** Your post has been selected as a daily Steemit truffle! It is listed on **rank 15** of all contributions awarded today. You can find the [TOP DAILY TRUFFLE PICKS HERE.](https://steemit.com/@trufflepig/daily-truffle-picks-2019-02-17) I upvoted your contribution because to my mind your post is at least **8 SBD** worth and should receive **109 votes**. It's now up to the lovely Steemit community to make this come true. I am `TrufflePig`, an Artificial Intelligence Bot that helps minnows and content curators using Machine Learning. If you are curious how I select content, [you can find an explanation here!](https://steemit.com/steemit/@trufflepig/weekly-truffle-updates-2019-07) Have a nice day and sincerely yours,  *`TrufflePig`*
author | trufflepig |
---|---|
permlink | re-make-social-media-applications-with-flask-10-stream-tweets-and-feeds-for-each-user-1550384814196-20190217t170642 |
category | utopian-io |
json_metadata | "" |
created | 2019-02-17 17:06:45 |
last_update | 2019-02-17 17:06:45 |
depth | 1 |
children | 0 |
last_payout | 2019-02-24 17:06:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 884 |
author_reputation | 21,266,577,867,113 |
root_title | "Make social media applications with Flask #10: Stream tweets and Feeds for each user" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 80,007,449 |
net_rshares | 0 |
Hey, @duski.harahap! **Thanks for contributing on Utopian**. Weβre already looking forward to your next contribution! **Get higher incentives and support Utopian.io!** Simply set @utopian.pay as a 5% (or higher) payout beneficiary on your contribution post (via [SteemPlus](https://chrome.google.com/webstore/detail/steemplus/mjbkjgcplmaneajhcbegoffkedeankaj?hl=en) or [Steeditor](https://steeditor.app)). **Want to chat? Join us on Discord https://discord.gg/h52nFrV.** <a href='https://steemconnect.com/sign/account-witness-vote?witness=utopian-io&approve=1'>Vote for Utopian Witness!</a>
author | utopian-io |
---|---|
permlink | re-make-social-media-applications-with-flask-10-stream-tweets-and-feeds-for-each-user-1550384814196-20190218t043607z |
category | utopian-io |
json_metadata | "{"app": "beem/0.20.17"}" |
created | 2019-02-18 04:36:09 |
last_update | 2019-02-18 04:36:09 |
depth | 1 |
children | 0 |
last_payout | 2019-02-25 04:36:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 595 |
author_reputation | 152,955,367,999,756 |
root_title | "Make social media applications with Flask #10: Stream tweets and Feeds for each user" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 80,030,198 |
net_rshares | 0 |