Advertisement
oxguy3

TAD Property Records scraping overview

Jul 1st, 2015
315
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. The url to query is:
  2.  
  3. http://www.tad.org/search-by-owner-name?keyword=&count=101/**/LIMIT/**/100&type=owner_name&city=all&DepartmentCd=
  4.  
  5. You should POST that url with "page=1" and increment page until you run out of results (the bit of the page that says how many results there are is wrong)
  6.  
  7. The "/**/LIMIT/**/100" part makes the query run a bit faster (although it's still quite slow). I used "/**/" in place of spaces because they converted all spaces to percent signs for use in a LIKE clause.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement