Caution
Iterating through subscriptions or recommended videos is currently broken.
PHUB is an hybrid API for Pornhub. It is able to communicate with Pornhub using both web-scraping and Pornhub's HubTraffic API. It is able to access most used or useful PH features, such as video searching, accessing account features, video downloading, and a lot more.
Warning
This project is probably against Pornhub TOS. Use at your own risks.
- Install using
pip
(python3.11
or higher required, recommended version):
pip install --upgrade phub
- Or from this repo to get latest fixes/features:
pip install --upgrade git+https://github.com/Egsagon/PHUB.git
- Or, for python 3.9 and higher (:warning: not updated as often)
pip install --upgrade git+https://github.com/Egsagon/[email protected]
Note
You can find the docs on this project here.
import phub
from phub.locals import *
# Initialise a client
client = phub.Client()
# Fetch and download a video
video = client.get('https://...')
video.download('my-video.mp4', Quality.BEST)
# Fetch user videos
user = client.get_user('this-user')
for video in user.videos:
print(video.title)
# Perform a research
for video in client.search('my-query'):
print(video.title)
# Connect to an account
client = phub.Client('my-username', 'my-password')
# Access account history, liked and recommended stuff
client.account.watched
client.account.liked
client.account.recommended
PHUB uses GPLv3. See the LICENSE
file.
Feel free to contribute to this project by submiting feature requests, issues, bugs, or whatever.