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
这其实是 https://github.com/zaxtyson/LanZouCloud-API 的bug。
当文件名太长而没有显示后缀名时,_get_right_name https://github.com/zaxtyson/LanZouCloud-API/blob/89f4d3e00d2cbf51cd7e8c64dfad9bf499923b49/lanzou/api.py#L291
_get_right_name
fn_list = filename.replace('#', '.').split('.') suffix, sub_suffix = fn_list[-1], fn_list[-2]
list 发生越界错误 IndexError: list index out of range。
https://i.loli.net/2020/02/23/lJXm1S5xRvUPCuo.png https://i.loli.net/2020/02/23/vJ4QLCgiFPekHuw.png
最后有一个疑问,
LanZouCloud-CMD/lanzou-cmd.py
Line 5 in ca82bf4
readline
https://stackoverflow.com/questions/51157443/pythons-readline-module-not-available-for-windows
The text was updated successfully, but these errors were encountered:
是的, readline 模块早在2012年就废弃了,作者把它改名为了 gnureadline : https://pypi.org/project/gnureadline/ 但是它也不支持 Windows,要在 Windows 上使用 readline 其实要安装 pyreadline,这个之前没说明😜。回收站我去看看先~
gnureadline
pyreadline
Sorry, something went wrong.
dev 分支已经修复,https://github.com/zaxtyson/LanZouCloud-API/tree/dev 顺带过了登录时的滑动验证👌
dev
No branches or pull requests
这其实是 https://github.com/zaxtyson/LanZouCloud-API 的bug。
当文件名太长而没有显示后缀名时,
_get_right_name
https://github.com/zaxtyson/LanZouCloud-API/blob/89f4d3e00d2cbf51cd7e8c64dfad9bf499923b49/lanzou/api.py#L291
list 发生越界错误
IndexError: list index out of range。
https://i.loli.net/2020/02/23/lJXm1S5xRvUPCuo.png
https://i.loli.net/2020/02/23/vJ4QLCgiFPekHuw.png
最后有一个疑问,
LanZouCloud-CMD/lanzou-cmd.py
Line 5 in ca82bf4
readline
在windows平台上好像装不上啊,python3.8.1https://stackoverflow.com/questions/51157443/pythons-readline-module-not-available-for-windows
The text was updated successfully, but these errors were encountered: