https://github.com/vishalg8454/json-parser
Json parser written from scratch in Python
https://github.com/vishalg8454/json-parser
json
Last synced: 11 months ago
JSON representation
Json parser written from scratch in Python
- Host: GitHub
- URL: https://github.com/vishalg8454/json-parser
- Owner: vishalg8454
- Created: 2024-12-01T06:26:32.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-12-06T11:46:33.000Z (over 1 year ago)
- Last Synced: 2025-04-14T19:40:51.758Z (about 1 year ago)
- Topics: json
- Language: Python
- Homepage:
- Size: 5.86 KB
- Stars: 5
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# JSON Parser in python
- Implements Tokenizer to split given string to tokens.
- Implements Parser to parse tokens using Recursive Descent Parsing technique.
- Test suite used https://github.com/nst/JSONTestSuite
## How to run
- Clone the repo
- Ensure that python is installed in your machine
- run the `main.py` file using `python3 main.py` command.
## Example