hello dear python-experts, good day.
this scraper fetches wikipedia pages
it is a nice little scraper - it ...:
i am going to add some

this scraper fetches wikipedia pages
it is a nice little scraper - it ...:
import requests import urllib.request import time from bs4 import BeautifulSoup import numpy as np import pandas as pd from urllib.request import urlopen url = 'https://en.wikipedia.org/wiki/List_of_cities_by_sunshine_duration' html = urlopen(url) soup = BeautifulSoup(html, 'html.parser')these few lines fetch data . but i guess that i need more.
i am going to add some
find_all('table') ## that helps me to scan the entire document to look for the following tag <table>and the following
tables = soup.find_all('table')can i do this like so?