Metadata-Version: 2.1
Name: classInfo
Version: 1.0.1
Summary: classInfo is useful to write information about everything(almost)
Home-page: https://github.com/IM-code111/jsonbase-1.0.0
Author: WinXpDev
Author-email: muhammad184276@gmail.com
License: UNKNOWN
Description: # classInfo
        
        ## Simple information writing module
        ****
        ## Usage
        ```py
        import classInfo
        
        about = classInfo.information(name='Dave',
                                      age='23',
                                      job='Developer',
                                      salary='$12300',
                                      co_worker='Mark')
        print(about)###Return a dict of information
        ```
        ### There's only one function(not anymore)
        
        ## ReadInfo and dict in information(New in `1.0.1`)
        ![code](https://i.ibb.co/ydjGSCH/image.png)
        ![output](https://i.ibb.co/XJ3Hp5y/image.png)
        ```py
        import classInfo
        
        about = classInfo.information(name={'name1':'ali','name2':'ali'},
                                      age='23',
                                      job='poor',
                                      wife='None')
        
        print(classInfo.read_info(about))
        ```
        ****
        
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
