Skip to main content

Text Parsing Function Dispatcher

Project description

https://travis-ci.org/erinxocon/tpfd.svg?branch=master https://img.shields.io/pypi/v/tpfd.svg?maxAge=2592000 https://img.shields.io/pypi/l/tpfd.svg?maxAge=2592000

TPFD is an easy way to parse strings and execute functions depending on their contents.

Inspired by Flask and using Parse under the hood, this allows you to decorate functions with grammar rules and if a pattern that matches one of your grammar rules is found, the function will be run with a set of keyword arguments you’ve specified passed to it! Great for parsing logs and executing macros on what it finds!

Examples

Aniamls.txt
Turtles are cool
Sloths are cool
Mosquitos are dumb

>>> p  = tpfd.Parser()

>>> @p.on_parse('{Animal} are cool')
    def main(animal):
        print('I like {0}.'.format(animal))

>>> p.parse_file('animals.txt')
'I like turtles.'
'I like sloths.'

>>> p.parse(['Turtles are cool', 'Sloths are cool', 'Mosquitos are dumb'])
'I like turtles.'
'I like sloths.'

>>> p.parse('Sloths are cool')
'I like sloths.'

>>> p.parse('Mosquitos are dumb')
None

>>> @p.on_find('>{}<')
    def find_example(words):
    print (words)

>>> p.find('<p>the <b>bold</b> text</p>')
'the bold text'

To Install

$ pip install tpfd

Notes

Any format spec supported by parse is supported by this library since it’s all parse under the hood. Example: {[field name]:[format spec]}

Current Features

  • Support for parsing text files

  • Support for accepting generators that output text or ints

  • Support for parsing unicode strings

  • Supports parsing strings, ints and interator/generator’s automagically with new parse method.

TODO

  • Expose custom types functionality that Parse already offers

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

tpfd-0.2.4.tar.gz (4.3 kB view details)

Uploaded Source

Built Distribution

tpfd-0.2.4-py2.py3-none-any.whl (6.6 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file tpfd-0.2.4.tar.gz.

File metadata

  • Download URL: tpfd-0.2.4.tar.gz
  • Upload date:
  • Size: 4.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for tpfd-0.2.4.tar.gz
Algorithm Hash digest
SHA256 f90af668192bab96de1e45bbcdcbfbfe2f906fbff6b45751d0eaa9a083499444
MD5 aafdb9777bd8293eb3148f8712a1fdd7
BLAKE2b-256 36a683d590ee2982f4b4fd7d50e96eaef57e0028877fe23992ca497d54ad8c1f

See more details on using hashes here.

File details

Details for the file tpfd-0.2.4-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for tpfd-0.2.4-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 8c07ab95d36544c721b2d7a9b75e3c186085f731d577f9d31f86be8e4b69dbe5
MD5 a2f4262edef1dbce22c968e3117982d5
BLAKE2b-256 0c5c84c2c169652abfb0ad3a4aaee05627d26c5bddbd2764a877cf2b3538d013

See more details on using hashes here.

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