Skip to content

Instantly share code, notes, and snippets.

View fauxnik's full-sized avatar

Niko Fox fauxnik

View GitHub Profile
@sfuller
sfuller / parkscraper.py
Created February 22, 2022 01:31
Golden gate picnic table reservation site availability checker
#!/usr/bin/env python3
# pip install requests beautifulsoup4
import argparse
import re
import datetime
import time
import pickle
from typing import Iterable, List, Dict, Tuple
import requests