Exodus-Privacy / exodus-core

Core functionality of εxodus
GNU Affero General Public License v3.0
18 stars 17 forks source link

replace the library urllib by requests #18

Closed counter-reverse closed 4 years ago

counter-reverse commented 5 years ago

Exodus privacy is currently using the library urllib: https://docs.python.org/3.0/library/urllib.request.html to parse http/https requests. I suggest to change to go on requests: http://docs.python-requests.org/en/master/ because the library is easier to read and write.

You can read the code of Exodus privacy core where is used urllib here: https://github.com/Exodus-Privacy/exodus-core/blob/v1/exodus_core/analysis/static_analysis.py#L19

counter-reverse commented 5 years ago

I finally finished to solve this issue alone. I just have to push the changes now.