UltimaHoarder / UltimaScraper

Scrape all the media from an OnlyFans account - Updated regularly
GNU General Public License v3.0
3.96k stars 607 forks source link

Help with Blacklisting #2105

Open RandomGuy5598 opened 3 months ago

RandomGuy5598 commented 3 months ago

I guess I'm doing something wrong here. Can anyone give me a working example of how to use the Blacklist feature? Or let me know if there's something else I have wrong...

  "delete_legacy_metadata": false,
          "text_length": 255,
          "video_quality": "source",
          "overwrite_files": false,
          "date_format": "%Y-%m-%d",
          "ignored_keywords": [],
          "ignore_type": "",
          "blacklists": [],
          "webhook": true

For "blacklists": [],, I've tried:

  "blacklists": [creatorName],
  "blacklists": ["creatorName"],
  "blacklists": "creatorName",
  "blacklists": creatorName,
  "blacklists": [customList],
  "blacklists": ["customList"],
  "blacklists": "customList",
  "blacklists": customList,

None of these have worked for me. It always tries to download this one creators content. The reason I need to blacklist this particular creator is because they have 1,200+ videos and 12,000+ images. It always get stuck on them. I've let it run for a full day. It has downloaded all of their content, but will not proceed past this.

Any assistance or insight into this would be greatly appreciated. Thank you! :)

I don't know if any of these may be affecting it, but these are what my other current settings are:

  "supported": {
      "onlyfans": {
        "settings": {
    "auto_profile_choice": "default",
          "auto_model_choice": true,
          "auto_api_choice": true,
          "auto_media_choice": "all",
          "browser": {
            "auth": true
          },
          "jobs": {
            "scrape": {
              "subscriptions": true,
              "messages": true,
              "paid_contents": true
            },
            "metadata": {
              "posts": true,
              "comments": true
            }
          },
haughingtrust commented 3 months ago

Have you tried "blacklists": ["creator1", "creator2", "creator3"...]

RandomGuy5598 commented 3 months ago

Have you tried "blacklists": ["creator1", "creator2", "creator3"...]

I have tried that. But it's only 1 creator, so idk if I need that comma after them like ["creator1",]. I don't think I tried that. And with the previously mentioned formats I tried, I tried them again a few days later just to make sure I didn't accidentally mess something up or skip something last time. Still none of them worked.

I even tried turning off the scrape paid and messages just incase it was triggering them from one of those options. Still kept scraping and locking up on her. For the few creators it was skipping because ofnlocking up, I just changed the config from a fully automated run to me having to manually pick the creators 1 by 1. It wasn't many, so it wasn't bad.

I even tried changing blacklists to blacklisted like in the old/original example on the main page and in the documentation or whatever. That just threw an error as well. I have no clue what I'm missing, or if there's some code error overlooked from changing something. But surely there are others using the blacklist feature with zero issues. So I have no clue.

At least it won't be an issue after the subscription expires.

Thanks for the reply! :D

And sorry for the novel...