An open API service indexing awesome lists of open source software.

https://github.com/yezz123/parser

Pure Python standard library JSON 🦄
https://github.com/yezz123/parser

json library package parser python setup unittest

Last synced: 10 months ago
JSON representation

Pure Python standard library JSON 🦄

Awesome Lists containing this project

README

          



- JSON has become an ubiquitous data exchange format everywhere. Pretty much every service has a JSON API. And since it is so popular, most of the programming languages have built-in JSON parsers. And Of course, Python is no exception. In this article, I’ll show you how you can parse JSON with Python’s json library.

### Reference

- [json — JSON encoder and decoder](https://docs.python.org/3/library/json.html)
- [io — Core tools for working with streams](https://docs.python.org/3/library/io.html)
- [unittest — Unit testing framework](https://docs.python.org/3/library/unittest.html)
- [Json Parsing With Python](https://medium.com/@durgaswaroop/json-parsing-with-python-15a41c6fe03a)
- [In python, how do I cast a class object to a dict?](https://stackoverflow.com/questions/35282222/in-python-how-do-i-cast-a-class-object-to-a-dict)