Literal string formatting for Python versions older than 3.6
Project description
Awesome artwork provided courtesy of Open Clip Art Library
Formatizer provides literal string formatting for Python versions older than 3.6. This replaces the need for substitution using % or the format function.
Formatizer is covered by unit tests and Flake8 compliance. Please note that this library does use eval to perform its expression processing.
Quick Start
Install Formatizer in your virtualenv as follows:
pip install formatizer
And now, go ahead and use the f function similarly to PEP 498:
from __future__ import print_function
from formatizer import f
GREETING = 'hi'
def main():
name = 'Fotis'
print(f('My name is {name}, I say {GREETING} and 1 + 2 is {1 + 2}'))
if __name__ == '__main__':
main()
All local and global variables will be recognised by the f function and complete Python expressions are also allowed between the braces much like Python 3.6.
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
File details
Details for the file formatizer-0.1.1.tar.gz
.
File metadata
- Download URL: formatizer-0.1.1.tar.gz
- Upload date:
- Size: 3.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3061ced1daa08f1836b79f4a3de16a33a54179331273e0b9c757d27ab339c29f |
|
MD5 | 38ba4770383e7018c246b7ac3f0a164c |
|
BLAKE2b-256 | 60ff06524217a4497224022576f39f12f72a108921ac0033f69660abd24346ae |