UlionTse / translators

🌏🌍🌎Translators🌎🌍🌏 is a library that aims to bring free, multiple, enjoyable translations to individuals and students in Python. Translators是一个旨在用Python为个人和学生带来免费、多样、愉快翻译的库。
https://pypi.org/project/translators/
GNU General Public License v3.0
1.62k stars 189 forks source link

Use json.loads instead of eval to parse web response #118

Closed ghtyrant closed 1 year ago

ghtyrant commented 1 year ago

Using eval to parse untrusted content is dangerous. This pull request makes use of json.loads instead, which should mitigate the risk of executing random Python code.

UlionTse commented 1 year ago

Okay, thanks.