AppPixivAPI.user_illusts() cannot ignore "type" parameter.
See original GitHub issueTry
def user_illusts(self, user_id, illust_type=None, illust_filter='for_ios', offset=None, req_auth=False):
url = 'https://app-api.pixiv.net/v1/user/illusts'
params = {
'user_id': user_id,
'filter': illust_filter
}
if illust_type:
params['type'] = illust_type
if offset:
params['offset'] = offset
r = self.no_auth_requests_call('GET', url, params=params, req_auth=req_auth)
return self.parse_result(r)
If type
not in params
, every type of illust can be fetched, including ugoria.
Issue Analytics
- State:
- Created 6 years ago
- Comments:8 (5 by maintainers)
Top Results From Across the Web
pytype | A static type analyzer for Python code - Google
assert-type. The error message displays the expected and actual type of the expression passed to assert_type() if the two do not match. Example:....
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
As far as I know,
type
can takeillust
,manga
,novel
orugoira
.This commit included in v3.3.3