Last active
November 1, 2025 00:57
-
-
Save luckylittle/5298de0ec0b493f4c5326d1abff42914 to your computer and use it in GitHub Desktop.
AutoBrr List that contains release schedule from the website dvdsreleasedates.com
This file contains hidden or 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
| #!/bin/python | |
| import requests | |
| from bs4 import BeautifulSoup | |
| def extract_dvd_titles(): | |
| """ | |
| Extracts DVD/Blu-ray titles from dvdsreleasedates.com for the current month | |
| """ | |
| url = "https://www.dvdsreleasedates.com" | |
| try: | |
| response = requests.get(url, headers={ | |
| 'User-Agent': 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.6850.0 Safari/537.36' | |
| }) | |
| response.raise_for_status() | |
| soup = BeautifulSoup(response.content, 'html.parser') | |
| movie_cells = soup.find_all('td', class_='dvdcell') | |
| titles = [] | |
| for cell in movie_cells: | |
| title_link = cell.find('a', style='color:#000;') | |
| if title_link: | |
| title = title_link.get_text(strip=True) | |
| titles.append(title.lower()) | |
| titles = list(dict.fromkeys(titles)) | |
| return titles | |
| except requests.RequestException as e: | |
| print(f"Error fetching webpage: {e}") | |
| return [] | |
| except Exception as e: | |
| print(f"Error parsing data: {e}") | |
| return [] | |
| def main(): | |
| titles = extract_dvd_titles() | |
| if titles: | |
| for title in sorted(titles): | |
| print(title) | |
| if __name__ == "__main__": | |
| main() |
This file contains hidden or 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
| a remarkable place to die: series 1 | |
| bleeding | |
| bone lake | |
| caught stealing | |
| cheech & chong's last movie - limited edition steelbook | |
| daniela forever | |
| downton abbey: the grand finale | |
| ed kemper | |
| eden | |
| freakier friday | |
| gabby's dollhouse: the movie | |
| happy's place: season one | |
| him | |
| house on eden | |
| looking through water | |
| primitive war | |
| prisoner of war dvd | |
| red sonja | |
| rick and morty: season eight | |
| seeds | |
| spinal tap ii: the end continues | |
| splitsville | |
| the conjuring: last rites | |
| the jester 2 | |
| the long walk | |
| the morning show: seasons 1 & 2 boxset | |
| the naked gun | |
| the roses | |
| together | |
| what we hide | |
| xeno |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
How to use this in AutoBrr?
https://<AUTOBRR_IP>:<AUTOBRR_PORT>/settings/listshttps://gist.githubusercontent.com/luckylittle/5298de0ec0b493f4c5326d1abff42914/raw/dvdsreleasedates.txt