[Exhentai] Switching between Artists and Circle #7165
-
|
Kinda new here so sorry if I'm asking something that can't be done After following this topic, I was able to put an artist name into my directory and file name from exhentai My current issue is this: Is this possible? Is there any alternatives other people are using in this case? Thank you in advance
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
|
You should enable the For example {
"extractor": {
"exhentai": {
"tags": true,
"directory": {
"len(tags_artist) > 8 and tags_group": ["\fF { ' '.join(t.upper() for t in tags_group) }"],
"tags_artist": ["\fF { ' '.join(t.upper() for t in tags_artist[:8]) }"],
"": ["no artists or groups"]
}
}
}
} |
Beta Was this translation helpful? Give feedback.
You should enable the
tagsoption to have easier access toartistandgrouptags astags_.... You can then use conditional directory/file names and adjust what to use based on whatever condition(s) you want.For example
{ "extractor": { "exhentai": { "tags": true, "directory": { "len(tags_artist) > 8 and tags_group": ["\fF { ' '.join(t.upper() for t in tags_group) }"], "tags_artist": ["\fF { ' '.join(t.upper() for t in tags_artist[:8]) }"], "": ["no artists or groups"] } } } }