Keep track of components in strings, especially formatted values in f-strings.
Project description
fvalues
This is a Python library for keeping track of the combination of components in a string. In particular it lets you separate out the formatted values in an f-string. Here's an example:
from fvalues import F, FValue
x = 1.2345
f = F(f"twice x is {x * 2:.2f}")
assert f == "twice x is 2.47"
assert f.parts == ("twice x is ", FValue(source="x * 2", value=2.469, formatted="2.47"))
Key facts:
Fis a subclass ofstrso it can generally be used like any other string.- Calls to the constructor
F()are magically detected using theexecutinglibrary, and f-strings within are parsed to extract their components. - These are saved in the attribute
F.parts. Eachpartis either astrrepresenting a constant section or anFValuerepresenting a dynamic expression. FValue.sourcecontains the source code between the braces ({}) but before the colon (:) and format spec (.2f). In some cases it may not be the exact original source code, but equivalent code produced byast.unparse.FValue.valueandFValue.formattedare calculated usingeval(), so be careful of expressions that you wouldn't want to evaluate twice due to performance or side effects.
Concatenation
The F class also has special support for concatenation with the + operator:
f += "!"
assert f == "twice x is 2.47!"
assert f.parts == (
FValue(
source="f",
value="twice x is 2.47",
formatted="twice x is 2.47",
),
"!",
)
Similar to deconstructing f-strings, you can see how the parts distinguish between the dynamic expression f on the left of +=, representing it as an FValue, and the static "!" on the right.
Flattening
In the assertion above above, FValue.value is shown as a plain string, but remember that it's actually also an F object itself. The assertion works because F is a subclass of str so they can be used interchangeably. But it still has the same parts that we saw earlier. Sometimes keeping the tree of parts in its original form can be useful, other times you may want to bring everything to the surface to make things easier. You can produce an equivalent F object with a flat list of parts using F.flatten:
assert f.flatten().parts == (
"twice x is ",
FValue(
source="x * 2",
value=2.469,
formatted="2.47",
),
"!",
)
Other string methods
Another method that's specially implemented for F is .strip() and its cousins lstrip and rstrip. It does the same thing as the usual str.strip as far as the whole string is concerned, but also strips the internal parts in the way you'd probably expect. See the docstring for more details.
All other methods are directly inherited from str, which means that methods such as .lower() will return a plain str rather than another F object. So be careful with those methods if you don't want to lose information about the parts! More specialised implementations may be added in the future.
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file fvalues-0.0.2.tar.gz.
File metadata
- Download URL: fvalues-0.0.2.tar.gz
- Upload date:
- Size: 11.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ae26d8ac6c43bd7449f2ac6991350d4cf1c4cee9b75f09ebd7b4c4272f9349ac
|
|
| MD5 |
fd053b69d956932e20546272d2b18e35
|
|
| BLAKE2b-256 |
2fe8a0add0ffbfc27763611c936fe1f3884b60691947a58cfac6f3bb1e6b2953
|
File details
Details for the file fvalues-0.0.2-py3-none-any.whl.
File metadata
- Download URL: fvalues-0.0.2-py3-none-any.whl
- Upload date:
- Size: 8.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8401fad9171df33fdf0ba4cbfec20d83bb03ddec16e1959e07c2eea4e59e33f0
|
|
| MD5 |
0f947bcb70449069e347df73b022db2c
|
|
| BLAKE2b-256 |
b04b43ff70b83014ea7071b2d07622b58e6315e02f58a9c7533564d2d45f4fd5
|