Hi I'm trying to scrape all the data points that are in this url https://m-selig.ae.illinois.edu/ads/coord/a18.dat
import pandas as pd import requests from bs4 import BeautifulSoup url = "https://m-selig.ae.illinois.edu/ads/coord/a18.dat" page = requests.get(url) x = BeautifulSoup(page.content, 'html.parser') df = pd.DataFrame(x) df.to_excel("air_foil.xlsx") I've tried this code but x is just a long list that consist of one element.