Copyright © 2017, edureka and/or its affiliates. All rights reserved.
• INTRODUCTION TO JSON IN PYTHON • WHY DO WE USE JSON? • PARSING JSON • CODING DEMONSTRATION www.edureka.co/python
INTRODUCTION TO JSON IN PYTHON www.edureka.co/python
www.edureka.co/python & INTRODUCTION TO JSON IN PYTHON It is a way of storing information in easy manner Is this JavaScript? NO Data stored is in human-readable format A Packet of JSON is almost identical to Python dictionary JSON Stands for Java Script Object Notation Data must be in the form of text
www.edureka.co/python & INTRODUCTION TO JSON IN PYTHON www.edureka.co/python CLIENT SERVER CONNECTION
WHY DO WE USE JSON? www.edureka.co/python
www.edureka.co/python LESS VERBOSE JSON has a more compact style than XML, and it is often more readable. The lightweight approach of JSON can make significant improvements
www.edureka.co/python FAST The XML software parsing process can take a long time. JSON uses less data overall, so you reduce the cost and increase the parsing speed.
www.edureka.co/python READABLE The JSON structure is straightforward and readable. You have an easier time mapping to domain objects, no matter what programming language you're working with.
www.edureka.co/python STRUCTURED DATA JSON uses a map data structure rather than XML's tree. In some situations, key/value pairs can limit what you can do, but you get a predictable and easy-to-understand data model.
PARSING JSON www.edureka.co/python
Copyright © 2017, edureka and/or its affiliates. All rights reserved. www.edureka.co
Copyright © 2017, edureka and/or its affiliates. All rights reserved. DEMOCoding Demonstration www.edureka.co/python
www.edureka.co/python

What is Python JSON | Edureka