Twitter clone in python/flask, with MongoDB database
Find a file
Socks fe108d1a35 Initial Commit
Creation of
- post_status(), to post a status
- user_posts_by_username(username) to get posts for a specific account, given username
- user_posts(account_object) to get posts for a specific account, given user ID
- timeline_for_user(username) to get 'following' timeline for a user, given username
- global_timeline() to get all posts
- post_details(post_id) to get post details, given post ID
- delete_post(post_id) to 'delete' post, sets post as hidden
2018-02-16 05:18:39 +00:00
backend Initial Commit 2018-02-16 05:18:39 +00:00
dev Created timeline.py to manage posts, fixdb.py to add missing db entries, layout.html for pages to extend (containing navbar), separated login.html and register.html, created profile.html page 2018-01-30 03:58:05 +00:00
static Initial Commit 2018-01-12 12:45:52 +00:00
templates Initial Commit 2018-02-16 05:18:39 +00:00
.gitignore Initial Commit 2018-01-12 12:46:19 +00:00
config.json Initial Commit 2018-01-12 12:45:52 +00:00
Tweeder.py Added profile view, cookie support for accounts 2018-01-30 04:00:00 +00:00