I am trying to scrape the table on http://apps2.eere.energy.gov/wind/windexchange/economics_tools.asp
the table by default shows 5 entries. I use dryscrape and BeautifulSoup as follows:
import dryscrape
from bs4 import BeautifulSoup
myurl = 'http://apps2.eere.energy.gov/wind/windexchange/economics_tools.asp'
session = dryscrape.Session()
session.visit(myurl)
response = session.body()
soup = BeautifulSoup(response,'lxml')
table = soup.find_all("td")
But this only returns the default 5 entries of that table. How can I get all rows in this table?
Thank you very much!