Derik117 / expynent

A library that provides regex patterns. If you hate to write regular expressions, then expynent can help you.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Build Status codecov PyPI version

expynent is a tiny library that provides RegEx patterns. This can be useful if you don't want to write regular expression manually.

Docs

Here you can read about basics of expynent.

Installation

~ git clone https://github.com/lk-geimfari/expynent.git
➜  ~ cd expynent/
➜  ~ python setup.py install

or

~  pip install expynent

Usage

Just import the pattern that you want:

import re
import expynent.patterns as expas

if re.match(expas.ZIP_CODE['RU'], '43134'):
    print('match')
else:
    print('not match')
    
# Output: 'not match'

also you can use compiled patterns:

from expynent.compiled import MAC_ADDRESS

mac = input('Enter MAC address : ')

if MAC_ADDRESS.match(mac):
    print('valid')
else:
    print('invalid')

Contributing

Your contributions are always welcome! Please take a look at the contribution guidelines first.

Attention

This is an experimental project and it's mean that we do not guarantee stability.

Licence

BSD 3-Clause License

About

A library that provides regex patterns. If you hate to write regular expressions, then expynent can help you.

License:BSD 3-Clause "New" or "Revised" License


Languages

Language:Python 100.0%