I am trying to scrape a simple table using Beautiful Soup. Here is my code:
import requests from bs4 import BeautifulSoup url = \'https://gist.githubusercon
Iterate over table and use rowfind_all('td')
rowfind_all('td')
for row in table: col = row.find_all('td')