Validation and parsing library
Project description
Read The Docs hosted documentation <http://trafaret.readthedocs.org/en/latest/> or look to the docs/api/intro.rst for start.
Trafaret is rigid and powerful lib to work with foreign data, configs etc. It provides simple way to check anything, and convert it accordingly to your needs.
For simple example what can be done:
import datetime import trafaret as t date = t.Dict(year=t.Int, month=t.Int, day=t.Int) >> (lambda d: datetime.datetime(**d)) assert date.check({'year': 2012, 'month': 1, 'day': 12}) == datetime.datetime(2012, 1, 12)
Work with regex:
>>> c = t.String(regex=r'^name=(\w+)$') >> (lambda m: m.groups()[0]) >>> c.check('name=Jeff') 'Jeff'
Rename dict keys:
>>> c = t.Dict(t.Key('uNJ') >> 'user_name': t.String}) >>> c.check({'uNJ': 'Adam'}) {'user_name': 'Adam'}
Arrow date checking:
import arrow def check_datetime(str): try: return arrow.get(str).naive except arrow.parser.ParserError: return t.DataError('value is not in proper date/time format')
Yes, you can write trafarets that simple.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
trafaret-0.7.1.tar.gz
(17.0 kB
view details)
Built Distribution
trafaret-0.7.1-py3-none-any.whl
(18.5 kB
view details)
File details
Details for the file trafaret-0.7.1.tar.gz
.
File metadata
- Download URL: trafaret-0.7.1.tar.gz
- Upload date:
- Size: 17.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | dfceee0b83a28fc716df5ebeefd7a1ddf3f05f2064aa6eff98f044bcb369f373 |
|
MD5 | 203006b54711778258f84ea119b062c8 |
|
BLAKE2b-256 | e7fed24b4796267e702ea65a74c94d3bcb027da69546b456bf7d12fdf13bb510 |
File details
Details for the file trafaret-0.7.1-py3-none-any.whl
.
File metadata
- Download URL: trafaret-0.7.1-py3-none-any.whl
- Upload date:
- Size: 18.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c7bc4ba972bda1fa37e8c986110c3526a13a8eb96c1987c804a232434623ca3f |
|
MD5 | 19961361289cc8e3b0bd493ce13501e4 |
|
BLAKE2b-256 | 84faca75a77446d8e2cb03e32d0049a4dbc87d7178138dcc901a32da5c04802e |