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 🦄
- Host: GitHub
- URL: https://github.com/yezz123/parser
- Owner: yezz123
- License: mit
- Created: 2021-04-14T03:20:16.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2024-04-29T23:21:57.000Z (almost 2 years ago)
- Last Synced: 2025-03-25T04:32:35.602Z (10 months ago)
- Topics: json, library, package, parser, python, setup, unittest
- Language: Python
- Homepage:
- Size: 33.2 KB
- Stars: 14
- Watchers: 4
- Forks: 5
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
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)