Steamrip Scraper and DDL link input

This commit is contained in:
KeksNino
2024-12-15 15:10:23 +01:00
parent cc71a014ab
commit a4923c931b
3 changed files with 79 additions and 50 deletions
+63 -39
View File
@@ -1,43 +1,67 @@
from bs4 import BeautifulSoup
import requests
import re
# DDL
url = "https://steamrip.com/"
url = "https://cs.rin.ru/"
url = "https://gamesdrive.net/"
url = "https://gog-games.to/"
url = "https://forum.torrminatorr.com/"
url = "https://ankergames.net/"
url = "https://www.ovagames.com/"
url = "https://online-fix.me/"
url = "https://gamebounty.world/"
url = "https://steamgg.net/"
url = "https://g4u.to/"
url = "https://appnetica.com/"
url = "https://atopgames.com/"
url = "https://games4u.org/"
url = "https://rexagames.com/"
url = "https://cr4ckpass.online/"
url = "https://getfreegames.net/"
url = "https://gload.to/"
url = "https://steamunderground.net/"
url = "https://worldofpcgames.com/"
url = "http://www.leechinghell.pw/"
url = "https://awtdg.site/"
url = "https://www.cg-gamespc.com/"
url = "https://gamepcfull.com/"
url = "https://steamrip.com/games-list-page/"
# Repacks/Torrents
url = "https://www.kaoskrew.org/"
url = "https://fitgirl-repacks.site/"
url = "https://m4ckd0ge-repacks.site/"
url = "https://byxatab.com/"
url = "https://digital-zone.xyz/"
url = "https://elamigos.site/"
url = "https://dodi-repacks.site/"
url = "https://www.tiny-repacks.win/"
url = "https://freegogpcgames.com/"
url = "https://www.magipack.games/"
url = "https://collectionchamber.blogspot.com/"
url = "https://archive.org/details/classicpcgames"
url = "https://websites.umich.edu/~archive/"
response = requests.get(url)
if response.status_code == 200:
soup = BeautifulSoup(response.text, "html.parser")
links = soup.find_all("a")
for link in links:
href = link.get("href", "").lower()
text = link.text.strip()
if re.search(r"/Discord/", href):
continue
games = soup.find_all("li")
if games:
print("Games Found:")
for game in games:
print(game.text.strip())
else:
print("No game titles found. Report this on Github.")
else:
print(f"Failed to retrieve the page. Status code: {response.status_code}")
# url = "https://cs.rin.ru/"
# url = "https://gamesdrive.net/"
# url = "https://gog-games.to/"
# url = "https://forum.torrminatorr.com/"
# url = "https://ankergames.net/"
# url = "https://www.ovagames.com/"
# url = "https://online-fix.me/"
# url = "https://gamebounty.world/"
# url = "https://steamgg.net/"
# url = "https://g4u.to/"
# url = "https://appnetica.com/"
# url = "https://atopgames.com/"
# url = "https://games4u.org/"
# url = "https://rexagames.com/"
# url = "https://cr4ckpass.online/"
# url = "https://getfreegames.net/"
# url = "https://gload.to/"
# url = "https://steamunderground.net/"
# url = "https://worldofpcgames.com/"
# url = "http://www.leechinghell.pw/"
# url = "https://awtdg.site/"
# url = "https://www.cg-gamespc.com/"
# url = "https://gamepcfull.com/"
# # Repacks/Torrents
# url = "https://www.kaoskrew.org/"
# url = "https://fitgirl-repacks.site/"
# url = "https://m4ckd0ge-repacks.site/"
# url = "https://byxatab.com/"
# url = "https://digital-zone.xyz/"
# url = "https://elamigos.site/"
# url = "https://dodi-repacks.site/"
# url = "https://www.tiny-repacks.win/"
# url = "https://freegogpcgames.com/"
# url = "https://www.magipack.games/"
# url = "https://collectionchamber.blogspot.com/"
# url = "https://archive.org/details/classicpcgames"
# url = "https://websites.umich.edu/~archive/"