We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
通过Example简单改写成以下程序
json_result = api.user_illusts(USER_ID ,type="illust") for illust in json_result.illusts: api.download(illust.image_urls.large)
这样只能下载p0图,同一个ID中的p1 p2... 需要如何使用api下载
The text was updated successfully, but these errors were encountered:
你可以看看json_result的内容,然后就能发现每一页图片的地址了。
json_result
from pprint import pprint # ... json_result = api.user_illusts(554102) pprint(json_result)
#236 也有几个例子。
Sorry, something went wrong.
非常感谢指点,答案全在json_result。
No branches or pull requests
通过Example简单改写成以下程序
这样只能下载p0图,同一个ID中的p1 p2... 需要如何使用api下载
The text was updated successfully, but these errors were encountered: