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
run_command方法中的返回语句字符集需要修改为“gbk” return output.decode("gbk").rstrip("\r\n")
get_password方法中,判断为"win32“的分支需要修改 elif sys.platform == "win32": password = run_command(f"netsh wlan show profile name="{ssid}" key=clear") password = re.findall(r"关键内容\s+:\s(.*)", password)[0]
Originally posted by @weibasai in sdushantha/wifi-password#50
The text was updated successfully, but these errors were encountered:
how to deal with it?
Sorry, something went wrong.
run_command方法中的返回语句字符集需要修改为“gbk” return output.decode("gbk").rstrip("\r\n") get_password方法中,判断为"win32“的分支需要修改 elif sys.platform == "win32": password = run_command(f"netsh wlan show profile name=\"{ssid}\" key=clear") password = re.findall(r"关键内容\s+:\s(.*)", password)[0] Originally posted by @weibasai in sdushantha/wifi-password#50
run_command方法中的返回语句字符集需要修改为“gbk”
return output.decode("gbk").rstrip("\r\n")
get_password方法中,判断为"win32“的分支需要修改
elif sys.platform == "win32":
password = run_command(f"netsh wlan show profile name=\"{ssid}\" key=clear") password = re.findall(r"关键内容\s+:\s(.*)", password)[0]
Not in scope for this repo.
No branches or pull requests
run_command方法中的返回语句字符集需要修改为“gbk”
return output.decode("gbk").rstrip("\r\n")
get_password方法中,判断为"win32“的分支需要修改
elif sys.platform == "win32":
password = run_command(f"netsh wlan show profile name="{ssid}" key=clear")
password = re.findall(r"关键内容\s+:\s(.*)", password)[0]
Originally posted by @weibasai in sdushantha/wifi-password#50
The text was updated successfully, but these errors were encountered: