Artwork

Content provided by eddyizm and octon. All podcast content including episodes, graphics, and podcast descriptions are uploaded and provided directly by eddyizm and octon or their podcast platform partner. If you believe someone is using your copyrighted work without your permission, you can follow the process outlined here https://player.fm/legal.
Player FM - Podcast App
Go offline with the Player FM app!

004 - HTML Scraping with Beautiful Soup

 
Share
 

Manage episode 194214591 series 1506484
Content provided by eddyizm and octon. All podcast content including episodes, graphics, and podcast descriptions are uploaded and provided directly by eddyizm and octon or their podcast platform partner. If you believe someone is using your copyrighted work without your permission, you can follow the process outlined here https://player.fm/legal.
Stream Our Mistakes screenshotStream Our Mistakes EP 004
In this episode, Matt walks us through html/web scraping using the popular python library, Beautiful Soup.
Here's the code snippet from the session and links:
 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
# Created for Stream Our Mistakes  # https://streamourmistakes.blogspot.com/ # Reference: # https://docs.python.org/3/library/urllib.request.html # https://www.crummy.com/software/BeautifulSoup/bs4/doc/ from bs4 import BeautifulSoup import urllib.request '''  # local html to play with from documentation Uncomment to enable  html_doc = """ The Dormouse's story  

The Dormouse's story

Once upon a time there were three little sisters; and their names were Elsie, Lacie and Tillie; and they lived at the bottom of a well.

...

""" ''' # Get the html from the web. f = urllib.request.urlopen('https://en.wikiquote.org/wiki/Aristotle') # Load the html into the parser. soup = BeautifulSoup(f.read(), 'html.parser') # Show the whole raw # print(soup.prettify()) # Access a single element. # print(soup.title) # Find all a tags in the html doc and print some information. links = soup.find_all('a') for link in links: print(link.get('href')) print(len(links))

links:
https://docs.python.org/3/library/urllib.request.html
https://www.crummy.com/software/BeautifulSoup/bs4/doc/
Subscribe to the podcast on apple podcasts, google play, stitcher
matt
site: http://octon.io/
github: https://github.com/mmdempsey
eddyizm
site: http://eddyizm.com
twitter: http://twitter.com/eddyizm
github: https://github.com/eddyizm
perry
github: https://github.com/apk29
---
**youtube live broadcast:**
https://youtube.com/user/eddyizm/live
Subscribe to our channel and follow my twitter feed to be notified of our next live broadcast and feel free to leave us comments and suggestions on what you want to see.
  continue reading

5 episodes

Artwork
iconShare
 
Manage episode 194214591 series 1506484
Content provided by eddyizm and octon. All podcast content including episodes, graphics, and podcast descriptions are uploaded and provided directly by eddyizm and octon or their podcast platform partner. If you believe someone is using your copyrighted work without your permission, you can follow the process outlined here https://player.fm/legal.
Stream Our Mistakes screenshotStream Our Mistakes EP 004
In this episode, Matt walks us through html/web scraping using the popular python library, Beautiful Soup.
Here's the code snippet from the session and links:
 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
# Created for Stream Our Mistakes  # https://streamourmistakes.blogspot.com/ # Reference: # https://docs.python.org/3/library/urllib.request.html # https://www.crummy.com/software/BeautifulSoup/bs4/doc/ from bs4 import BeautifulSoup import urllib.request '''  # local html to play with from documentation Uncomment to enable  html_doc = """ The Dormouse's story  

The Dormouse's story

Once upon a time there were three little sisters; and their names were Elsie, Lacie and Tillie; and they lived at the bottom of a well.

...

""" ''' # Get the html from the web. f = urllib.request.urlopen('https://en.wikiquote.org/wiki/Aristotle') # Load the html into the parser. soup = BeautifulSoup(f.read(), 'html.parser') # Show the whole raw # print(soup.prettify()) # Access a single element. # print(soup.title) # Find all a tags in the html doc and print some information. links = soup.find_all('a') for link in links: print(link.get('href')) print(len(links))

links:
https://docs.python.org/3/library/urllib.request.html
https://www.crummy.com/software/BeautifulSoup/bs4/doc/
Subscribe to the podcast on apple podcasts, google play, stitcher
matt
site: http://octon.io/
github: https://github.com/mmdempsey
eddyizm
site: http://eddyizm.com
twitter: http://twitter.com/eddyizm
github: https://github.com/eddyizm
perry
github: https://github.com/apk29
---
**youtube live broadcast:**
https://youtube.com/user/eddyizm/live
Subscribe to our channel and follow my twitter feed to be notified of our next live broadcast and feel free to leave us comments and suggestions on what you want to see.
  continue reading

5 episodes

كل الحلقات

×
 
Loading …

Welcome to Player FM!

Player FM is scanning the web for high-quality podcasts for you to enjoy right now. It's the best podcast app and works on Android, iPhone, and the web. Signup to sync subscriptions across devices.

 

Quick Reference Guide