- Introduction
- Features
- Installation
- Configuration
- Usage
- Examples
- Notification Format
- Troubleshooting
- FAQ
- Architecture
- Contributing
- License
- Acknowledgements
Harlow Bindicator is an automated tool that helps Harlow residents stay informed about their bin collection schedules. The application scrapes the Harlow Local Authority website to retrieve bin collection dates for a specified property and sends timely notifications through ntfy.sh when bins need to be put out. Never miss bin day again!
A "bindicator" is a notification system for bin collection days - the name is a blend of "bin" and "indicator."
- Automatically retrieves bin collection dates from the Harlow Local Authority website
- Sends notifications when bins need to be put out
- Specifies which bin type needs collection (recycling, general waste)
- Can be run locally or as a GitHub Action
- Easy setup and configuration
- Customizable notification options
- Cross-platform compatibility
- Python 3.7 or higher
- Chromedriver (for web scraping)
- Internet connection
- A UPRN (Unique Property Reference Number) for your address
- A ntfy.sh topic for notifications
The easiest way to install Harlow Bindicator is via pip:
pip install harlow-bindicator
If you prefer to install from source:
git clone https://github.com/joe-mccarthy/harlow-bindicator.git
cd harlow-bindicator
pip install -e .
sudo apt-get install chromium-chromedriver
brew install --cask chromedriver
Download ChromeDriver from https://chromedriver.chromium.org/downloads and add it to your PATH.
- UPRN: Unique Property Reference Number that identifies your property. You can find your UPRN at Find My Address.
- ntfy.sh Topic: Create a unique topic name at ntfy.sh to receive notifications.
There's a workflow file in this repository, check-binday.yml, which is scheduled to run early each morning to check for bin collections.
To use this workflow:
- Fork this repository
- Add two repository secrets in your GitHub settings:
UPRN
: Your property's Unique Property Reference NumberNTFY_TOPIC
: Your ntfy.sh topic name
- Enable GitHub Actions for your repository
The workflow will run automatically according to the schedule defined in the workflow file.
After installation, you can run Harlow Bindicator from the command line:
harlow-bindicator --uprn "12345678" --topic "your-topic-name"
harlow-bindicator [OPTIONS]
Options:
--uprn TEXT UPRN for the property to check [required]
--topic TEXT ntfy.sh topic to publish notifications to [required]
To run automatically on Linux/macOS, add a cron job:
# Edit crontab
crontab -e
# Add this line to run at 7:00 AM every day
0 7 * * * /usr/local/bin/harlow-bindicator --uprn "12345678" --topic "your-topic-name"
harlow-bindicator --uprn "12345678" --topic "bin-notifications"
When a bin collection is detected, you will receive a notification via ntfy.sh with:
- Title: "Bin Collection Tomorrow: [Bin Type]"
- Message: Information about which bin(s) need to be put out
- Priority: Default (adjustable in future versions)
Example notification:
Bin Collection Tomorrow: Recycling
Please put out your Blue Recycling bin tonight for collection tomorrow.
-
ChromeDriver Error:
- Make sure ChromeDriver is installed and in your PATH
- Check if the ChromeDriver version matches your Chrome version
-
No Notifications Received:
- Verify your ntfy.sh topic is correct
- Check if you're subscribed to the topic in ntfy.sh
- Ensure your internet connection is stable
-
UPRN Not Working:
- Double-check your UPRN is correct
- Verify your property is within the Harlow Local Authority area
Q: What is a UPRN?
A: A Unique Property Reference Number (UPRN) is a unique identifier for addressable locations in the UK. You can find yours at Find My Address.
Q: What is ntfy.sh?
A: ntfy.sh is a free, simple HTTP-based publish-subscribe notification service. It allows you to send notifications to your phone or desktop without setting up any accounts.
Q: How do I receive the notifications?
A: Download the ntfy app (Android, iOS), or use the web interface. Subscribe to your topic name.
Q: Does this work for areas outside Harlow?
A: No, this tool is specifically designed for the Harlow Local Authority website. Fork the project to adapt it for other regions.
Q: How accurate are the notifications?
A: The tool scrapes the official Harlow Council website, so the notifications are as accurate as the data provided by the council.
Harlow Bindicator works by:
- Using ChromeDriver to open a headless browser session
- Navigating to the Harlow Council bin collection page
- Submitting the UPRN to retrieve collection information
- Parsing the returned data for upcoming collections
- Determining if a notification is needed based on the collection dates
- Sending a notification via ntfy.sh if a collection is scheduled within the specified timeframe
Contributions are what make the open-source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.
If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement".
Don't forget to give the project a star! Thanks again!
- Fork the Project
- Create your Feature Branch (
git checkout -b feature/AmazingFeature
) - Commit your Changes (
git commit -m 'Add some AmazingFeature'
) - Push to the Branch (
git push origin feature/AmazingFeature
) - Open a Pull Request
This project is licensed under the MIT License - see the LICENSE file for details.
- ntfy.sh for providing a simple notification service
- Selenium for web automation
- Harlow Council for providing the bin collection data
- All contributors who have helped improve this project