devanshbatham / ParamSpider

Mining URLs from dark corners of Web Archives for bug hunting/fuzzing/further probing
MIT License
2.34k stars 403 forks source link

encoding to utf-8 - solving the issue for installing the requirements when using "pip install ." #121

Open itsmessk opened 2 months ago

itsmessk commented 2 months ago

older one: long_description=open('README.md').read(),

This line is trying to read the README.md file using the default encoding, but it seems like the README.md file contains some characters that can't be decoded using the default encoding. So using the utf-8 encoding instead,

long_description=open('README.md', encoding='utf-8').read(),