From cacbf4ce9ca70613afce5a9bf0fe8819f9c95216 Mon Sep 17 00:00:00 2001 From: Nirmal Date: Sun, 18 Jun 2023 18:13:17 +0530 Subject: [PATCH 1/3] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 89e0b1b..6a05187 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ # YouTube Data Harvesting and Warehousing -[![Streamlit App](https://static.streamlit.io/badges/streamlit_badge_black_white.svg)](https://nirmal-data-scientist-youtube-data-harvesting.streamlit.app/) +[![Streamlit App](https://static.streamlit.io/badges/streamlit_badge_black_white.svg)](https://youtube-data-harvesting.streamlit.app/) This web app is designed to fetch data from YouTube using their YouTube's Data API v3 based on user input for a channel username. The fetched data is stored in my personal MongoDB Atlas Database and provides facilities for users to migrate the channel data to their local MySQL database. The project also includes custom-made queries for basic data analysis and visualization using Streamlit. @@ -253,7 +253,7 @@ These applications demonstrate how the app can be utilized by content creators, ## Streamlit web URL -[![Streamlit App](https://static.streamlit.io/badges/streamlit_badge_black_white.svg)](https://nirmal-data-scientist-youtube-data-harvesting.streamlit.app/) +[![Streamlit App](https://static.streamlit.io/badges/streamlit_badge_black_white.svg)](https://youtube-data-harvesting.streamlit.app/) ## Disclaimer This application is intended for educational and research purposes only and should not be used for any commercial or unethical activities. From 1a250f78b6f1e6a63e98f585c37eab2aeaa21e27 Mon Sep 17 00:00:00 2001 From: Nirmal Date: Sun, 2 Jul 2023 22:49:55 +0530 Subject: [PATCH 2/3] Update youtube_scraping.py --- youtube_scraping.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/youtube_scraping.py b/youtube_scraping.py index aaf2611..b2b67ed 100644 --- a/youtube_scraping.py +++ b/youtube_scraping.py @@ -391,7 +391,7 @@ def fetch_channel_data(api_key, channel_id): else: collection.insert_one(channel_data) - st.write(f"Data related to the channel - '{df['Channel_Name']}' pushed successfully into MongoDB Atlas...") + st.write(f"Data related to the channel - '{df['Channel Name']}' pushed successfully into MongoDB Atlas...") # 1.3 - Youtube reference From 6d80a303290945a5de6887d4a83914d6d7778819 Mon Sep 17 00:00:00 2001 From: Nirmal Date: Sun, 2 Jul 2023 22:54:48 +0530 Subject: [PATCH 3/3] Update youtube_scraping.py --- youtube_scraping.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/youtube_scraping.py b/youtube_scraping.py index b2b67ed..9dd7e29 100644 --- a/youtube_scraping.py +++ b/youtube_scraping.py @@ -391,7 +391,7 @@ def fetch_channel_data(api_key, channel_id): else: collection.insert_one(channel_data) - st.write(f"Data related to the channel - '{df['Channel Name']}' pushed successfully into MongoDB Atlas...") + st.write(f"Data related to the channel - '{channel_details['Channel_Name']}' pushed successfully into MongoDB Atlas...") # 1.3 - Youtube reference