Metadata-Version: 2.1
Name: json-tools-python
Version: 0.1.0
Summary: A tool for analysis json content with some key
Home-page: https://github.com/gpwork4u/json_tools
Author: gpwork4u
Author-email: gpwork4u@gmail.com
License: UNKNOWN
Description: # json_tools
        
        A tool for analysis json content
        
        ## How to use
        
        ```python
        import json_tools
        test_data = {
            'a':{
                'b':{
                    'c':'123',
                    'd':{
                        'c':123,
                    },
                    'e':[{'a':1}, {'b':2}, {'c':3}],
                    'f':[
                        {'a':
                            {'c':1}
                        },
                        {'b':
                            {'c':2}
                        }
                    ]
                }
            }
        }
        for ret in json_tools.search(test_data, 'c'):
            print(ret)
        ```
        result:
        ```python
        ['a', 'b', 'c']
        ['a', 'b', 'd', 'c']
        ['a', 'b', 'e', 2, 'c']
        ['a', 'b', 'f', 0, 'a', 'c']
        ['a', 'b', 'f', 1, 'b', 'c']
        ```
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
