Metadata-Version: 2.1
Name: regex-generator-lib
Version: 1.0.0
Summary: A Python library for programmatically generating Regex.
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
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown

# 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}

