JSON sur le bureau Python

import json
import requests
data = solditems.json()
with open('data.json', 'w') as f:
    json.dump(data, f)
David the pythonistas