You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
using: python 3.5.0 on anaconda continuum
I had an issue UnicodeEncodeError: 'charmap' codec can't encode character I couldn't debug it.
~\Documents\GitHub\getsploit [master ≡]> python getsploit.py django
Total found exploits: 41
Web-search URL: https://vulners.com/search?query=bulletinFamily%3Aexploit+AND+django
Traceback (most recent call last):
File "getsploit.py", line 673, in <module>
main()
File "getsploit.py", line 670, in main
print(outputTable.draw())
File "C:\Users\Jeffrey\Miniconda3\lib\encodings\cp437.py", line 19, in encode
return codecs.charmap_encode(input,self.errors,encoding_map)[0]
UnicodeEncodeError: 'charmap' codec can't encode character '\uff09' in position 598: character maps to <undefined>
When I add a return (out[:-1]).encode('utf-8') into line 313 the output is not well formatted.
The text was updated successfully, but these errors were encountered:
Hmm. It looks like it's local problem with encoding on your machine, nope?
I may be wrong, but try to run 'chcp 65001' in your terminal before running the python file
First Thanks for this package!
using: python 3.5.0 on anaconda continuum
I had an issue
UnicodeEncodeError: 'charmap' codec can't encode character
I couldn't debug it.When I add a
return (out[:-1]).encode('utf-8')
into line 313 the output is not well formatted.The text was updated successfully, but these errors were encountered: