Metadata-Version: 2.1
Name: findsubstring
Version: 0.1
Summary: Python3 module to find a substring on a string.
Home-page: https://github.com/carlosplanchon/findsubstring
Author: Carlos A. Planchón
Author-email: bubbledoloresuruguay2@gmail.com
License: GPL3
Download-URL: https://github.com/carlosplanchon/findsubstring/archive/v0.1.tar.gz
Description: # findsubstring
        *Python3 module to find a substring on a string.*
        
        Based on Karl Knechtel's answer on Stack Overflow:
        https://stackoverflow.com/questions/4664850/find-all-occurrences-of-a-substring-in-python
        
        ## Installation
        ### Install with pip
        ```
        pip3 install -U findsubstring
        ```
        
        ## Usage
        ```
        In [1]: import findsubstring
        
        In [2]: list(
            findsubstring.find_all(
                str_="spam spam spam spam",
                substring="spam"
                )
            )
        
        Out[2]: [0, 5, 10, 15]
        ```
        
Keywords: find,substring,string
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Description-Content-Type: text/markdown
