Metadata-Version: 2.1
Name: pystringmatcher
Version: 0.0.0
Summary: A package for matching a set of strings and textual patterns in a given text file
Home-page: https://github.com/aviadtamir/pystringmatcher.git
Author: Aviad Tamir
Author-email: aviadt15@gmail.com
License: MIT license
Description: # pystringmatcher
        
        ## description
        a small utility tool for finding substrings and text patterns in an input file
        
        ## installation:
        ```bash
        pip install pystringmatcher
        ```
        
        ### usage:
        * using the python module
        ```bash
        python -m py pyringmatcher -h
        
        Finding text patterns in input text file
        
        optional arguments:
          -h, --help            show this help message and exit
          -f FILE_PATH, --file FILE_PATH
                                the input file to search the patterns in
          -p PATTERNS, --patterns PATTERNS
                                the pattern\s to search in the file separated by ,
          -n NUM_LINES_PER_CHUNK, --num-lines NUM_LINES_PER_CHUNK
                                the number of lines per chunk of text from the input file
        ```
        
        * or by using the included console script
        
        ```bash
        stringmatcher -h 
        ```
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.7
Description-Content-Type: text/markdown
