filmov
tv
Python Bytes: JSON Tutorial

Показать описание
In this video I talk about working with JSON in Python.
Json Docs:
Python Json Docs:
The JSON library is used to Serialize and Deserialized JSON object to/from Python dictionaries.
Serialize - convert / change into a format that can be stored and reconstructed later.
JSON is part of the Python standard libarary, just 'import json'.
Deserialize (convert to Python-usable structure, dict))
Serialize (convert to Json)
JSON/Python Conversion Table
Json, Python
object, dict
array, list
string, str
number (int), int
number (real), float
true, True
false, False
null, None
Json Docs:
Python Json Docs:
The JSON library is used to Serialize and Deserialized JSON object to/from Python dictionaries.
Serialize - convert / change into a format that can be stored and reconstructed later.
JSON is part of the Python standard libarary, just 'import json'.
Deserialize (convert to Python-usable structure, dict))
Serialize (convert to Json)
JSON/Python Conversion Table
Json, Python
object, dict
array, list
string, str
number (int), int
number (real), float
true, True
false, False
null, None