Metadata-Version: 1.1
Name: pcomp
Version: 1.0.0
Summary: Possible combinations - Python Library
Home-page: UNKNOWN
Author: Antonis Piloridis
Author-email: antonispiloridis@gmail.com
License: MIT
Description: A simple library that calculates all possible combinations of a list of a given length.
        
        Usage(hex to binnary)
        import pcomp
        
        print (pcomp.area(range(2),4)
        #it returns: 16
        
        print (pcomp.all(range(2),4)
        # it returns: ['0000', '0001', '0010', '0011', '0100', '0101', '0110', '0111', '1000', '1001', '1010', '1011', '1100', '1101', '1110', '1111']
        
        Change Log
        ==========
        
        1.0.0 (10/7/2022)
        -----------------
        - First Release
Keywords: combinations
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Operating System :: Microsoft :: Windows :: Windows 10
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
