Phub

Latest version: v4.7.6

Safety actively analyzes 724004 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 6 of 10

4.1.5

- Fix 27 and 28
- Pornstars now have their own objects inheriting from users, so their videos and uploads can be accessed separately
- Added FFMPEG progress callback support thanks to EchterAlsFake (29)

4.1.4

Changelog

- Added dict serializer for each PHUB object
- client.get can now initialise videos from videos
- Added path annotations
- Renamed query objects
- Subscriptions parsing with client.account.subscriptions
- Fix 27

4.1.3

- Image objects can now handle multiple image sources if the default server is down
- Implemented experimental RSS flux.
- User avatars can be fetched from Users objects using the `User.avatar` property.
- User avatars are refreshed with `User.refresh`.
- Added a `Client.search_pornstar` method.

v4.1.2-python-3.9
Same as 4.1.2, but for lower versions of Python.

4.1.2

Fixed `utils.concat` being system dependent and outputing backslashed URLs on windows.

4.1.1

Download improvements and refactors

- Refactored quality select dictionnary creation
- Refactored feed parsing regexes
- Added a function to reset the client session, thus allowing to refresh everything without having to initialise a new client in case of errors.
- Made default download display write a newline after download completion
- Thread downloader now has the ability to disable client request delay while downloading (enabled by default)
- Thread downloader now mounts a special https requests adapter while downloading to increase the urllib connection pool size by the amount of max workers
- Thread downloader now creates a new futures dict for each retry iteration (was very slow with futures being canceled for some reason)
- Better thread downloader logging
- Removed thread_FFMPEG downloader as threaded downloader is barely faster than FFMPEG so it makes no sense
- Refactored the way videos decide which title to fetch
- Better logo
- Updated logo image on PyPI
- Updated docs

4.1

Fixes a bunch of bugs and improves a few features.

Fixes
- Fixed JQuery and HQuery taking wrong parameters
- Fixed Feed type parsing being messy
- Fixed video title fetched to time at initialisation
- Fixed categories not able to reverse
- Fixed Param bruteforce concatenation on by default
- Fixed threaded and FFMPEG download (still experimental)
- Params with a None value are now excluded from being concatenated to another (but not the reverse)

Improvements
- Refactored param concatenation to use `|` instead of `+`
- Implemented sort filter sequence check
- Added an HD constant for searching
- Documented Param assertions
- Implemented `Param._concat`, which concatenates n params together, with the option to bruteforce their concatenation (used internally to test for constant types)
- You can now use the `in` keyword to check if a Param is inside another
- Updated docstrings
- User search has more parameters (unsure of the format, experimental): country, city and age
- Using concurent.futures instead of threading for threaded downloads

Note on downloads
Downloading is becoming more stable. You can use 3 download backends for one video:
- `phub.download.default`, default and dummy backend. It simply fetches a segment one after the other. It is stable but quite slow.
- `phub.download.FFMPEG`, which let FFMPEG handle the whole download. It makes it really stable and fast, but as FFMPEG is a CLI tool, progress display is not available. Callback will be called at start (`0`) and at the end (`1`).
- `phub.download.threaded`, which uses a threaded concurent.futures pool to download everything as fast as possible. This is still experimental but already quite faster than a default download. You can also select the maximum number of workers and requests timeouts.
python
Default download
video.download(..., downloader = phub.download.default)

FFMPEG download
video.download(..., downloader = phub.download.FFMPEG)

Threaded download
video.download(..., downloader = phub.download.threaded(max_workers = 50, timeout = 30))

Note that the best threaded parameters will depend on your CPU and connection speed. You might want a higher timeout if you have a slower connection, and less workers if you have a weak CPU.

Note on download callbacks
A single download callback is not enough if you want a more precise way of keeping track of the downloading process, you can create your own custom callback object that inherits from `phub.objects.Callback`:
python
from phub import Callback

class Tracker(Callback):
def on_download(progress: int):
Execute stuff on download progress
print('Downloading', progress, '/', self.total)

def on_write(progress: int):
Execute stuff on write progress
print('Writing', progress, '/', self.total)

video.download(..., display = Tracker)

This should be useful, e.g. if you are trying to download very long videos that nescessite to keep track of their writing progress.

Simple callbacks functions that takes only 2 arguments are still available, but will be automatically trasnformed to Callback objects and only the download progress will be available. I might implement more functions into this tracker in the future (errors, retry stuff, etc.).

Page 6 of 10

© 2025 Safety CLI Cybersecurity Inc. All Rights Reserved.