Skip to main content

A Python module for extracting values out of a string using a simple pattern instead of a regular expression.

Project description

Extract Values
==============

A Python module for extracting values out of a string using a simple pattern instead of a regular expression by defining groups of named characters using a pair of opening and closing delimiters.

Examples:

```python
from extract_values import extract_values

>>> extract_values('/2012/08/12/test.html', '/{year}/{month}/{day}/{title}.html')
{ 'year': '2012', 'month': '08', 'day': '12', 'title': 'test' }

>>> extract_values('John Doe <john@example.com> (http://example.com)', '{name} <{email}> ({url})')
{'name': 'John Doe', 'email': 'john@example.com', 'url': 'http://example.com' }

>>> extract_values('from 4th October to 10th October', 'from `from` to `to`', strip_values=True, whitespace=1, delimiters=['`', '`'])
{'from': '4th October', 'to': '10th October' }

>>> extract_values('Convert 1500 Grams to Kilograms', 'convert {quantity} {from_unit} to {to_unit}', lowercase=True)
{'quantity': '1500', 'from_unit': 'grams', 'to_unit': 'kilograms' }]

>>> extract_values('The time is 4:35pm here at Lima, Peru', 'The time is :time here at :city', delimiters=[':', ''])
{'time': '4:35pm', 'city': 'Lima, Peru'}
```

Optional parameters:

* **lowercase** - When True is passed the string is lowercased first
* **whitespace** - Minimal number of extra whitespace to remove
* **strip_values** - When True calls strip() for each value removing whitespace
* **delimiters** - A sequence with only the opening and closing delimiters

In order to install this package from [PyPi](http://pypi.python.org) you can run any of these commands:

easy_install extract-values

or

pip install extract-values

This library can also be installed directly from Github with the following command:

pip install git+ssh://git@github.com/gnrfan/extract-values.git

This little project was inspired by a similar [Node.js](http://nodejs.org/) module created by sri-lankan developer [Lakshan Perera](http://laktek.com/) available [here](https://github.com/laktek/extract-values).

(c) 2012 - Antonio Ognio <antonio@ognio.com> - Distributed under the BSD license - Made in Peru.

Project details


Release history Release notifications | RSS feed

This version

1.0

Download files

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

Source Distribution

extract-values-1.0.tar.gz (3.6 kB view details)

Uploaded Source

File details

Details for the file extract-values-1.0.tar.gz.

File metadata

File hashes

Hashes for extract-values-1.0.tar.gz
Algorithm Hash digest
SHA256 9cddd31a0f20c42a6baa37aa6ebb1a875dcea2a744893eca572665db48b1ccec
MD5 42b16180e9e6a311916158b59146dd9e
BLAKE2b-256 77730971bbe115f4a22b854d3af7ad941ae044d13b8529d812c7dc0e887c85f1

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