“importer json en python” Réponses codées

Python importe JSON dans Pymongo

import json
from pymongo import MongoClient

client = MongoClient('localhost', 27017)
db = client['countries_db']
collection_currency = db['currency']

with open('currencies.json') as f:
    file_data = json.load(f)

# if pymongo < 3.0, use insert()
collection_currency.insert(file_data)
# if pymongo >= 3.0 use insert_one() for inserting one document
collection_currency.insert_one(file_data)
# if pymongo >= 3.0 use insert_many() for inserting many documents
collection_currency.insert_many(file_data)

client.close()
Fragile Gecko

Python JSON String à l'objet

import json

x =  '{ "name":"John", "age":30, "city":"New York"}'
y = json.loads(x)

print(y["age"]) 
Anxious Ant

JSON Charge à partir du fichier Python 3

import json

with open('file_to_load.json', 'r') as file:
  data = json.load(file)
The Nic

python json stringify

import json

json.dumps(['foo', {'bar': ('baz', None, 1.0, 2)}])
'["foo", {"bar": ["baz", null, 1.0, 2]}]'

print(json.dumps({"c": 0, "b": 0, "a": 0}, sort_keys=True))
{"a": 0, "b": 0, "c": 0}
Coder Cuttlefish

Json en python

import json

json_file = json.load(open("your file.json", "r", encoding="utf-8"))

# For see if you don't have error:
print(json_file)
Grieving Gull

importer json en python

# For reading JSON file we import json module
import json
Unsightly Unicorn

Réponses similaires à “importer json en python”

Questions similaires à “importer json en python”

Plus de réponses similaires à “importer json en python” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code