Metadata-Version: 2.1
Name: py_counter
Version: 1.0
Summary: Python library that takes in a list/tuple and returns a hash map with an element:count of element in the list/tuple as a key:value pair
Home-page: https://github.com/shyams1993/py_counter
Author: SHYAM SALIL
Author-email: shyamsalil1993@gmail.com
License: MIT
Description: # py_functions
        Python library that takes in a list/tuple and returns a hash map with an element:count of element in the list/tuple as a key:value pair
        
        <h1><a href="/">py_counter</a></h1>
        
        <br><b>DESCRIPTION:</b><br>
        <p>
        py_counter is used to make element counting easier to perform duplicate element finding, or simply count of elements(integers or strings) in a list/tuple easier.
        </p>
        
        
        <br><b>USAGE:</b><br>
        import package name <br>
        Create an instance of the class <br>
        Create variable and call the counter method referencing the instance that we created <br>
        
        <br><b>SYNTAX:</b><br>
        ```
        import py_counter
        variable_name = py_counter.counter([list/tuple])
        print(variable_name)
        ```
        
        <br><b>EXAMPLE CODE:</b><br>
          
        ```
        import py_counter
        word = py_counter.counter([list/tuple])
        print(word)
        ```
        
Keywords: Powerful
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Requires-Python: >=3.1
Description-Content-Type: text/markdown
