Python Forum
Scrape ASPX data with python... - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: Web Scraping & Web Development (https://python-forum.io/forum-13.html)
+--- Thread: Scrape ASPX data with python... (/thread-16401.html)



Scrape ASPX data with python... - hoff1022 - Feb-26-2019

I'm trying to use python to scrape an ASPX page for data.

Website:
https://safer.fmcsa.dot.gov/query.asp

Select: US DOT Number
Data to enter: 1485012

A page loads. I'm interested in the MCS-150 Form Date field and it's data (12/06/2018 in this example). I normally use requests to load a page and use Beautiful Soup to get the fields of interest but with ASPX I don't even know how to approach sending a request. Please help. Thanks.