Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/mit-spatial-action/masslandlords_scraper

Pulls weekly filing counts from MassLandlords (we use this as a baseline to ensure we're capturing all cases).
https://github.com/mit-spatial-action/masslandlords_scraper

evictions housing landlords massachusetts

Last synced: 5 days ago
JSON representation

Pulls weekly filing counts from MassLandlords (we use this as a baseline to ensure we're capturing all cases).

Awesome Lists containing this project

README

        

# MassLandlords Scraper

mll_screenshot

An exremely simple Python scraper to collect weekly [eviction filing counts from MassLandlords](https://masslandlords.net/policy/eviction-data/). We use these counts to validate the number of filings we're retrieving using our [filing downloader tool](https://github.com/Unnamed-Lab-DUSP/filing_downloader).

It fetches all counts starting from the week ending 10-24-2020 and continuing through the most recent available week.

It's extremely simple---its only requirement is the `requests` library. Per usual, get started by creating a python environment, activating it, and installing requirements.

```bash
python -m venv ./venv
source ./venv
python -m pip install -r requirements.txt
python ./scraper.py
```