├── LICENSE ├── README.md ├── Ui_gui.py ├── get_video.py └── make.bat /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantumLiu/PornHub_downloader/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # PornHub_downloader 2 | Crawling links of .mp4 video files from page URL 3 | -------------------------------------------------------------------------------- /Ui_gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantumLiu/PornHub_downloader/HEAD/Ui_gui.py -------------------------------------------------------------------------------- /get_video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantumLiu/PornHub_downloader/HEAD/get_video.py -------------------------------------------------------------------------------- /make.bat: -------------------------------------------------------------------------------- 1 | pyinstaller -F -w -p c:\Anaconda3\Lib\site-packages\PyQt5\Qt\bin Ui_gui.py --------------------------------------------------------------------------------