From 05593fbe8cb60a986f96cb74ada8c5df28886967 Mon Sep 17 00:00:00 2001 From: Noe <101264710+Vxrtrauter@users.noreply.github.com> Date: Sun, 15 Dec 2024 14:00:11 +0100 Subject: [PATCH] fix variables --- scraper.py | 80 ++++++++++++++++++++++++++++-------------------------- 1 file changed, 42 insertions(+), 38 deletions(-) diff --git a/scraper.py b/scraper.py index 4460406..9f7b290 100644 --- a/scraper.py +++ b/scraper.py @@ -1,43 +1,47 @@ from bs4 import BeautifulSoup import requests -# 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/" +# DirectDL +DDL = { + "https://steamrip.com/", + "https://cs.rin.ru/", + "https://gamesdrive.net/", + "https://gog-games.to/", + "https://forum.torrminatorr.com/", + "https://ankergames.net/", + "https://www.ovagames.com/", + "https://online-fix.me/", + "https://gamebounty.world/", + "https://steamgg.net/", + "https://g4u.to/", + "https://appnetica.com/", + "https://atopgames.com/", + "https://games4u.org/", + "https://rexagames.com/", + "https://cr4ckpass.online/", + "https://getfreegames.net/", + "https://gload.to/", + "https://steamunderground.net/", + "https://worldofpcgames.com/", + "http://www.leechinghell.pw/", + "https://awtdg.site/", + "https://www.cg-gamespc.com/" + "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/" \ No newline at end of file +re_tor = { + "https://www.kaoskrew.org/", + "https://fitgirl-repacks.site/", + "https://m4ckd0ge-repacks.site/", + "https://byxatab.com/", + "https://digital-zone.xyz/", + "https://elamigos.site/", + "https://dodi-repacks.site/", + "https://www.tiny-repacks.win/", + "https://freegogpcgames.com/", + "https://www.magipack.games/", + "https://collectionchamber.blogspot.com/", + "https://archive.org/details/classicpcgames", + "https://websites.umich.edu/~archive/", +}