Compact DST for editing blocks of plain text
Project description
texted
Compact domain specific language (DSL) for editing blocks of plain text
texted is a line-oriented DSL that focus on simple text editing operations, operating on independent chunks of text (for example commenting/uncommenting lines).
It is not suitable for complex changes. If you need those, please consider using a library that is syntax-aware, like configupdater for .ini/.cfg files, tomlkit for .toml and libCST or refactor for Python files.
Installation
You can install texted with the help of pip:
$ pip install texted
After doing that you will be able to use texted in your Python scripts.
Quickstart
Using texted involves the following workflow:
Select the relevant lines of a given text.
Perform an edition operation over the selection.
This is workflow is shown in the example below:
>>> from texted import edit, find, until, contains, startswith, blank, remove_prefix >>> example = """\ ... # [testenv:typecheck] ... # deps = mypy ... # commands = python -m mypy {posargs:src} ... [testenv:docs] ... deps = sphinx ... changedir = docs ... commands = python -m sphinx -W --keep-going . {toxinidir}/build/html ... """ >>> new_text = edit( ... example, ... find(contains("[testenv:typecheck]")) >> until(startswith("[testenv") | blank), ... remove_prefix("# "), ... ) >>> print(new_text) [testenv:typecheck] deps = mypy commands = python -m mypy {posargs:src} [testenv:docs] deps = sphinx changedir = docs commands = python -m sphinx -W --keep-going . {toxinidir}/build/html
One of the most basic kinds of select operations can be created with find. This operation will select the first line that matches a criteria. For example:
find(lambda line: "[testenv:typecheck]" in line)
… will select the first line of a text that contains the "[testenv:typecheck]" string. We can then extend (>>) this selection for all the contiguous lines that are not empty with:
find(lambda line: "[testenv:typecheck]" in line) >> whilist(bool) # => bool is handy! bool("") == False, bool("not empty") == True
After you have selected the block of lines, you can apply a edit operation. For example:
add_prefix("# ") # => equivalent to: replace(lambda line: "# " + line)
… will add the prefix "# " to all the non empty lines in the selection.
Note that all these functions are lazy and don’t do anything until they are called with edit.
Note
This project has been set up using PyScaffold 4.4. For details and usage information on PyScaffold see https://pyscaffold.org/.
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
Built Distribution
File details
Details for the file texted-0b1.tar.gz
.
File metadata
- Download URL: texted-0b1.tar.gz
- Upload date:
- Size: 31.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e31cad8bf8660fc536e10ba26404740c3d29b8d32c7e4cfade3790a0e5404916 |
|
MD5 | 7552b2333e68f6673febfd5eb81aa727 |
|
BLAKE2b-256 | 371d35e2800b0110df8cf408bc836124a65c149f4858b0e4bebd0f623e2a77c3 |
File details
Details for the file texted-0b1-py3-none-any.whl
.
File metadata
- Download URL: texted-0b1-py3-none-any.whl
- Upload date:
- Size: 13.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3baec2e8be1abb125b731e1a098d4f9f8faae2198ffc36e55e8b2677ae739c3d |
|
MD5 | d1cab1e0d54f50780fcd1b75b2f5c16a |
|
BLAKE2b-256 | cc2a3955c8d9a2e8a9851fd5123f4b7bb35e8b001166ed84a29fb70dd650a647 |