Need to pull data from assessor website - post submit

I am new to django and have been reviewing several videos on how to pull data from a website using a POST request. I’m afraid I’m not grasping it. Can someone show me how to pull the assessor information from this site using the following address?

"Assessor of Property, Shelby County TN
This is the element that needs to be populated with 4128 Weymouth and POSTED.

Search by Address
Street Number
Street Name Don't Enter Street Direction or Suffix
Submit
Thanks for helping a newby!

Django provides services for handling requests coming in - not for issuing requests to other sites.

To do what you’re looking to do would probably be done using a combination of the Python requests module along with BeautifulSoup.

1 Like