Metadata-Version: 2.1
Name: RegexGenerator
Version: 1.1.0
Summary: This project was created as an experiment to see how accurately I can generate valid regex when simply given a string(s) to match.
Home-page: https://github.com/dbuhlbrown/Regex-Generator/
Author: Donald Buhl-Brown
Author-email: donald.buhlbrown@gmail.com
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/dbuhlbrown/Regex-Generator/issues
Description: # Regex-Generator
        This project was created as an experiment to see how accurately I can generate valid regex when simply given a string(s) to match. 
        
        #How to use
        
        #Basic Example:
        
        from RegexGenerator import RegexGenerator
        
        myRegexGenerator = RegexGenerator("123-555-7676")
        
        print(myRegexGenerator).get_regex()
        
        #Expected Output:
        
        \d{3}[-]\d{3}[-]\d{4}
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3
Description-Content-Type: text/markdown
