-
-
Notifications
You must be signed in to change notification settings - Fork 975
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[yandere] pool title #4646
Comments
Enable |
It's "possible", but it wouldn't be pretty and the order would probably be wrong as well ... |
What do you mean by "order would probably be wrong"? Are the pics returned in a different order than they appear on site?
I'm stupid and didn't notice a new commit.=) |
I don't know if this is also the case for moebooru instances, but for a |
Regarding enumerating (pool) posts: It is possible to (ab)use
num = 0
def num_init(kwdict):
global num
num = 0
def num_inc(kwdict):
global num
num += 1
kwdict["num"] = num
"postprocessors": [
{
"name": "python",
"event": "init",
"function": "/tmp/_/gdl_utils.py:num_init"
},
{
"name": "python",
"event": "post",
"function": "/tmp/_/gdl_utils.py:num_inc"
}
] (replace "/tmp/_/gdl_utils.py" with the actual path) Result:
|
Well, yandere doesn't return post inside a pool ordered by id. Not in So I thought about just enumeration from gallery-dl. Which one post returned in pool first gets 1, second - 2, etc. Danbooru inside pool ( Update: checked Moebooru and MyImouto sites from SupportedSites.md: Don't know if any of this is useful for you. |
https://yande.re/pool/show/98590
gallery-dl.exe https://yande.re/pool/show/98590 -K
doesn't have any tag (I wanted for directory) that would contain title of pool: "Megami #279 2023-08"And also for some extractors (like submission on reddit that contains gallery) gallery-dl has
num
field. Is it possible to add for yandere pools also?The text was updated successfully, but these errors were encountered: