Book Image

Getting Started with Python Web Scraping [Video]

By : Charles Clayton
Book Image

Getting Started with Python Web Scraping [Video]

By: Charles Clayton

Overview of this book

Python is a high-level programming language used for general-purpose programming. It has a design philosophy which emphasizes code readability and a syntax which allows programmers to express concepts in fewer lines of code than possible in languages such as C++ or Java. This video course is a rich collection of recipes that will come in handy when you are scraping a website using Python, addressing your usual and unusual problems while scraping websites by diving deep into the capabilities of Python’sweb scraping tools such as Selenium, BeautifulSoup, and urllib2. The video will start with showing how to use selenium module for scraping by setting up a web driver, debugging with the Console and downloading files and streamlining with a Headless Browser (PhantomJS). The video will then move on to demonstrate how to do parsing with Beautifulsoup which would include introduction to the BeautifulSoupObjects, Nested Selectors and Regular Expressions Basics and how to do UTF-8 Encoding. The video will finally end by showing how to do fetching with urlib2 by using the developer tools Network tab, how to bypass the browser and retrieve files. By The end of this video, you will be successfully able to understand the in-depth capabilities of python web scraping tools.
Table of Contents (3 chapters)
Chapter 3
Fetching the urlib2 and API’s
Content Locked
Section 3
Working with APIs
Some APIs require authentication and they require multiple parameters. How do we integrate these into our script? - Request or purchase an API key from the developer. - Include your parameters as a dictionary type. - Know when to web scrape and when to use APIs.