Skip to content

Parser that converts JSON string into Python dictionary object. Inspired by Coding Challenges (https://codingchallenges.fyi/)

Notifications You must be signed in to change notification settings

samiaab1990/json-parser

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Python JSON Parser {}

A Python program that parses JSON string into a Python dictionary.

From command-line

$ python json_parser.py file.json

As module

from json_parser import JSON

json_input = {}

json_object = JSON(json_input)

# returns tokens in the JSON string 
print(json_object.tokens())

# returns parsed JSON string into dictionary object in Python
print(json.object.parse_json())

Inspired by Coding Challenges.

About

Parser that converts JSON string into Python dictionary object. Inspired by Coding Challenges (https://codingchallenges.fyi/)

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages