- 147
- 506 814
Dr. Todd Wolfe Technology Training and Tutorials
United States
Приєднався 13 сер 2019
🚀 Welcome to Dr. Todd Wolfe's Tech Hub!
🚀 Explore programming, databases, SQL, Python, Java, web development, Excel, Windows tips and tricks, AI, and more.
📚 Topics: Programming, SQL, Web Dev, Excel, Windows, AI, and diverse tech subjects.
👨🏫 Meet Dr. Todd Wolfe: Your guide with [X] years of tech experience, passionate about teaching.
🔔 Why Subscribe? Expert guidance, stay updated, join an interactive tech community.
🌐 Connect with Dr. Todd Wolfe:
🌐 Website: www.professorwolfe.com
🖇️ LinkedIn: www.linkedin.com/in/toddwolfe/
🚀 Subscribe Now for a Tech Revolution! Hit the bell icon for notifications.
🛠️ Ready to Elevate Your Tech Skills? Subscribe now!
🚀 Explore programming, databases, SQL, Python, Java, web development, Excel, Windows tips and tricks, AI, and more.
📚 Topics: Programming, SQL, Web Dev, Excel, Windows, AI, and diverse tech subjects.
👨🏫 Meet Dr. Todd Wolfe: Your guide with [X] years of tech experience, passionate about teaching.
🔔 Why Subscribe? Expert guidance, stay updated, join an interactive tech community.
🌐 Connect with Dr. Todd Wolfe:
🌐 Website: www.professorwolfe.com
🖇️ LinkedIn: www.linkedin.com/in/toddwolfe/
🚀 Subscribe Now for a Tech Revolution! Hit the bell icon for notifications.
🛠️ Ready to Elevate Your Tech Skills? Subscribe now!
How to Screen Scrape a Website Using Python and BeautifulSoup (BS4) | Learn with Dr. Todd Wolfe
In this video, the famous Dr. Todd Wolfe will walk you through how to scrape data from a website using Python and the BeautifulSoup (BS4) library. We'll explore the fundamentals of web scraping, showing you step-by-step how to extract the titles of articles from the Hacker News website.
Key Topics Covered in This Video:
Introduction to web scraping and its use cases.
Setting up your Python environment, including installing BeautifulSoup and requests packages.
HTTP requests: How to get the HTML content of a webpage.
Using BeautifulSoup to parse the HTML and navigate through the tags.
Extracting and printing article titles from the Hacker News website, using simple Python loops and techniques.
Tips on scraping ethically and respecting website rules.
Tutorial Objectives:
Learn how to install BeautifulSoup and requests for Python.
Understand how to fetch webpage content using the requests library.
Learn to parse and navigate HTML with BeautifulSoup to find specific elements.
Extract and print article titles from the Hacker News homepage using Python.
Get valuable insights from Dr. Todd Wolfe about best practices in web scraping.
By the end of this video, you'll be able to create your own web scraper to gather useful information from publicly available websites, and you'll gain a solid understanding of how BeautifulSoup can make HTML parsing easy.
Code Snippets Used in This Video: You can find the example code used in this video in the description below, so you can follow along as Dr. Todd Wolfe shows you each step of the process.
🚀 Subscribe to our channel for more in-depth tutorials on Python programming, data analysis, databases, and other tech topics from Dr. Todd Wolfe.
👍 Like and Comment below if you enjoyed this video or have suggestions for future content.
Resources Mentioned in This Video:
BeautifulSoup Documentation: www.crummy.com/software/BeautifulSoup/
Hacker News Website: news.ycombinator.com/
Follow Dr. Todd Wolfe for more tech and programming updates:
LinkedIn: www.linkedin.com/in/toddwolfe
📌 Don’t forget to hit the bell icon 🔔 to get notified whenever we post a new tutorial!
#Python #WebScraping #BeautifulSoup #DrToddWolfe #HackerNews #LearnPython #ProgrammingTutorial
Code Snippets:
import requests
from bs4 import BeautifulSoup
# URL of the website to scrap
url = "news.ycombinator.com/"
# send an http request to the url
response = requests.get(url)
# check if the request is successful
if response.status_code == 200:
# parse the hTML content of the page using the beautifulSoup library
soup = BeautifulSoup(response.text, 'html.parser')
# Find all story titles
titles = soup.find_all('span', class_='titleline')
# print all the articles
print("Top Articles on Hacker News:")
# print(response.text)
for idx, title in enumerate(titles):
print(f"{idx+1}. {title.text}")
else:
print(f"Failed to retrieve the page. Status code: {response.status_code}")
Key Topics Covered in This Video:
Introduction to web scraping and its use cases.
Setting up your Python environment, including installing BeautifulSoup and requests packages.
HTTP requests: How to get the HTML content of a webpage.
Using BeautifulSoup to parse the HTML and navigate through the tags.
Extracting and printing article titles from the Hacker News website, using simple Python loops and techniques.
Tips on scraping ethically and respecting website rules.
Tutorial Objectives:
Learn how to install BeautifulSoup and requests for Python.
Understand how to fetch webpage content using the requests library.
Learn to parse and navigate HTML with BeautifulSoup to find specific elements.
Extract and print article titles from the Hacker News homepage using Python.
Get valuable insights from Dr. Todd Wolfe about best practices in web scraping.
By the end of this video, you'll be able to create your own web scraper to gather useful information from publicly available websites, and you'll gain a solid understanding of how BeautifulSoup can make HTML parsing easy.
Code Snippets Used in This Video: You can find the example code used in this video in the description below, so you can follow along as Dr. Todd Wolfe shows you each step of the process.
🚀 Subscribe to our channel for more in-depth tutorials on Python programming, data analysis, databases, and other tech topics from Dr. Todd Wolfe.
👍 Like and Comment below if you enjoyed this video or have suggestions for future content.
Resources Mentioned in This Video:
BeautifulSoup Documentation: www.crummy.com/software/BeautifulSoup/
Hacker News Website: news.ycombinator.com/
Follow Dr. Todd Wolfe for more tech and programming updates:
LinkedIn: www.linkedin.com/in/toddwolfe
📌 Don’t forget to hit the bell icon 🔔 to get notified whenever we post a new tutorial!
#Python #WebScraping #BeautifulSoup #DrToddWolfe #HackerNews #LearnPython #ProgrammingTutorial
Code Snippets:
import requests
from bs4 import BeautifulSoup
# URL of the website to scrap
url = "news.ycombinator.com/"
# send an http request to the url
response = requests.get(url)
# check if the request is successful
if response.status_code == 200:
# parse the hTML content of the page using the beautifulSoup library
soup = BeautifulSoup(response.text, 'html.parser')
# Find all story titles
titles = soup.find_all('span', class_='titleline')
# print all the articles
print("Top Articles on Hacker News:")
# print(response.text)
for idx, title in enumerate(titles):
print(f"{idx+1}. {title.text}")
else:
print(f"Failed to retrieve the page. Status code: {response.status_code}")
Переглядів: 101
Відео
Apple Intelligence - How to get it on your iPhone
Переглядів 2,4 тис.День тому
In this tutorial video you will learn how you can obtain access to Apple Intelligence (AI) on iPhone 15 and newer modules.
Building Resilient Software: The Critical Role of Data Governance in Software Development
Переглядів 18Місяць тому
Welcome to "Building Resilient Software: The Critical Role of Data Governance", presented by Dr. Todd Wolfe for the Indy .NET Consortium. In this presentation, we explore how data governance is an essential part of software development, ensuring that data is managed, protected, and utilized efficiently. Learn about: The importance of data governance in capturing, creating, and integrating data ...
2024 Philadelphia Eagles Home Opener Starting Lineups and Light Show
Переглядів 221Місяць тому
Get ready, Eagles fans! Check out the electrifying atmosphere at the 2024 Philadelphia Eagles home opener as the team takes the field with a spectacular light show. Watch the starting lineups get introduced to a roaring crowd at Lincoln Financial Field. Feel the energy as the lights flash, the music pumps, and the crowd goes wild, welcoming the Birds back for another epic season. Whether you're...
Philadelphia Eagles 2024 Home Opener Pregame Party w/Jason Kelce, Nick Foles, & Fletcher Cox
Переглядів 527Місяць тому
What an epic pregame party as we kick off the Philadelphia Eagles' 2024 Home Opener! Watch Jason Kelce, Nick Foles, and Fletcher Cox rally the crowd and bring the energy to Lincoln Financial Field. From fan interactions to pregame hype, this is the ultimate way to gear up for another unforgettable Eagles season. Fly, Eagles, Fly!
How to load and run the sample Android Studio Trackr App to verify your environment is ready to go
Переглядів 1302 місяці тому
In this tutorial, Dr. Todd Wolfe, the world-renowned instructor from Syracuse, NY, demonstrates how to ensure your Android Studio environment is set up correctly by running the sample Trackr application. Dr. Wolfe walks you through verifying the correct versions of Gradle and Java, setting up an emulator, and loading a sample project to test your setup. Whether you're new to Android development...
How to Fix Intel HAXM Installation Failed Error in Android Studio
Переглядів 3 тис.2 місяці тому
Encountering the Intel HAXM installation failed error in Android Studio? In this video, Dr. Todd Wolfe, a world-renowned instructor from Syracuse, NY, walks you through the steps to troubleshoot and fix the Intel HAXM installation issue. With over 20 years of experience teaching mobile development, Dr. Wolfe simplifies the process, ensuring you can get your Android Emulator up and running witho...
Learn Android Studio in 2024: How to Install Android Studio | Step-by-Step Guide
Переглядів 5752 місяці тому
In this video, Dr. Todd Wolfe, a world-renowned instructor from Syracuse, NY, guides you through a detailed, step-by-step process for installing Android Studio on Windows. Dr. Wolfe has taught hundreds of thousands of students worldwide over the last 20 years, making complex technical concepts easy to understand. Whether you're a beginner or seasoned developer, this tutorial will help you get A...
Building a Google Chrome Extension in Real-Time with ChatGPT 4: Step-by-Step Programming Tutorial
Переглядів 932 місяці тому
In this comprehensive programming tutorial, join Dr. Todd as he guides you through the process of building a Google Chrome extension in real-time using ChatGPT 4. Whether you're a seasoned developer or a curious beginner, this video is packed with valuable insights into the full development cycle, including testing, debugging, and overcoming common pitfalls. We start with giving specific requir...
Mastering the Command Prompt: How to Change Drive Letters in Windows
Переглядів 1242 місяці тому
Join Dr. Todd Wolfe, a world-renowned doctor of computer science, industry technology leader, and globally recognized professor, as he guides you through the steps to change the drive letter in the Windows Command Prompt. In this concise tutorial, Dr. Wolfe simplifies a fundamental task for both beginners and seasoned professionals, ensuring you can navigate your system with confidence. Whether...
2024 End of Summer Aiper Scuba S1 Review | Impressive Battery Life, Suction Power & Performance
Переглядів 732 місяці тому
Welcome to our updated review of the Aiper Scuba S1 as we wrap up summer 2024! 🌞 If you're looking for a pool cleaner that offers outstanding performance, this review is for you. We'll dive deep into the features of the Aiper Scuba S1, highlighting its impressive battery life, powerful suction, and overall performance. Whether you're a first-time buyer or considering an upgrade, this video will...
iFit 2024 Newest Update | Exclusive Beta Tour
Переглядів 6 тис.3 місяці тому
Welcome to the exclusive beta tour of iFit's 2024 newest update! 🚀 In this video, we dive into all the exciting new features and improvements that iFit has to offer this year. From enhanced user interfaces to advanced workout tracking, you'll get a comprehensive look at what's new and how it can enhance your fitness journey. If you enjoy this video, please give it a thumbs up and subscribe to m...
Unleashing Innovation: The Power of APIs in driving digital transformation
Переглядів 203 місяці тому
In this engaging and dynamic lecture, Dr. Todd Wolfe explores why APIs (Application Programming Interfaces) are the essential building blocks that drive digital transformation. Discover how APIs unlock innovation, enhance efficiency, and shape the future of business. Key Points Covered: What are APIs?: Understanding Application Programming Interfaces and their role in digital communication. Ben...
2024 Upgrade AIPER Scuba S1 Pool Vacuum for Inground Pools - Independent Review
Переглядів 2 тис.5 місяців тому
This video demonstrates an independent review of the AIPER 2024 Scuba S1 Edition of the Inground Pool Vacuum. The video demonstrates opening the package when it arrives, charging the vacuum, and the vacuum operation. See for yourself the effectiveness of this completely wireless pool vacuum. You will not be disappointed in the value this delivers for the price.
Tutorial: How To Make and Share Custom GPTs using ChatGPT
Переглядів 1,2 тис.6 місяців тому
In this video, Dr. Todd Wolfe discusses the benefits of a custom GPT and demonstrates how to create a GPT to have it available to share with others. Run Buddy: chat.openai.com/g/g-uqP1QShKR-run-buddy Please consider supporting my running cause: athletics.worldwildlife.org/nycmarathon/dr-todds
Total Solar Eclipse Easter egg. Google Search.
Переглядів 2337 місяців тому
Total Solar Eclipse Easter egg. Google Search.
VsCode Tutorial: IntelliCode extension setup and use. A must-have for developers
Переглядів 4,3 тис.10 місяців тому
VsCode Tutorial: IntelliCode extension setup and use. A must-have for developers
How can I get GitHub Copilot for free? For students, faculty and maintainers of open source projects
Переглядів 17 тис.10 місяців тому
How can I get GitHub Copilot for free? For students, faculty and maintainers of open source projects
VSCode Productivity Tip: How to copy and paste faster
Переглядів 6 тис.10 місяців тому
VSCode Productivity Tip: How to copy and paste faster
VSCode Productivity Tip: Tab breakouts and docking, the most requested feature ever
Переглядів 55510 місяців тому
VSCode Productivity Tip: Tab breakouts and docking, the most requested feature ever
How to download and install Visual Studio Community edition
Переглядів 85210 місяців тому
How to download and install Visual Studio Community edition
How to download and install Visual Studio Code (VSCode)
Переглядів 6410 місяців тому
How to download and install Visual Studio Code (VSCode)
How to setup GitHub CoPilot in Visual Studio Code
Переглядів 7 тис.10 місяців тому
How to setup GitHub CoPilot in Visual Studio Code
Learn SQL Server in 2024:How to install SQLExpress, Management Studio and Azure Data Studio for free
Переглядів 60010 місяців тому
Learn SQL Server in 2024:How to install SQLExpress, Management Studio and Azure Data Studio for free
Excel Tutorial: How to use the Geography and Stock data types to get valuable information
Переглядів 4410 місяців тому
Excel Tutorial: How to use the Geography and Stock data types to get valuable information
How to access the Emoji and Gif keyboard anywhere in Windows 11
Переглядів 85110 місяців тому
How to access the Emoji and Gif keyboard anywhere in Windows 11
How to unlock Windows 11 God Mode (GodMode). A menu of advanced settings
Переглядів 2,1 тис.10 місяців тому
How to unlock Windows 11 God Mode (GodMode). A menu of advanced settings
What is the Chatbot Arena?-Where you put one large language model(LLM) against another and rate them
Переглядів 28710 місяців тому
What is the Chatbot Arena?-Where you put one large language model(LLM) against another and rate them
Learn MySQL in 2024: Lesson 4 more work with the select statement
Переглядів 21910 місяців тому
Learn MySQL in 2024: Lesson 4 more work with the select statement
Learn MySQL in 2024:Lesson 2 getting started with MySQL Shell and Workbench
Переглядів 96310 місяців тому
Learn MySQL in 2024:Lesson 2 getting started with MySQL Shell and Workbench