Metadata-Version: 2.1
Name: pyseri
Version: 1.1.1
Summary: Python Serializer tool
Home-page: https://github.com/TaylorHere
Author: TaylorHere
Author-email: taylorherelee@gmail.com
License: UNKNOWN
Description: ```python
        
        from pyseri import serializer
        
        class A():
        	name = 'class a'
        
        class B():
        	name = 'class b'
        	a = [A(), A(), A()]
        
        serializer.dump(B(), mapper={'A': {'name'}, 'B':{'name', 'a'}})
        
        #output
        """
        {
        	'name': 'class b',
        	'a': [
        		{'name': 'class a'}, 
        		{'name': 'class a'},
        		 {'name': 'class a'}
        	 ]
        }
        """
        ```
        
        ```python
        
        from pyseri import serializer
        
        class A():
        	getters = ['name']
        	#this key is important
        	name = 'class a'
        
        class B():
        	getters = ['name', 'a']
        	#this key is important
        	name = 'class b'
        	a = [A(), A(), A()]
        
        serializer.dump(B())
        
        #output
        """
        {
        	'a': [
        		{'name': 'class a'}, 
        		{'name': 'class a'}, 
        		{'name': 'class a'}
        	],
        	'name': 'class b'}
        """
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Description-Content-Type: text/markdown
