Metadata-Version: 2.1
Name: jsonpathgenerator
Version: 0.0.1
Summary: Get Json path from a nested json document. specify notation dot or bracket
Home-page: https://github.com/uniquetech/JSONPathGenerator.git
Author: hariharan sivakumar
Author-email: catchhster@gmail.com
License: UNKNOWN
Description: # JSONPathGenerator
          Python project to generate Json path in notations dot or bracket.
        
          funtion to convert a nested json to nested dictionary enumerating the lists to child dictionaries
        
        
        
        
        
        # USAGE
        
           js = jsonpathgenerator()
        
           js.get_json_path(json-line,notation='dot')
        
           notation = "dot"
        
           notation = "bracket"
        
        
        # Usage Examples
        
        
            js=jsonpath()
        
            with open('sample_json.json','r') as file:
                json_line=json.load(file)
                json_path_list=js.get_json_path(json_line,notation="bracket")
                print(json_path_list)
        
        
        
        
Keywords: Json Jsonpath xpath jsonnotation json parser safe parser
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3 :: Only
Requires-Python: >=3.5, <4
Description-Content-Type: text/markdown
