return [decodeURIComponent(key), decodeURIComponent(value)];
and until I saw that I didn't even know that percent encoded text in URLs is something I needed to be thinking about. import subprocess
import json
result = subprocess.run(['curlconverter', '--language', 'json', 'example.com'], capture_output=True, text=True)
command = json.loads(result.stdout)
print(command)
https://github.com/curlconverter/curlconverter/issues/64#iss...