-
Notifications
You must be signed in to change notification settings - Fork 19
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
Support for Python3 #5
Comments
To support both Python 2 and 3, you might have to publish two different versions on PyPI repository. |
This should be a pull request ;-) |
This package is not maintained anymore. Last update was 5 years ago and Python 2 now being deprecated. See also #6 |
Is there no other solution other than to mount the bucket via |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The command was initially developed for Python 2, but now breaks with Python 3.
These only small changes are needed to correct the errors:
s3_directory_generator.py
: renameurlparse
tourllib.parse
see The urlparse module is renamed to urllib.parse in Python 3 FriendCode/gittle#49main.py
: remove that unused importmain.py
: use the standardtry except
syntax.ncdu_data_writer.py
: replacexrange
withrange
that are now equivalent : see range-vs-xrange-pythondirectory_walker.py
: renameizip_longest
tozip_longest
The text was updated successfully, but these errors were encountered: