You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
gallery-dl oauth:flickr --verbose
[gallery-dl][debug] Version 1.1.2
[gallery-dl][debug] Python 3.4.4 - Windows-10-10.0.16299
[gallery-dl][debug] requests 2.18.4
[gallery-dl][debug] urllib3 1.22
[gallery-dl][debug] Starting DownloadJob for 'oauth:flickr'
[oauth][debug] Using OAuthFlickr for 'oauth:flickr'
[oauth][error] An unexpected error occurred: TypeError - urlencode() got an unexpected keyword argument 'quote_via'. Please run gallery-dl again with the --verbose flag, copy its output and report this issue on https://github.com/mikf/gallery-dl/issues .
[oauth][debug] Traceback
Traceback (most recent call last):
File "E:\gallery-dl\gallery_dl\job.py", line 59, in run
File "E:\gallery-dl\gallery_dl\extractor\oauth.py", line 184, in items
File "E:\gallery-dl\gallery_dl\extractor\oauth.py", line 81, in _oauth1_authorization_flow
File "E:\gallery-dl\gallery_dl\util.py", line 489, in get
File "E:\gallery-dl\gallery_dl\util.py", line 494, in sign
TypeError: urlencode() got an unexpected keyword argument 'quote_via'
Works fine when I install via pip (python 3.6.4)
The text was updated successfully, but these errors were encountered:
Windows binaries use Python 3.4 and the quote_via argument for urlencode(), which the error message is referring to, got first introduced in Python 3.5.
Damn... I haven't used the prebaked Windows binaries in quite a while, only my system Python and the pip package or the source archive. Otherwise I would have noticed this before as well..
Works fine when I install via pip (python 3.6.4)
The text was updated successfully, but these errors were encountered: