Skip to content

Latest commit

 

History

History
13 lines (12 loc) · 635 Bytes

README.md

File metadata and controls

13 lines (12 loc) · 635 Bytes

JSON parsing module for Python.

Usage:

Importing the module:
import pyscan

Supported commands: pyscan.get_groups(json_path) Returns an array of all groups in a JSON file. pyscan.get_indiv(json_path) Returns an array of all non-grouped properties in a JSON file. pyscan.read_indiv(json_path, name) Returns the value of a non-grouped property in a JSON file. pyscan.read_group(json_path, group, name) Returns the value of a grouped property in a JSON file.