Open djmarioka opened 10 months ago
You can replace in venv/Lib/site-packages/ultima_scraper_api/apis/onlyfans/classes/auth_model.py in line 189
ceil = math.ceil(subscription_type_count / limit)
with
ceil = math.ceil(subscription_type_count / limit * 1.2)
Apparently OF gives lists with holes, so you need to fetch more. If you still have not all of your subscriptions, replace 1.2 with 1.5 or greater
if you have the problem that not all media is scraped, the same adjustment can be made in
venv/Lib/site-packages/ultima_scraper_api/apis/onlyfans/classes/extras.py in line 356
Replace
ceil = math.ceil(api_count / limit)
with
ceil = math.ceil(api_count / limit * 1.2)
Hi,
I'm now with a limit of 187 subscriptions, not 220, I don't know what's happening.
Could anybody help me?.
Thanks.
if you have the problem that not all media is scraped, the same adjustment can be made in venv/Lib/site-packages/ultima_scraper_api/apis/onlyfans/classes/extras.py in line 356 Replace
ceil = math.ceil(api_count / limit)
withceil = math.ceil(api_count / limit * 1.2)
I don't see this file anywhere or that line to replace. Is this outside of the repo? Is this from an old version?
its where the python libraries are installed I do not know exactly how your setup is, there are multiple possibilities
Hi,
I'm receiving 207 subscriptions, and I have about 220 subscriptions, I've tried to change the parameters in the config.json file, but it doesnt' get all the subscriptions:
Could anybody know how could I get all the subscriptions?.
Thanks.