├── Data ├── Customers_old.xlsx ├── DropNaSample.xlsx ├── Excel_Files_to_Consolidate.zip ├── Seaborn │ ├── file.txt │ └── supermarket_sales.xlsx ├── ThisIsDatasetRepo.txt ├── customers_unique.xlsx ├── dup_columns.xlsx ├── educational_data.xlsx ├── educational_data_v2.xlsx ├── martData.xlsx ├── mart_linePlot.xlsx ├── mart_train_sample.xlsx ├── monthly_price.xlsx ├── org_details.xlsx ├── price_list_2017.xlsx ├── price_list_2018.xlsx ├── price_list_2019.xlsx ├── price_list_2020.xlsx ├── price_list_2021.xlsx ├── remove_dup.xlsx ├── story.html └── supermarket_sales_data.xlsx ├── README.md └── Scripts ├── Matplotlib └── AllTheScripts.txt ├── Pandas ├── AllTheScripts.txt ├── Combining DataFrames Using Concatenat or Append.py ├── Combining DataFrames Using Join or Merge.py ├── DataFrameImports.py ├── Missing_Value_Treatment.py ├── Pandas - GroupBy.py ├── aggregation_functions.py ├── descriptive_statistics.py ├── eq_shallow_deep_copy.py ├── import_export_csv_excel.py ├── merging_multiple_dataframes.py ├── read_csv_flat_files.py ├── remove_dup_columns.py └── sorting.py ├── Seaborn ├── 1.Seaborn_Introduction.py ├── 10.Seaborn_KDEplot.py ├── 11.Seaborn_RugPlot.py ├── 12.Seaborn_ECDFplot.py ├── 13.Seaorn_DisPlot.py ├── 14.Seaorn_JointPlot.py ├── 15.Seaorn_PairPlot.py ├── 16.Seaborn_ScatterPlot.py ├── 17.Seaborn_LinePlot.py ├── 18.Seaborn_RelPlo.py ├── 19.Seaborn_RegPlot.py ├── 2.Seaborn_CountPlot.py ├── 20.Seaborn_HeatMap.py ├── 21.Seaborn_ClusterMap.py ├── 22.Seaborn_FacetGrid.py ├── 3.Seaborn_BarPlot.py ├── 4.Seaborn_BoxPlot.py ├── 5.Seaborn_ViolinPlot.py ├── 6.Seaborn_StripPlot.py ├── 7.Seaborn_SwarmPlot.py ├── 8.Seaborn_CatPlot.py ├── 9.Seaborn_HistPlot.py ├── AllTheScriptsHere.txt └── SEABORN_ALL_IN_ONE.py ├── Simplify it with Python ├── AllTheScriptsHere.txt ├── Consolidate Multiple Excel Files Into One.py ├── Consolidating_Multiple_Sheets_Form_Multiple_Files.py ├── Importing_Multiple_Sheets_From_One_ExcelFile_Inverse.py ├── Scan_Through_All_the_Files_and_Folders_Search_String.py ├── SearchFile_Tutorial.py ├── automate_excel_with_python.py └── multiple_excel_files_into_one_but_diff_sheets.py └── WebScraping ├── BooksWeb_Scraping_Multiple_Pages.py ├── BooksWeb_Scraping_Single_Page.py ├── Insta_hastag_image_scraping.py ├── TableScraping.py ├── WS_Navigation.py ├── WS_Tags.py ├── WS_other_objects.py ├── WebScraping_BasicPage.py ├── amazon_scraping.py ├── rotten_tomattoes_live.py ├── scrap_fb_friends_list.py ├── scrap_in_five_minutes.py ├── selenium_accessing_different_browser_elements.py ├── testing.txt └── twitter_scraping_live.py /Data/Customers_old.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LEARNEREA/Python/HEAD/Data/Customers_old.xlsx -------------------------------------------------------------------------------- /Data/DropNaSample.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LEARNEREA/Python/HEAD/Data/DropNaSample.xlsx -------------------------------------------------------------------------------- /Data/Excel_Files_to_Consolidate.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LEARNEREA/Python/HEAD/Data/Excel_Files_to_Consolidate.zip -------------------------------------------------------------------------------- /Data/Seaborn/file.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Data/Seaborn/supermarket_sales.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LEARNEREA/Python/HEAD/Data/Seaborn/supermarket_sales.xlsx -------------------------------------------------------------------------------- /Data/ThisIsDatasetRepo.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Data/customers_unique.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LEARNEREA/Python/HEAD/Data/customers_unique.xlsx -------------------------------------------------------------------------------- /Data/dup_columns.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LEARNEREA/Python/HEAD/Data/dup_columns.xlsx -------------------------------------------------------------------------------- /Data/educational_data.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LEARNEREA/Python/HEAD/Data/educational_data.xlsx -------------------------------------------------------------------------------- /Data/educational_data_v2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LEARNEREA/Python/HEAD/Data/educational_data_v2.xlsx -------------------------------------------------------------------------------- /Data/martData.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LEARNEREA/Python/HEAD/Data/martData.xlsx -------------------------------------------------------------------------------- /Data/mart_linePlot.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LEARNEREA/Python/HEAD/Data/mart_linePlot.xlsx -------------------------------------------------------------------------------- /Data/mart_train_sample.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LEARNEREA/Python/HEAD/Data/mart_train_sample.xlsx -------------------------------------------------------------------------------- /Data/monthly_price.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LEARNEREA/Python/HEAD/Data/monthly_price.xlsx -------------------------------------------------------------------------------- /Data/org_details.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LEARNEREA/Python/HEAD/Data/org_details.xlsx -------------------------------------------------------------------------------- /Data/price_list_2017.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LEARNEREA/Python/HEAD/Data/price_list_2017.xlsx -------------------------------------------------------------------------------- /Data/price_list_2018.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LEARNEREA/Python/HEAD/Data/price_list_2018.xlsx -------------------------------------------------------------------------------- /Data/price_list_2019.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LEARNEREA/Python/HEAD/Data/price_list_2019.xlsx -------------------------------------------------------------------------------- /Data/price_list_2020.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LEARNEREA/Python/HEAD/Data/price_list_2020.xlsx -------------------------------------------------------------------------------- /Data/price_list_2021.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LEARNEREA/Python/HEAD/Data/price_list_2021.xlsx -------------------------------------------------------------------------------- /Data/remove_dup.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LEARNEREA/Python/HEAD/Data/remove_dup.xlsx -------------------------------------------------------------------------------- /Data/story.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LEARNEREA/Python/HEAD/Data/story.html -------------------------------------------------------------------------------- /Data/supermarket_sales_data.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LEARNEREA/Python/HEAD/Data/supermarket_sales_data.xlsx -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Python -------------------------------------------------------------------------------- /Scripts/Matplotlib/AllTheScripts.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Scripts/Pandas/AllTheScripts.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Scripts/Pandas/Combining DataFrames Using Concatenat or Append.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LEARNEREA/Python/HEAD/Scripts/Pandas/Combining DataFrames Using Concatenat or Append.py -------------------------------------------------------------------------------- /Scripts/Pandas/Combining DataFrames Using Join or Merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LEARNEREA/Python/HEAD/Scripts/Pandas/Combining DataFrames Using Join or Merge.py -------------------------------------------------------------------------------- /Scripts/Pandas/DataFrameImports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LEARNEREA/Python/HEAD/Scripts/Pandas/DataFrameImports.py -------------------------------------------------------------------------------- /Scripts/Pandas/Missing_Value_Treatment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LEARNEREA/Python/HEAD/Scripts/Pandas/Missing_Value_Treatment.py -------------------------------------------------------------------------------- /Scripts/Pandas/Pandas - GroupBy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LEARNEREA/Python/HEAD/Scripts/Pandas/Pandas - GroupBy.py -------------------------------------------------------------------------------- /Scripts/Pandas/aggregation_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LEARNEREA/Python/HEAD/Scripts/Pandas/aggregation_functions.py -------------------------------------------------------------------------------- /Scripts/Pandas/descriptive_statistics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LEARNEREA/Python/HEAD/Scripts/Pandas/descriptive_statistics.py -------------------------------------------------------------------------------- /Scripts/Pandas/eq_shallow_deep_copy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LEARNEREA/Python/HEAD/Scripts/Pandas/eq_shallow_deep_copy.py -------------------------------------------------------------------------------- /Scripts/Pandas/import_export_csv_excel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LEARNEREA/Python/HEAD/Scripts/Pandas/import_export_csv_excel.py -------------------------------------------------------------------------------- /Scripts/Pandas/merging_multiple_dataframes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LEARNEREA/Python/HEAD/Scripts/Pandas/merging_multiple_dataframes.py -------------------------------------------------------------------------------- /Scripts/Pandas/read_csv_flat_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LEARNEREA/Python/HEAD/Scripts/Pandas/read_csv_flat_files.py -------------------------------------------------------------------------------- /Scripts/Pandas/remove_dup_columns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LEARNEREA/Python/HEAD/Scripts/Pandas/remove_dup_columns.py -------------------------------------------------------------------------------- /Scripts/Pandas/sorting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LEARNEREA/Python/HEAD/Scripts/Pandas/sorting.py -------------------------------------------------------------------------------- /Scripts/Seaborn/1.Seaborn_Introduction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LEARNEREA/Python/HEAD/Scripts/Seaborn/1.Seaborn_Introduction.py -------------------------------------------------------------------------------- /Scripts/Seaborn/10.Seaborn_KDEplot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LEARNEREA/Python/HEAD/Scripts/Seaborn/10.Seaborn_KDEplot.py -------------------------------------------------------------------------------- /Scripts/Seaborn/11.Seaborn_RugPlot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LEARNEREA/Python/HEAD/Scripts/Seaborn/11.Seaborn_RugPlot.py -------------------------------------------------------------------------------- /Scripts/Seaborn/12.Seaborn_ECDFplot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LEARNEREA/Python/HEAD/Scripts/Seaborn/12.Seaborn_ECDFplot.py -------------------------------------------------------------------------------- /Scripts/Seaborn/13.Seaorn_DisPlot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LEARNEREA/Python/HEAD/Scripts/Seaborn/13.Seaorn_DisPlot.py -------------------------------------------------------------------------------- /Scripts/Seaborn/14.Seaorn_JointPlot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LEARNEREA/Python/HEAD/Scripts/Seaborn/14.Seaorn_JointPlot.py -------------------------------------------------------------------------------- /Scripts/Seaborn/15.Seaorn_PairPlot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LEARNEREA/Python/HEAD/Scripts/Seaborn/15.Seaorn_PairPlot.py -------------------------------------------------------------------------------- /Scripts/Seaborn/16.Seaborn_ScatterPlot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LEARNEREA/Python/HEAD/Scripts/Seaborn/16.Seaborn_ScatterPlot.py -------------------------------------------------------------------------------- /Scripts/Seaborn/17.Seaborn_LinePlot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LEARNEREA/Python/HEAD/Scripts/Seaborn/17.Seaborn_LinePlot.py -------------------------------------------------------------------------------- /Scripts/Seaborn/18.Seaborn_RelPlo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LEARNEREA/Python/HEAD/Scripts/Seaborn/18.Seaborn_RelPlo.py -------------------------------------------------------------------------------- /Scripts/Seaborn/19.Seaborn_RegPlot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LEARNEREA/Python/HEAD/Scripts/Seaborn/19.Seaborn_RegPlot.py -------------------------------------------------------------------------------- /Scripts/Seaborn/2.Seaborn_CountPlot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LEARNEREA/Python/HEAD/Scripts/Seaborn/2.Seaborn_CountPlot.py -------------------------------------------------------------------------------- /Scripts/Seaborn/20.Seaborn_HeatMap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LEARNEREA/Python/HEAD/Scripts/Seaborn/20.Seaborn_HeatMap.py -------------------------------------------------------------------------------- /Scripts/Seaborn/21.Seaborn_ClusterMap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LEARNEREA/Python/HEAD/Scripts/Seaborn/21.Seaborn_ClusterMap.py -------------------------------------------------------------------------------- /Scripts/Seaborn/22.Seaborn_FacetGrid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LEARNEREA/Python/HEAD/Scripts/Seaborn/22.Seaborn_FacetGrid.py -------------------------------------------------------------------------------- /Scripts/Seaborn/3.Seaborn_BarPlot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LEARNEREA/Python/HEAD/Scripts/Seaborn/3.Seaborn_BarPlot.py -------------------------------------------------------------------------------- /Scripts/Seaborn/4.Seaborn_BoxPlot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LEARNEREA/Python/HEAD/Scripts/Seaborn/4.Seaborn_BoxPlot.py -------------------------------------------------------------------------------- /Scripts/Seaborn/5.Seaborn_ViolinPlot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LEARNEREA/Python/HEAD/Scripts/Seaborn/5.Seaborn_ViolinPlot.py -------------------------------------------------------------------------------- /Scripts/Seaborn/6.Seaborn_StripPlot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LEARNEREA/Python/HEAD/Scripts/Seaborn/6.Seaborn_StripPlot.py -------------------------------------------------------------------------------- /Scripts/Seaborn/7.Seaborn_SwarmPlot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LEARNEREA/Python/HEAD/Scripts/Seaborn/7.Seaborn_SwarmPlot.py -------------------------------------------------------------------------------- /Scripts/Seaborn/8.Seaborn_CatPlot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LEARNEREA/Python/HEAD/Scripts/Seaborn/8.Seaborn_CatPlot.py -------------------------------------------------------------------------------- /Scripts/Seaborn/9.Seaborn_HistPlot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LEARNEREA/Python/HEAD/Scripts/Seaborn/9.Seaborn_HistPlot.py -------------------------------------------------------------------------------- /Scripts/Seaborn/AllTheScriptsHere.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Scripts/Seaborn/SEABORN_ALL_IN_ONE.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LEARNEREA/Python/HEAD/Scripts/Seaborn/SEABORN_ALL_IN_ONE.py -------------------------------------------------------------------------------- /Scripts/Simplify it with Python/AllTheScriptsHere.txt: -------------------------------------------------------------------------------- 1 | AllTheScriptsHere 2 | -------------------------------------------------------------------------------- /Scripts/Simplify it with Python/Consolidate Multiple Excel Files Into One.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LEARNEREA/Python/HEAD/Scripts/Simplify it with Python/Consolidate Multiple Excel Files Into One.py -------------------------------------------------------------------------------- /Scripts/Simplify it with Python/Consolidating_Multiple_Sheets_Form_Multiple_Files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LEARNEREA/Python/HEAD/Scripts/Simplify it with Python/Consolidating_Multiple_Sheets_Form_Multiple_Files.py -------------------------------------------------------------------------------- /Scripts/Simplify it with Python/Importing_Multiple_Sheets_From_One_ExcelFile_Inverse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LEARNEREA/Python/HEAD/Scripts/Simplify it with Python/Importing_Multiple_Sheets_From_One_ExcelFile_Inverse.py -------------------------------------------------------------------------------- /Scripts/Simplify it with Python/Scan_Through_All_the_Files_and_Folders_Search_String.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LEARNEREA/Python/HEAD/Scripts/Simplify it with Python/Scan_Through_All_the_Files_and_Folders_Search_String.py -------------------------------------------------------------------------------- /Scripts/Simplify it with Python/SearchFile_Tutorial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LEARNEREA/Python/HEAD/Scripts/Simplify it with Python/SearchFile_Tutorial.py -------------------------------------------------------------------------------- /Scripts/Simplify it with Python/automate_excel_with_python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LEARNEREA/Python/HEAD/Scripts/Simplify it with Python/automate_excel_with_python.py -------------------------------------------------------------------------------- /Scripts/Simplify it with Python/multiple_excel_files_into_one_but_diff_sheets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LEARNEREA/Python/HEAD/Scripts/Simplify it with Python/multiple_excel_files_into_one_but_diff_sheets.py -------------------------------------------------------------------------------- /Scripts/WebScraping/BooksWeb_Scraping_Multiple_Pages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LEARNEREA/Python/HEAD/Scripts/WebScraping/BooksWeb_Scraping_Multiple_Pages.py -------------------------------------------------------------------------------- /Scripts/WebScraping/BooksWeb_Scraping_Single_Page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LEARNEREA/Python/HEAD/Scripts/WebScraping/BooksWeb_Scraping_Single_Page.py -------------------------------------------------------------------------------- /Scripts/WebScraping/Insta_hastag_image_scraping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LEARNEREA/Python/HEAD/Scripts/WebScraping/Insta_hastag_image_scraping.py -------------------------------------------------------------------------------- /Scripts/WebScraping/TableScraping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LEARNEREA/Python/HEAD/Scripts/WebScraping/TableScraping.py -------------------------------------------------------------------------------- /Scripts/WebScraping/WS_Navigation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LEARNEREA/Python/HEAD/Scripts/WebScraping/WS_Navigation.py -------------------------------------------------------------------------------- /Scripts/WebScraping/WS_Tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LEARNEREA/Python/HEAD/Scripts/WebScraping/WS_Tags.py -------------------------------------------------------------------------------- /Scripts/WebScraping/WS_other_objects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LEARNEREA/Python/HEAD/Scripts/WebScraping/WS_other_objects.py -------------------------------------------------------------------------------- /Scripts/WebScraping/WebScraping_BasicPage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LEARNEREA/Python/HEAD/Scripts/WebScraping/WebScraping_BasicPage.py -------------------------------------------------------------------------------- /Scripts/WebScraping/amazon_scraping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LEARNEREA/Python/HEAD/Scripts/WebScraping/amazon_scraping.py -------------------------------------------------------------------------------- /Scripts/WebScraping/rotten_tomattoes_live.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LEARNEREA/Python/HEAD/Scripts/WebScraping/rotten_tomattoes_live.py -------------------------------------------------------------------------------- /Scripts/WebScraping/scrap_fb_friends_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LEARNEREA/Python/HEAD/Scripts/WebScraping/scrap_fb_friends_list.py -------------------------------------------------------------------------------- /Scripts/WebScraping/scrap_in_five_minutes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LEARNEREA/Python/HEAD/Scripts/WebScraping/scrap_in_five_minutes.py -------------------------------------------------------------------------------- /Scripts/WebScraping/selenium_accessing_different_browser_elements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LEARNEREA/Python/HEAD/Scripts/WebScraping/selenium_accessing_different_browser_elements.py -------------------------------------------------------------------------------- /Scripts/WebScraping/testing.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Scripts/WebScraping/twitter_scraping_live.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LEARNEREA/Python/HEAD/Scripts/WebScraping/twitter_scraping_live.py --------------------------------------------------------------------------------