Skip to main content

A placeholder detector in text or in text files

Project description

pyplaceholder

A placeholder detector in text or in text files. For example, if you have a text like the following:

s = 'Some example of {term} \\{UN\\}'

If you want to detect the {terms} but not {UN} because it is escaped with \, then you need to execute:

from placeholder import parse_placeholders
s = 'Some example of {term} \\{UN\\}'
parse_placeholders(s)

Therefore, it will return the following results:

('Some example of {term} {UM}', [(16, 22)])

Where, here, the placeholder is {terms}. The placeholder has to be delimited by just one character, but not more. The placeholder delimiters can be changed by using the parameters open_ch and close_ch:

from placeholder import parse_placeholders
s = 'Some example of <term> {UM}'
parse_placeholders(s, '<', '>')

The result will be similar, and now we do not need to escape the characters {} for {UN} because we have changed the default delimiters:

('Some example of <term> {UM}', [(16, 22)])

In this case the placeholder is <term>.

Finally, you can detect the placeholders from a text without parse the escape characters changing the parameter escapes.

from placeholder import parse_placeholders
s = 'Some example of {term} {UM}'
parse_placeholders(s)

The output will be:

('Some example of {term} {UM}', [(16, 22), (23, 27)])

In this case, it detects both placeholders because the second one was not escaped with \.

With this module you can replace the placeholders using replace_placeholders():

from placeholder import replace_placeholders
s = 'Some example of {term} \\{UM\\}'
print(replace_placeholders(s, term='Union Nations'))

The result will be:

Some example of Union Nations {UM}

Finally, with this module you have also functions to know when a text contain a placehodler (has_placeholder()), count them (num_placeholders()), and replace then in a text file (replace_file_placeholders()).

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

pyplaceholder-0.0.2.tar.gz (16.1 kB view hashes)

Uploaded Source

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