Skip to main content

Python tools for splitting strings.

Project description

Exacto

Exacto is a collection of Python tools that simplify splitting strings according to non-trivial business rules. You may find this package useful if:

  • A regular expression is not enough for your use case.
  • You want to avoid writing and maintaining manual parsing code.
  • You don't want to mess around with LLVM or FSMs.

However, if performance is your primary goal, these tools may not be for you.

Usage

from exacto import split, lift, quote, nest

# Simple example with default rules: split on whitespace
result = split("Hello   World")  
assert list(result) == ["Hello", "World"]

# Complicated example with custom separator and quotes
result = split("ENV='Prod-172.0.10.10'.VER='2.1'", quote("'"), ".")
assert list(result) == ["ENV='Prod Env'", "VER='2.1'"]

# Extract embedded tokens
result = lift("Hello [FOO] is [BAR]", nest("[", "]"))
assert list(result) == ["FOO", "BAR"]

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

exacto-0.2.2.tar.gz (4.1 kB view details)

Uploaded Source

File details

Details for the file exacto-0.2.2.tar.gz.

File metadata

  • Download URL: exacto-0.2.2.tar.gz
  • Upload date:
  • Size: 4.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.33.0 CPython/3.7.3

File hashes

Hashes for exacto-0.2.2.tar.gz
Algorithm Hash digest
SHA256 db74f2ec6f8af4d6b62ddd3cd910bb6b42ddede76af7744fb9f881356b60e75f
MD5 e67623a0604019ace07f58be55a537d2
BLAKE2b-256 ae7ce4184199497cca448e8ce4d32aef8b3634922f66520f148f478c1993ed10

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