Advertisement
oxguy3

Clay County Assessor Parcel Search scraping overview

Jun 30th, 2015
321
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. Here's the cURL command that describes the URL to scrape:
  2.  
  3. curl -i -X POST \
  4. -H "Content-Type:application/x-www-form-urlencoded" \
  5. -d "column=SITUS" \
  6. -d "operation=contains" \
  7. -d "strNo=" \
  8. -d "strPref=" \
  9. -d "strNm=" \
  10. -d "strType=" \
  11. -d "strSuf=" \
  12. -d "visited=true" \
  13. -d "condColSel=" \
  14. -d "nextRecStartNum=0" \
  15. 'http://gisweb.claycogov.com/realEstate/realEstate.jsp'
  16.  
  17.  
  18. Increase nextRecStartNum by 25 to get the next page. Repeat until you have all the records!
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement