Metadata-Version: 2.0
Name: listcompare
Version: 1.1.10
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-Content-Type: UNKNOWN
Keywords: list comparision python3 python2 python listofdifferentdatatypes
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
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6

This module provides support to compare two lists that have same or different types of data in it.
 Examples 
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 


