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
# Web scraping from w3schools | |
from urllib.request import urlopen as get | |
from bs4 import BeautifulSoup | |
b_url = 'https://www.w3schools.com/python/' | |
n_url, s_url = 'python_intro.asp', 'python_exam.asp' | |
page_count = 0 | |
def start(base_url, next_url, stop_url): |