๐ŸŒ
Real Python
realpython.com โ€บ python-json
Working With JSON Data in Python โ€“ Real Python
August 20, 2025 - Its syntax resembles Python ... lowercase for Boolean values. With built-in tools for validating syntax and manipulating JSON files, Python makes it straightforward to work with JSON data. By the end of this tutorial, youโ€™ll understand that:...
๐ŸŒ
W3Schools
w3schools.com โ€บ python โ€บ python_json.asp
Python JSON
You can convert Python objects of the following types, into JSON strings:
๐ŸŒ
DataCamp
datacamp.com โ€บ tutorial โ€บ json-data-python
Python JSON Data: A Guide With Examples | DataCamp
December 3, 2024 - Learn how to work with JSON in Python, including serialization, deserialization, formatting, optimizing performance, handling APIs, and understanding JSONโ€™s limitations and alternatives.
๐ŸŒ
Medium
medium.com โ€บ data-science โ€บ working-with-json-data-in-python-45e25ff958ce
JSON in Python Tutorial | TDS Archive
August 11, 2021 - Writing to json files, reading from json files explained and illustrated with examples in python.
๐ŸŒ
Programiz
programiz.com โ€บ python-programming โ€บ json
Python JSON: Read, Write, Parse JSON (With Examples)
In this tutorial, you will learn to parse, read and write JSON in Python with the help of examples. Also, you will learn to convert JSON to dict and pretty print it.
๐ŸŒ
PYnative
pynative.com โ€บ home โ€บ python โ€บ json
Python JSON โ€“ PYnative
Learn how to read and write JSON-encoded data using Python. Python's built-in module json for JSON encoding and decoding, Pretty print, writing custom JSON encoder and decoder.
๐ŸŒ
freeCodeCamp
freecodecamp.org โ€บ news โ€บ how-to-use-the-json-module-in-python
How to Use the JSON Module in Python โ€“ A Beginner's Guide
June 5, 2023 - It is named JSON because it closely mimics the syntax used in JavaScript objects. In this tutorial, you will explore the JSON module in Python and learn how to effectively work with JSON data.
๐ŸŒ
Tutorialspoint
tutorialspoint.com โ€บ python โ€บ python_json.htm
Python - JSON
JSON in Python is a popular data format used for data exchange between systems. The json module provides functions to work with JSON data, allowing you to serialize Python objects into JSON strings and deserialize JSON strings back into Python
๐ŸŒ
GeeksforGeeks
geeksforgeeks.org โ€บ python โ€บ python-json
Python JSON - GeeksforGeeks
December 23, 2025 - Perform additional JSON operations in Python, including formatting, pretty-printing, flattening nested objects, validating JSON strings, and sorting JSON data by values.
Find elsewhere
๐ŸŒ
Python
docs.python.org โ€บ 3 โ€บ library โ€บ json.html
JSON encoder and decoder โ€” Python 3.14.3 documentation
To get the most compact JSON representation, you should specify (',', ':') to eliminate whitespace. Changed in version 3.4: Use (',', ': ') as default if indent is not None. If specified, default should be a function that gets called for objects that canโ€™t otherwise be serialized.
๐ŸŒ
The New Stack
thenewstack.io โ€บ home โ€บ python for beginners: how to use json in python
Python for Beginners: How to Use JSON in Python - The New Stack
March 9, 2023 - Python for Beginners: How to Use JSON in Python ยท tutorial, Data / Python / Software Development ยท How to parse JSON files within a Python program. May 1st, 2022 5:00am by Jack Wallen ยท JSON is an outstanding way of storing and transferring data.
๐ŸŒ
Python Engineer
python-engineer.com โ€บ courses โ€บ advancedpython โ€บ 11-json
JSON - Advanced Python 11 - Python Engineer
JSON (JavaScript Object Notation) is a leightweight data format for data exchange. In Python you have the built-in json module for encoding and decoding JSON data.
๐ŸŒ
SitePoint
sitepoint.com โ€บ blog โ€บ programming โ€บ working with json files in python, with examples
Working with JSON Files in Python, with Examples โ€” SitePoint
November 7, 2024 - Learn how to read, write and parse JSON in Python, with helpful examples, and explore popular modules in Python for working with JSON.
๐ŸŒ
GeeksforGeeks
geeksforgeeks.org โ€บ python โ€บ working-with-json-data-in-python
Working With JSON Data in Python - GeeksforGeeks
January 4, 2019 - Using Python's context manager, create a file named Sample.json and open it with write mode. Here, the dump() takes two arguments first, the data object to be serialized and second the object to which it will be written(Byte format).
๐ŸŒ
YouTube
youtube.com โ€บ playlist
How to use JSON in Python Tutorials - YouTube
This series is designed for digital humanists who have very limited coding experience. I introduce you to JSON files and why you should consider using them i...
๐ŸŒ
Reddit
reddit.com โ€บ r/python โ€บ handling json files with ease in python
r/Python on Reddit: Handling JSON files with ease in Python
May 29, 2022 -

I have finished writing the third article in the Data Engineering with Python series. This is about working with JSON data in Python. I have tried to cover every necessary use case. If you have any other suggestions, let me know.

Working with JSON in Python
Data Engineering with Python series

๐ŸŒ
Intellipaat
intellipaat.com โ€บ home โ€บ blog โ€บ python json โ€“ parsing, creating, and working with json data
Python JSON - A Beginner's Guide
June 13, 2025 - Learn everything you need to know about JSON in Python, with examples and code snippets. This guide will teach you how to parse JSON, create JSON, and work with JSON in Python.