ludstuen90 / property_project_ohio

This repository will house our property records application. More to come!
1 stars 0 forks source link

Cuyahoga County: Scrape and Store Delinquent Tax Information #101

Closed ludstuen90 closed 5 years ago

ludstuen90 commented 5 years ago

Instead of a "tax lien" boolean, store a Delinquent Tax field that will have an mount of the delinquent taxes.

This will help us find out lucrative properties with large tax bills to wipe out.

ludstuen90 commented 5 years ago

In looking at how to download delinquent tax information, at this point it looks like the easiest way will be to download this information from the tax bill:

https://myplace.cuyahogacounty.us/NjcxMTEyNDQ=?city=OTk=&searchBy=UGFyY2Vs&dataRequested=VGF4IEJpbGw=

ludstuen90 commented 5 years ago

Called Cuyahoga Recorder's office to find out more information about where to find delinquent taxes; rep confirmed delinquent tax amount will show up under Tax balance summary, immediately on the current year tax bill page. (See link in earlier comment).

Did not have a sample parcel ID to provide, but will search property records to find this out.

ludstuen90 commented 5 years ago

Cuyahoga County appears to publish delinquent properties here https://fiscalofficer.cuyahogacounty.us/en-US/GIS/DelPublication.aspx

ludstuen90 commented 5 years ago

Bingo: A delinquent property tax looks like this. image

The question is whether it will be easier to parse this information from MyPlace site or from the aforementioned delinquent publication.

ludstuen90 commented 5 years ago

Initial observations on the delinquent tax publication site:

Initial observations from the MyPlace site:

ludstuen90 commented 5 years ago

There appear to be more advantages to using the MyPlace site, if we can create a scraping mechanism that will accurately catch all records. Experimenting with this now

ludstuen90 commented 5 years ago

Able to retrieve this information successfully with BeautifulSoup. Feature implemented with https://github.com/ludstuen90/property_project_ohio/pull/124