├── .gitignore ├── LICENSE ├── README.md ├── lib ├── __init__.py ├── abstract_scraper.py ├── command │ ├── __init__.py │ ├── args_checker.py │ ├── builder.py │ └── phuber_args.py └── pornhub │ ├── __init__.py │ ├── checker.py │ ├── configurator.py │ ├── data.py │ └── scraper.py ├── phuber.py ├── requirements.txt └── test └── pornhub └── test_scraper.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZimCodes/phuber/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZimCodes/phuber/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZimCodes/phuber/HEAD/README.md -------------------------------------------------------------------------------- /lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/abstract_scraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZimCodes/phuber/HEAD/lib/abstract_scraper.py -------------------------------------------------------------------------------- /lib/command/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/command/args_checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZimCodes/phuber/HEAD/lib/command/args_checker.py -------------------------------------------------------------------------------- /lib/command/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZimCodes/phuber/HEAD/lib/command/builder.py -------------------------------------------------------------------------------- /lib/command/phuber_args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZimCodes/phuber/HEAD/lib/command/phuber_args.py -------------------------------------------------------------------------------- /lib/pornhub/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/pornhub/checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZimCodes/phuber/HEAD/lib/pornhub/checker.py -------------------------------------------------------------------------------- /lib/pornhub/configurator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZimCodes/phuber/HEAD/lib/pornhub/configurator.py -------------------------------------------------------------------------------- /lib/pornhub/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZimCodes/phuber/HEAD/lib/pornhub/data.py -------------------------------------------------------------------------------- /lib/pornhub/scraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZimCodes/phuber/HEAD/lib/pornhub/scraper.py -------------------------------------------------------------------------------- /phuber.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZimCodes/phuber/HEAD/phuber.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZimCodes/phuber/HEAD/requirements.txt -------------------------------------------------------------------------------- /test/pornhub/test_scraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZimCodes/phuber/HEAD/test/pornhub/test_scraper.py --------------------------------------------------------------------------------