Script to scrape SSSB's website and send email notifications when new listings are posted
A multi-arch docker image built for linux/amd64 and linux/arm64 is available on Docker Hub at andre15silva/sssb.
An example docker-compose configuration:
version: "3"
services:
sssb:
container_name: sssb
image: andre15silva/sssb:latest
environment:
SMTP_SERVER: 'YOUR_SMTP_SERVER'
SMTP_PORT: YOUR_SMTP_PORT
SMTP_USERNAME: 'YOUR_USERNAME'
SMTP_PASSWORD: 'YOUR_PASSWORD'
EMAIL_FROM: 'FROM_EMAIL'
EMAIL_TO: 'TO_EMAIL'
EMAIL_SUBJECT: 'New Student Apartment/Studio Available'
EXCLUDE_TYPES: '["Corridor room"]'
EXCLUDE_AREAS: '["Flemingsberg"]'
TIME_INTERVAL: 300 # 5 minutes
volumes:
- './out:/sssb/out'
restart: unless-stopped