This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ''' | |
| Example of web scraping using Python and BeautifulSoup. | |
| Sraping ESPN College Football data | |
| http://www.espn.com/college-sports/football/recruiting/databaseresults/_/sportid/24/class/2006/sort/school/starsfilter/GT/ratingfilter/GT/statuscommit/Commitments/statusuncommit/Uncommited | |
| The script will loop through a defined number of pages to extract footballer data. | |
| ''' | |
| from bs4 import BeautifulSoup |
NewerOlder