Skip to main content

simpex is a Python library that simplifies the process of using regular expressions (regex).

Project description

Simpex

'simpex' stands for 'simple regex'

  • Simplifies the process of using regex in python

Usage:

Installation: pip install simpex

Custom:

  • Given a sample data set with minimum 2 values, it will return a regex pattern
  • Example:
import simpex

data_set = ['example@gmail.com',
            'test@yahoo.com',
            'admin@proton.me']

pattern = simpex(data_set)

Built-in:

  • Use built-in methods to get regex pattern
  • Check all available built-in methods in wiki
  • temp wiki:
patterns(pattern_name)
- pattern_name: str
- returns: regex pattern
- avaliable: `email`, `phone`, `url`, `ipv4`, `ipv6`, `mac`, `credit_card`, `date`, `hex_color`, `html_tag`
  • Example:
import simpex

pattern = simpex.patterns('email')

Custom / Built-in method will return the following pattern: ^[a-zA-Z0-9]+@[a-zA-Z0-9]+\.[a-zA-Z0-9]*

<br>

API used

all require string type data

sr. API url required data type outputs
0 information (this only) none / null this info - str
1 https://saasbase.dev/tools/regex-generator english to regex (ai) - str single - str
2 https://www.autoregex.xyz english to regex (ai) - str single - str
3 https://regex.murfasa.com english to regex (ai) - str single - str
4 https://regex.ai multiple data set multiple - list

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

simpex-1.0.1.tar.gz (8.9 kB view hashes)

Uploaded Source

Built Distribution

simpex-1.0.1-py3-none-any.whl (7.9 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page