Metadata-Version: 1.1
Name: listcompare
Version: 2.1.1
Summary: This module provides support to compare two lists that have same or different types of data in it.
Home-page: https://github.com/aliartiza75/python-list-comparison.git
Author: Irtiza Ali
Author-email: aliartiza75@yahoo.com
License: GNU GENERAL PUBLIC LICENSE
Description: This module provides support to compare two lists that have same or different types of data in it.
         Examples 
        Open the ipython3 shell and import the modules
        $ import listcompare as plc 
        $ lis1 = [1, 2 ,3] 
        $ lis2 = [2, 1] 
        $ plc.compare_list(lis1, dlis2) # Frue 
        
        $ lis1 = [1, 2, 3] 
        $ lis2 = [2, 1, '3'] 
        $ plc.compare_list(lis1, lis2) # False 
        
        $ lis1 = ['1', '2', '3'] 
        $ lis2 = ['2', '1'] 
        $ plc.compare_list(lis1, lis2) # False 
        
        $ lis1 = [1, 2, 3] 
        $ lis2 = [2, 1, 3] 
        $ plc.compare_list(lis1, lis2) # True 
        
        $ lis1 = [{1: 1, 2: 2}] 
        $ lis2 = [{1: 1, 2: 2}] 
        $ plc.compare_list(lis1, lis2) # True 
        
        $ lis1 = 123 
        $ lis2 = [{1: 1, 2: 2}] 
        $ plc.compare_list(lis1, lis2) # Exception will be raised 
        
        $ lis1 = [1, 'a', {1: 1, 2: 2}, 3] 
        $ lis2 = [3, 1, {1: 1, 2: 2}, 'a']] 
        $ plc.compare_list(lis1, lis2) # True 
        
        
Keywords: list comparision python3 python2 python listofdifferentdatatypes pythonlists listcomparision
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.0
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
