├── Amazon-Prime-Video-Selenium-Scrapper-Final ├── .idea │ ├── .gitignore │ ├── Amazon-Prime-Video-Selenium-Scrapper-Final.iml │ ├── inspectionProfiles │ │ └── profiles_settings.xml │ ├── misc.xml │ ├── modules.xml │ └── vcs.xml ├── 6to7.png ├── PrimeVid.csv ├── above8.png ├── below6.png └── main.py ├── Bitcoin-Cryptocurrency-Price-Visualizer-Final ├── .ipynb_checkpoints │ ├── BTC-Visualizer-checkpoint.ipynb │ └── Untitled-checkpoint.ipynb ├── BCHARTS-BITSTAMPUSD.pkl ├── BCHARTS-COINBASEUSD.pkl ├── BCHARTS-ITBITUSD.pkl ├── BCHARTS-KRAKENUSD.pkl ├── BTC-Visualizer.ipynb └── Untitled.ipynb ├── COVID-19-Visualization-Final ├── .idea │ ├── .gitignore │ ├── COVID-19-Dashboard.iml │ ├── inspectionProfiles │ │ └── profiles_settings.xml │ ├── misc.xml │ ├── modules.xml │ └── vcs.xml ├── .ipynb_checkpoints │ ├── COVID-19 Notebook-checkpoint.ipynb │ └── Covid-19 Visualization-checkpoint.ipynb ├── COVID-19 Notebook.ipynb └── Covid-19 Visualization.ipynb ├── Flask-Weather-Dashboard-Final ├── .idea │ ├── Flask-Weather-Dashboard-Final.iml │ ├── inspectionProfiles │ │ └── profiles_settings.xml │ ├── misc.xml │ ├── modules.xml │ ├── vcs.xml │ └── workspace.xml ├── app.py ├── config.ini ├── static │ └── styles │ │ ├── home.css │ │ └── results.css └── templates │ ├── home.html │ └── results.html ├── Handwriting-Digit-Recognition-Final ├── .ipynb_checkpoints │ ├── Analysis-checkpoint.ipynb │ └── Untitled-checkpoint.ipynb ├── Analysis.ipynb └── Untitled.ipynb ├── Predicting-Stock-Prices-Final ├── .ipynb_checkpoints │ ├── Predicting Stock Prices-checkpoint.ipynb │ └── Untitled-checkpoint.ipynb ├── Predicting Stock Prices.ipynb └── Untitled.ipynb ├── README.md ├── Sentiment-Analysis-Stock-News-Final ├── .idea │ ├── .gitignore │ ├── Sentiment-Analysis-Stock-News-Final.iml │ ├── inspectionProfiles │ │ └── profiles_settings.xml │ ├── misc.xml │ ├── modules.xml │ └── vcs.xml └── main.py ├── Speech-Recognition-Python-Final ├── .idea │ ├── .gitignore │ ├── Speech-Recognition-Python-Final.iml │ ├── inspectionProfiles │ │ └── profiles_settings.xml │ ├── misc.xml │ ├── modules.xml │ └── vcs.xml ├── app.py ├── static │ └── styles │ │ └── index.css └── templates │ └── index.html ├── Trump-Twitter-Analysis-Final ├── .idea │ ├── .gitignore │ ├── Trump-Twitter-Analysis-Final.iml │ ├── inspectionProfiles │ │ └── profiles_settings.xml │ ├── misc.xml │ ├── modules.xml │ └── vcs.xml ├── .ipynb_checkpoints │ ├── Trump-Twitter-Notebook-checkpoint.ipynb │ └── Untitled-checkpoint.ipynb ├── Trump-Twitter-Notebook.ipynb └── Untitled.ipynb └── US-President-Polling-Dashboard ├── .idea ├── .gitignore ├── US-President-Polling-Dashboard.iml ├── inspectionProfiles │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── __pycache__ └── data.cpython-37.pyc ├── app.py ├── data.py ├── static └── styles │ └── index.css └── templates └── index.html /Amazon-Prime-Video-Selenium-Scrapper-Final/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /workspace.xml 3 | -------------------------------------------------------------------------------- /Amazon-Prime-Video-Selenium-Scrapper-Final/.idea/Amazon-Prime-Video-Selenium-Scrapper-Final.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodex-Me/Projects/HEAD/Amazon-Prime-Video-Selenium-Scrapper-Final/.idea/Amazon-Prime-Video-Selenium-Scrapper-Final.iml -------------------------------------------------------------------------------- /Amazon-Prime-Video-Selenium-Scrapper-Final/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodex-Me/Projects/HEAD/Amazon-Prime-Video-Selenium-Scrapper-Final/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /Amazon-Prime-Video-Selenium-Scrapper-Final/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodex-Me/Projects/HEAD/Amazon-Prime-Video-Selenium-Scrapper-Final/.idea/misc.xml -------------------------------------------------------------------------------- /Amazon-Prime-Video-Selenium-Scrapper-Final/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodex-Me/Projects/HEAD/Amazon-Prime-Video-Selenium-Scrapper-Final/.idea/modules.xml -------------------------------------------------------------------------------- /Amazon-Prime-Video-Selenium-Scrapper-Final/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodex-Me/Projects/HEAD/Amazon-Prime-Video-Selenium-Scrapper-Final/.idea/vcs.xml -------------------------------------------------------------------------------- /Amazon-Prime-Video-Selenium-Scrapper-Final/6to7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodex-Me/Projects/HEAD/Amazon-Prime-Video-Selenium-Scrapper-Final/6to7.png -------------------------------------------------------------------------------- /Amazon-Prime-Video-Selenium-Scrapper-Final/PrimeVid.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodex-Me/Projects/HEAD/Amazon-Prime-Video-Selenium-Scrapper-Final/PrimeVid.csv -------------------------------------------------------------------------------- /Amazon-Prime-Video-Selenium-Scrapper-Final/above8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodex-Me/Projects/HEAD/Amazon-Prime-Video-Selenium-Scrapper-Final/above8.png -------------------------------------------------------------------------------- /Amazon-Prime-Video-Selenium-Scrapper-Final/below6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodex-Me/Projects/HEAD/Amazon-Prime-Video-Selenium-Scrapper-Final/below6.png -------------------------------------------------------------------------------- /Amazon-Prime-Video-Selenium-Scrapper-Final/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodex-Me/Projects/HEAD/Amazon-Prime-Video-Selenium-Scrapper-Final/main.py -------------------------------------------------------------------------------- /Bitcoin-Cryptocurrency-Price-Visualizer-Final/.ipynb_checkpoints/BTC-Visualizer-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodex-Me/Projects/HEAD/Bitcoin-Cryptocurrency-Price-Visualizer-Final/.ipynb_checkpoints/BTC-Visualizer-checkpoint.ipynb -------------------------------------------------------------------------------- /Bitcoin-Cryptocurrency-Price-Visualizer-Final/.ipynb_checkpoints/Untitled-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodex-Me/Projects/HEAD/Bitcoin-Cryptocurrency-Price-Visualizer-Final/.ipynb_checkpoints/Untitled-checkpoint.ipynb -------------------------------------------------------------------------------- /Bitcoin-Cryptocurrency-Price-Visualizer-Final/BCHARTS-BITSTAMPUSD.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodex-Me/Projects/HEAD/Bitcoin-Cryptocurrency-Price-Visualizer-Final/BCHARTS-BITSTAMPUSD.pkl -------------------------------------------------------------------------------- /Bitcoin-Cryptocurrency-Price-Visualizer-Final/BCHARTS-COINBASEUSD.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodex-Me/Projects/HEAD/Bitcoin-Cryptocurrency-Price-Visualizer-Final/BCHARTS-COINBASEUSD.pkl -------------------------------------------------------------------------------- /Bitcoin-Cryptocurrency-Price-Visualizer-Final/BCHARTS-ITBITUSD.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodex-Me/Projects/HEAD/Bitcoin-Cryptocurrency-Price-Visualizer-Final/BCHARTS-ITBITUSD.pkl -------------------------------------------------------------------------------- /Bitcoin-Cryptocurrency-Price-Visualizer-Final/BCHARTS-KRAKENUSD.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodex-Me/Projects/HEAD/Bitcoin-Cryptocurrency-Price-Visualizer-Final/BCHARTS-KRAKENUSD.pkl -------------------------------------------------------------------------------- /Bitcoin-Cryptocurrency-Price-Visualizer-Final/BTC-Visualizer.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodex-Me/Projects/HEAD/Bitcoin-Cryptocurrency-Price-Visualizer-Final/BTC-Visualizer.ipynb -------------------------------------------------------------------------------- /Bitcoin-Cryptocurrency-Price-Visualizer-Final/Untitled.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodex-Me/Projects/HEAD/Bitcoin-Cryptocurrency-Price-Visualizer-Final/Untitled.ipynb -------------------------------------------------------------------------------- /COVID-19-Visualization-Final/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /workspace.xml -------------------------------------------------------------------------------- /COVID-19-Visualization-Final/.idea/COVID-19-Dashboard.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodex-Me/Projects/HEAD/COVID-19-Visualization-Final/.idea/COVID-19-Dashboard.iml -------------------------------------------------------------------------------- /COVID-19-Visualization-Final/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodex-Me/Projects/HEAD/COVID-19-Visualization-Final/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /COVID-19-Visualization-Final/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodex-Me/Projects/HEAD/COVID-19-Visualization-Final/.idea/misc.xml -------------------------------------------------------------------------------- /COVID-19-Visualization-Final/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodex-Me/Projects/HEAD/COVID-19-Visualization-Final/.idea/modules.xml -------------------------------------------------------------------------------- /COVID-19-Visualization-Final/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodex-Me/Projects/HEAD/COVID-19-Visualization-Final/.idea/vcs.xml -------------------------------------------------------------------------------- /COVID-19-Visualization-Final/.ipynb_checkpoints/COVID-19 Notebook-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodex-Me/Projects/HEAD/COVID-19-Visualization-Final/.ipynb_checkpoints/COVID-19 Notebook-checkpoint.ipynb -------------------------------------------------------------------------------- /COVID-19-Visualization-Final/.ipynb_checkpoints/Covid-19 Visualization-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodex-Me/Projects/HEAD/COVID-19-Visualization-Final/.ipynb_checkpoints/Covid-19 Visualization-checkpoint.ipynb -------------------------------------------------------------------------------- /COVID-19-Visualization-Final/COVID-19 Notebook.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodex-Me/Projects/HEAD/COVID-19-Visualization-Final/COVID-19 Notebook.ipynb -------------------------------------------------------------------------------- /COVID-19-Visualization-Final/Covid-19 Visualization.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodex-Me/Projects/HEAD/COVID-19-Visualization-Final/Covid-19 Visualization.ipynb -------------------------------------------------------------------------------- /Flask-Weather-Dashboard-Final/.idea/Flask-Weather-Dashboard-Final.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodex-Me/Projects/HEAD/Flask-Weather-Dashboard-Final/.idea/Flask-Weather-Dashboard-Final.iml -------------------------------------------------------------------------------- /Flask-Weather-Dashboard-Final/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodex-Me/Projects/HEAD/Flask-Weather-Dashboard-Final/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /Flask-Weather-Dashboard-Final/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodex-Me/Projects/HEAD/Flask-Weather-Dashboard-Final/.idea/misc.xml -------------------------------------------------------------------------------- /Flask-Weather-Dashboard-Final/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodex-Me/Projects/HEAD/Flask-Weather-Dashboard-Final/.idea/modules.xml -------------------------------------------------------------------------------- /Flask-Weather-Dashboard-Final/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodex-Me/Projects/HEAD/Flask-Weather-Dashboard-Final/.idea/vcs.xml -------------------------------------------------------------------------------- /Flask-Weather-Dashboard-Final/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodex-Me/Projects/HEAD/Flask-Weather-Dashboard-Final/.idea/workspace.xml -------------------------------------------------------------------------------- /Flask-Weather-Dashboard-Final/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodex-Me/Projects/HEAD/Flask-Weather-Dashboard-Final/app.py -------------------------------------------------------------------------------- /Flask-Weather-Dashboard-Final/config.ini: -------------------------------------------------------------------------------- 1 | [openweathermap] 2 | api=3c195f88f2b5332c421ae8dd55ae467e -------------------------------------------------------------------------------- /Flask-Weather-Dashboard-Final/static/styles/home.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodex-Me/Projects/HEAD/Flask-Weather-Dashboard-Final/static/styles/home.css -------------------------------------------------------------------------------- /Flask-Weather-Dashboard-Final/static/styles/results.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodex-Me/Projects/HEAD/Flask-Weather-Dashboard-Final/static/styles/results.css -------------------------------------------------------------------------------- /Flask-Weather-Dashboard-Final/templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodex-Me/Projects/HEAD/Flask-Weather-Dashboard-Final/templates/home.html -------------------------------------------------------------------------------- /Flask-Weather-Dashboard-Final/templates/results.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodex-Me/Projects/HEAD/Flask-Weather-Dashboard-Final/templates/results.html -------------------------------------------------------------------------------- /Handwriting-Digit-Recognition-Final/.ipynb_checkpoints/Analysis-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodex-Me/Projects/HEAD/Handwriting-Digit-Recognition-Final/.ipynb_checkpoints/Analysis-checkpoint.ipynb -------------------------------------------------------------------------------- /Handwriting-Digit-Recognition-Final/.ipynb_checkpoints/Untitled-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodex-Me/Projects/HEAD/Handwriting-Digit-Recognition-Final/.ipynb_checkpoints/Untitled-checkpoint.ipynb -------------------------------------------------------------------------------- /Handwriting-Digit-Recognition-Final/Analysis.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodex-Me/Projects/HEAD/Handwriting-Digit-Recognition-Final/Analysis.ipynb -------------------------------------------------------------------------------- /Handwriting-Digit-Recognition-Final/Untitled.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodex-Me/Projects/HEAD/Handwriting-Digit-Recognition-Final/Untitled.ipynb -------------------------------------------------------------------------------- /Predicting-Stock-Prices-Final/.ipynb_checkpoints/Predicting Stock Prices-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodex-Me/Projects/HEAD/Predicting-Stock-Prices-Final/.ipynb_checkpoints/Predicting Stock Prices-checkpoint.ipynb -------------------------------------------------------------------------------- /Predicting-Stock-Prices-Final/.ipynb_checkpoints/Untitled-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodex-Me/Projects/HEAD/Predicting-Stock-Prices-Final/.ipynb_checkpoints/Untitled-checkpoint.ipynb -------------------------------------------------------------------------------- /Predicting-Stock-Prices-Final/Predicting Stock Prices.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodex-Me/Projects/HEAD/Predicting-Stock-Prices-Final/Predicting Stock Prices.ipynb -------------------------------------------------------------------------------- /Predicting-Stock-Prices-Final/Untitled.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodex-Me/Projects/HEAD/Predicting-Stock-Prices-Final/Untitled.ipynb -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodex-Me/Projects/HEAD/README.md -------------------------------------------------------------------------------- /Sentiment-Analysis-Stock-News-Final/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /workspace.xml -------------------------------------------------------------------------------- /Sentiment-Analysis-Stock-News-Final/.idea/Sentiment-Analysis-Stock-News-Final.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodex-Me/Projects/HEAD/Sentiment-Analysis-Stock-News-Final/.idea/Sentiment-Analysis-Stock-News-Final.iml -------------------------------------------------------------------------------- /Sentiment-Analysis-Stock-News-Final/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodex-Me/Projects/HEAD/Sentiment-Analysis-Stock-News-Final/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /Sentiment-Analysis-Stock-News-Final/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodex-Me/Projects/HEAD/Sentiment-Analysis-Stock-News-Final/.idea/misc.xml -------------------------------------------------------------------------------- /Sentiment-Analysis-Stock-News-Final/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodex-Me/Projects/HEAD/Sentiment-Analysis-Stock-News-Final/.idea/modules.xml -------------------------------------------------------------------------------- /Sentiment-Analysis-Stock-News-Final/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodex-Me/Projects/HEAD/Sentiment-Analysis-Stock-News-Final/.idea/vcs.xml -------------------------------------------------------------------------------- /Sentiment-Analysis-Stock-News-Final/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodex-Me/Projects/HEAD/Sentiment-Analysis-Stock-News-Final/main.py -------------------------------------------------------------------------------- /Speech-Recognition-Python-Final/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /workspace.xml -------------------------------------------------------------------------------- /Speech-Recognition-Python-Final/.idea/Speech-Recognition-Python-Final.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodex-Me/Projects/HEAD/Speech-Recognition-Python-Final/.idea/Speech-Recognition-Python-Final.iml -------------------------------------------------------------------------------- /Speech-Recognition-Python-Final/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodex-Me/Projects/HEAD/Speech-Recognition-Python-Final/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /Speech-Recognition-Python-Final/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodex-Me/Projects/HEAD/Speech-Recognition-Python-Final/.idea/misc.xml -------------------------------------------------------------------------------- /Speech-Recognition-Python-Final/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodex-Me/Projects/HEAD/Speech-Recognition-Python-Final/.idea/modules.xml -------------------------------------------------------------------------------- /Speech-Recognition-Python-Final/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodex-Me/Projects/HEAD/Speech-Recognition-Python-Final/.idea/vcs.xml -------------------------------------------------------------------------------- /Speech-Recognition-Python-Final/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodex-Me/Projects/HEAD/Speech-Recognition-Python-Final/app.py -------------------------------------------------------------------------------- /Speech-Recognition-Python-Final/static/styles/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodex-Me/Projects/HEAD/Speech-Recognition-Python-Final/static/styles/index.css -------------------------------------------------------------------------------- /Speech-Recognition-Python-Final/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodex-Me/Projects/HEAD/Speech-Recognition-Python-Final/templates/index.html -------------------------------------------------------------------------------- /Trump-Twitter-Analysis-Final/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /workspace.xml 3 | -------------------------------------------------------------------------------- /Trump-Twitter-Analysis-Final/.idea/Trump-Twitter-Analysis-Final.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodex-Me/Projects/HEAD/Trump-Twitter-Analysis-Final/.idea/Trump-Twitter-Analysis-Final.iml -------------------------------------------------------------------------------- /Trump-Twitter-Analysis-Final/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodex-Me/Projects/HEAD/Trump-Twitter-Analysis-Final/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /Trump-Twitter-Analysis-Final/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodex-Me/Projects/HEAD/Trump-Twitter-Analysis-Final/.idea/misc.xml -------------------------------------------------------------------------------- /Trump-Twitter-Analysis-Final/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodex-Me/Projects/HEAD/Trump-Twitter-Analysis-Final/.idea/modules.xml -------------------------------------------------------------------------------- /Trump-Twitter-Analysis-Final/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodex-Me/Projects/HEAD/Trump-Twitter-Analysis-Final/.idea/vcs.xml -------------------------------------------------------------------------------- /Trump-Twitter-Analysis-Final/.ipynb_checkpoints/Trump-Twitter-Notebook-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodex-Me/Projects/HEAD/Trump-Twitter-Analysis-Final/.ipynb_checkpoints/Trump-Twitter-Notebook-checkpoint.ipynb -------------------------------------------------------------------------------- /Trump-Twitter-Analysis-Final/.ipynb_checkpoints/Untitled-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodex-Me/Projects/HEAD/Trump-Twitter-Analysis-Final/.ipynb_checkpoints/Untitled-checkpoint.ipynb -------------------------------------------------------------------------------- /Trump-Twitter-Analysis-Final/Trump-Twitter-Notebook.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodex-Me/Projects/HEAD/Trump-Twitter-Analysis-Final/Trump-Twitter-Notebook.ipynb -------------------------------------------------------------------------------- /Trump-Twitter-Analysis-Final/Untitled.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodex-Me/Projects/HEAD/Trump-Twitter-Analysis-Final/Untitled.ipynb -------------------------------------------------------------------------------- /US-President-Polling-Dashboard/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /workspace.xml 3 | -------------------------------------------------------------------------------- /US-President-Polling-Dashboard/.idea/US-President-Polling-Dashboard.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodex-Me/Projects/HEAD/US-President-Polling-Dashboard/.idea/US-President-Polling-Dashboard.iml -------------------------------------------------------------------------------- /US-President-Polling-Dashboard/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodex-Me/Projects/HEAD/US-President-Polling-Dashboard/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /US-President-Polling-Dashboard/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodex-Me/Projects/HEAD/US-President-Polling-Dashboard/.idea/misc.xml -------------------------------------------------------------------------------- /US-President-Polling-Dashboard/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodex-Me/Projects/HEAD/US-President-Polling-Dashboard/.idea/modules.xml -------------------------------------------------------------------------------- /US-President-Polling-Dashboard/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodex-Me/Projects/HEAD/US-President-Polling-Dashboard/.idea/vcs.xml -------------------------------------------------------------------------------- /US-President-Polling-Dashboard/__pycache__/data.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodex-Me/Projects/HEAD/US-President-Polling-Dashboard/__pycache__/data.cpython-37.pyc -------------------------------------------------------------------------------- /US-President-Polling-Dashboard/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodex-Me/Projects/HEAD/US-President-Polling-Dashboard/app.py -------------------------------------------------------------------------------- /US-President-Polling-Dashboard/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodex-Me/Projects/HEAD/US-President-Polling-Dashboard/data.py -------------------------------------------------------------------------------- /US-President-Polling-Dashboard/static/styles/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodex-Me/Projects/HEAD/US-President-Polling-Dashboard/static/styles/index.css -------------------------------------------------------------------------------- /US-President-Polling-Dashboard/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodex-Me/Projects/HEAD/US-President-Polling-Dashboard/templates/index.html --------------------------------------------------------------------------------