-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
75 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
import logging | ||
from pathlib import Path | ||
from typing import Dict, List | ||
|
||
from .. import utils | ||
from ..cache import Cache | ||
from ..platforms.muckrock import process_muckrock | ||
|
||
# from ..utils import MetadataDict | ||
|
||
logger = logging.getLogger(__name__) | ||
|
||
|
||
class Site: | ||
"""Scrape file metadata for the Tulare Police Department. | ||
Attributes: | ||
name (str): The official name of the agency | ||
""" | ||
|
||
name = "Tulare Police Department" | ||
|
||
def __init__( | ||
self, | ||
data_dir: Path = utils.CLEAN_DATA_DIR, | ||
cache_dir: Path = utils.CLEAN_CACHE_DIR, | ||
): | ||
"""Initialize a new instance. | ||
Args: | ||
data_dir (Path): The directory where downstream processed files/data will be saved | ||
cache_dir (Path): The directory where files will be cached | ||
""" | ||
self.site_slug = "ca_tulare_pd" | ||
self.base_url = ( | ||
"https://www.muckrock.com/foi/tulare-3477/sb1421-records-85929" # Embargoed | ||
) | ||
# Initial disclosure page (aka where they start complying with law) contains list of "detail"/child pages with links to the SB16/SB1421/AB748 videos and files | ||
# along with additional index pages | ||
self.data_dir = data_dir | ||
self.cache_dir = cache_dir | ||
self.subpages_dir = cache_dir / (self.site_slug + "/subpages") | ||
self.cache = Cache(cache_dir) | ||
for localdir in [self.cache_dir, self.data_dir, self.subpages_dir]: | ||
utils.create_directory(localdir) | ||
|
||
def scrape_meta(self, throttle: int = 2) -> Path: | ||
"""Gather metadata on downloadable files (videos, etc.). | ||
Args: | ||
throttle (int): Number of seconds to wait between requests. Defaults to 0. | ||
Returns: | ||
Path: Local path of JSON file containing metadata on downloadable files | ||
""" | ||
to_be_scraped: Dict = { | ||
"https://www.muckrock.com/foi/tulare-3477/sb1421-records-85929": True, | ||
"https://www.muckrock.com/foi/tulare-3477/2023-sb1421sb16-request-tulare-police-department-139456": True, | ||
} | ||
|
||
metadata: List = [] | ||
|
||
subpages_dir = self.subpages_dir | ||
|
||
api_key = utils.get_credentials("MUCKROCK_CRP") | ||
|
||
for start_url in to_be_scraped: | ||
force = to_be_scraped[start_url] | ||
local_metadata = process_muckrock(subpages_dir, start_url, api_key, force) | ||
metadata.extend(local_metadata) | ||
|
||
json_filename = self.data_dir / (self.site_slug + ".json") | ||
self.cache.write_json(json_filename, metadata) | ||
|
||
return json_filename |