Web Scraping in Google Sheets || IMPORTHTML, IMPORTXML, IMPORTFEED, IMPORTDATA

Описание к видео Web Scraping in Google Sheets || IMPORTHTML, IMPORTXML, IMPORTFEED, IMPORTDATA

🚀 Hey everyone! Dive into the world of web scraping with me in this YouTube video! 🕸️ #googlesheets #webscraping #datascraping


📊 First up, I'll show you the magic of Import HTML. Watch as I scrape tables from a Google doc site effortlessly using this handy function. 🧙‍♂️ Learn how to organize data in your Spreadsheet like a pro!


❌ But wait, what if the site doesn't have a neat table or list? No worries, we've got Import XML to the rescue! 🕵️‍♂️ Follow along as I unravel the X-path mysteries and grab structured data from a blog.


💡 Pro tip: Copying X-path not your style? No problem! Understand the structure, inspect, and amend the formula on the fly. 🛠️


📅 Stay updated with your favorite websites using Import Feed. I'll grab the BBC news feed and show you how to import it into your Spreadsheet. 🌐 Read summaries or dive into the whole post with just a click!


📈 Want data in CSV or TSV format? Import Data to the rescue! Discover how to fetch data from a CSV-formatted link of popular movies. 🍿


🎬 And hey, if you enjoyed this tutorial, don't forget to hit that like button and subscribe! 🤟 I'm thinking about a future part with scripting for advanced use cases. Stay tuned, and I'll catch you in the next one! 👋 Thanks for watching, Dev Squad! 🚀

------------ Buy me a coffee -----------------------
https://buymeacoffee.com/pritamsharma
-------------------------------------------------------------------

Spreadsheet Link:https://docs.google.com/spreadsheets/...


Google Doc site Link: https://developers.google.com/chart/i...


Tesla Blog: https://www.tesla.com/blog


BBC News Feed: https://feeds.bbci.co.uk/news/world/r...


Popular Movies CSV Link: https://gist.githubusercontent.com/ti...

XPath Query Reference: https://www.w3schools.com/xml/xpath_s...


Script to List down tables/List:


var i = 1; [].forEach.call(document.querySelectorAll('table'), function(x) { console.log(i++, x); });


var i = 1; [].forEach.call(document.querySelectorAll('ul,ol'), function(x) { console.log(i++, x); });

Комментарии

Информация по комментариям в разработке