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
Hi, I've fixed the URLError bug of language-check installation, which seems a temporary solution.
On line 19, add a function
from urllib.request import urlopen, Request
On line 128, add headers
headers = {'User-Agent': 'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:23.0) Gecko/20100101 Firefox/23.0'} req = Request(url=url, headers=headers) with closing(urlopen(req)) as u: """ Reference: https://blog.csdn.net/eric_sunah/article/details/11301873 """
Actually just add a header and the installatiion will be okay.
The text was updated successfully, but these errors were encountered:
Already done in #79, just not merged yet.
Sorry, something went wrong.
No branches or pull requests
Hi, I've fixed the URLError bug of language-check installation, which seems a temporary solution.
On line 19, add a function
On line 128, add headers
Actually just add a header and the installatiion will be okay.
The text was updated successfully, but these errors were encountered: