├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── app.py ├── get_text.py ├── instructions.txt ├── news_utils.py ├── requirements.txt ├── scraper.py ├── static ├── js │ ├── landing.js │ ├── register.js │ └── script.js ├── landing.css ├── landing1.jpg ├── landing2.jpg ├── landing3.jpg ├── loginreg.css ├── social-media.png └── styles.css └── templates ├── emails.html ├── forgotpassword.html ├── instagram.html ├── landing.html ├── login.html ├── register.html ├── resetpassword.html ├── tweet_form.html └── user_recurring_posts.html /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakethSripada/Flask-SocialMedia-Automation/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | secret.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakethSripada/Flask-SocialMedia-Automation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakethSripada/Flask-SocialMedia-Automation/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakethSripada/Flask-SocialMedia-Automation/HEAD/app.py -------------------------------------------------------------------------------- /get_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakethSripada/Flask-SocialMedia-Automation/HEAD/get_text.py -------------------------------------------------------------------------------- /instructions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakethSripada/Flask-SocialMedia-Automation/HEAD/instructions.txt -------------------------------------------------------------------------------- /news_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakethSripada/Flask-SocialMedia-Automation/HEAD/news_utils.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakethSripada/Flask-SocialMedia-Automation/HEAD/requirements.txt -------------------------------------------------------------------------------- /scraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakethSripada/Flask-SocialMedia-Automation/HEAD/scraper.py -------------------------------------------------------------------------------- /static/js/landing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakethSripada/Flask-SocialMedia-Automation/HEAD/static/js/landing.js -------------------------------------------------------------------------------- /static/js/register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakethSripada/Flask-SocialMedia-Automation/HEAD/static/js/register.js -------------------------------------------------------------------------------- /static/js/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakethSripada/Flask-SocialMedia-Automation/HEAD/static/js/script.js -------------------------------------------------------------------------------- /static/landing.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakethSripada/Flask-SocialMedia-Automation/HEAD/static/landing.css -------------------------------------------------------------------------------- /static/landing1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakethSripada/Flask-SocialMedia-Automation/HEAD/static/landing1.jpg -------------------------------------------------------------------------------- /static/landing2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakethSripada/Flask-SocialMedia-Automation/HEAD/static/landing2.jpg -------------------------------------------------------------------------------- /static/landing3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakethSripada/Flask-SocialMedia-Automation/HEAD/static/landing3.jpg -------------------------------------------------------------------------------- /static/loginreg.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakethSripada/Flask-SocialMedia-Automation/HEAD/static/loginreg.css -------------------------------------------------------------------------------- /static/social-media.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakethSripada/Flask-SocialMedia-Automation/HEAD/static/social-media.png -------------------------------------------------------------------------------- /static/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakethSripada/Flask-SocialMedia-Automation/HEAD/static/styles.css -------------------------------------------------------------------------------- /templates/emails.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakethSripada/Flask-SocialMedia-Automation/HEAD/templates/emails.html -------------------------------------------------------------------------------- /templates/forgotpassword.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakethSripada/Flask-SocialMedia-Automation/HEAD/templates/forgotpassword.html -------------------------------------------------------------------------------- /templates/instagram.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakethSripada/Flask-SocialMedia-Automation/HEAD/templates/instagram.html -------------------------------------------------------------------------------- /templates/landing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakethSripada/Flask-SocialMedia-Automation/HEAD/templates/landing.html -------------------------------------------------------------------------------- /templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakethSripada/Flask-SocialMedia-Automation/HEAD/templates/login.html -------------------------------------------------------------------------------- /templates/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakethSripada/Flask-SocialMedia-Automation/HEAD/templates/register.html -------------------------------------------------------------------------------- /templates/resetpassword.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakethSripada/Flask-SocialMedia-Automation/HEAD/templates/resetpassword.html -------------------------------------------------------------------------------- /templates/tweet_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakethSripada/Flask-SocialMedia-Automation/HEAD/templates/tweet_form.html -------------------------------------------------------------------------------- /templates/user_recurring_posts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakethSripada/Flask-SocialMedia-Automation/HEAD/templates/user_recurring_posts.html --------------------------------------------------------------------------------