├── .gitignore ├── LICENSE ├── PhantomCrawler.py ├── README.md ├── image ├── Screenshot_2023-12-04_at_9.08.26_PM.png └── phantom (1).png ├── proxies.txt └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spyboy-productions/PhantomCrawler/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spyboy-productions/PhantomCrawler/HEAD/LICENSE -------------------------------------------------------------------------------- /PhantomCrawler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spyboy-productions/PhantomCrawler/HEAD/PhantomCrawler.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spyboy-productions/PhantomCrawler/HEAD/README.md -------------------------------------------------------------------------------- /image/Screenshot_2023-12-04_at_9.08.26_PM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spyboy-productions/PhantomCrawler/HEAD/image/Screenshot_2023-12-04_at_9.08.26_PM.png -------------------------------------------------------------------------------- /image/phantom (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spyboy-productions/PhantomCrawler/HEAD/image/phantom (1).png -------------------------------------------------------------------------------- /proxies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spyboy-productions/PhantomCrawler/HEAD/proxies.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests 2 | beautifulsoup4 3 | --------------------------------------------------------------------------------