python-list-comparison

SonarCloud CircleCI Bugs Lines of Code Maintainability Rating Reliability Rating Security Rating Vulnerabilities

pylistcompare

A module to compare two lists that complex data in it.

Installation guidelines

$ pip install listcompare

Usage guidelines

Import the module in your file or ipython3 shell

$ import listcompare

$ lis1 = [1, 2, 3]
$ lis2 = [2, 1, 3]

$ listcompare.compare_list(lis1, lis2)
$[output] True


$ lis1 = [1, 2, "3"]
$ lis2 = [2, 1, 3]

$ listcompare.compare_list(lis1, lis2)
$[output] False

Project dependencies installation guidelines

Run this command to install the dependencies

$ sudo pip3 install -r requirements.txt

Project distribution pusblishing guidelines

Guidelines for cythonizing the project

$ cd listcompare
$ python setup.py build_ext --inplace 

Project distribution page of pypi

Link to the pypi module page Link to module webpage page