Traceback:
File "cefpython_py27.pyx", line 859, in cefpython_py27.CreateBrowserSync (cefpython_py27.cpp:101641) File "utils.pyx", line 100, in cefpython_py27.GetNavigateUrl (cefpython_py27.cpp:7310) File "C:\Python27\lib\nturl2path.py", line 60, in pathname2url raise IOError, error IOError: Bad path: http://127.0.0.1:54008/
It seems that is causing the issue:
# Need to encode chinese characters in local file paths, # otherwise CEF will try to encode them by itself. But it # will fail in doing so. CEF will return the following string: # >> %EF%BF%97%EF%BF%80%EF%BF%83%EF%BF%A6 # But it should be: # >> %E6%A1%8C%E9%9D%A2 url = urllib_pathname2url(url)
Ref:
url = urllib_pathname2url(url)That urllib func is imported in cefpython.pyx
if sys.version_info.major == 2: # noinspection PyUnresolvedReferences from urllib import pathname2url as urllib_pathname2url else: # noinspection PyUnresolvedReferences from urllib.request import pathname2url as urllib_pathname2url
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4