Skip to main content

Library of string functions and formatters

Project description

PyPI Version PyPI Downloads

Description

Provides advanced string utilities and a powerful Formatter.

Formatter

string_kit.Formatter is a drop-in replacement of string.Formatter and supports the same syntax and more.

string_kit.Formatter adds the following features:
  • virtual fields now, uuid1, uuid4, uuid5 (no key is required in the format parameters, however if present, they take precedence); many more coming up.

  • user-defined virtual fields can be added through field_default init parm.

  • can send namespaces where format field values are searched through namespaces init parm.

  • !capitalize, !lower, !lstrip, !rstrip, !slug, !strip, !title, !upper; many more coming up.

  • user-defined convertors can be added through convertors init parm.

  • chained conversions and format specifications in any order: {field!slug:.10s!upper}.

  • user-configurable silence_missing_fields, if set True, will suppress IndexError and KeyError and will quietly replace with empty string.

  • user-configurable characters to identify fields (default {}), convertors (default !) and format specifiers (default :).

A simple example:

import random
from string_kit import Formatter

the_weather = "Sunny but Humid"

custom_field_defaults = {
    "password": lambda: random.choice(["lI0n", "rAbb1t", "tig3R"]) \
                        + str(random.randint(1000, 9999)),
}

custom_convertors = {
    "greeting": lambda str_, greeting: f"{greeting} {str_}",
}


class CustomFormatter(Formatter):
    field_defaults = {
        "bye": "Good bye!",
    }
    convertors = {
        "space2dash": lambda str_: str_.replace(" ", "-")
    }


skf = CustomFormatter(
    silence_missing_fields=True,
    field_defaults=custom_field_defaults,  # optional, dict with str or callable values
    convertors=custom_convertors,          # optional, dict with callable values
    field_namespaces=[locals()],           # optional, namespaces to search for field names
)

print(skf.format("{name!space2dash!greeting(Hello)},"
                 " your random password is: '{password}'. {bye}",
                 name="Charlie Brown"))
# "Hello Charlie-Brown, your random password is: 'rAbb1t1258'. Good bye!"

print(skf.format("Today is {now!strftime(%A)!upper}, also a"
                 " {the_weather!lower:.5!replace(sunny,sunny \\(☀️\\))} day."
                 " {missing!lstrip}"))
# "Today is FRIDAY, also a sunny (☀️) day. "

Some TODO Ideas

  • add snake_case, kebab-case, PascalCase, camelCase as built-in convertors

  • add sqids convertor with parameters (strings allowed, length) passed as static values

Note: This is an alpha version, and things may change quite a bit.

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

string_kit-0.1.0a8.tar.gz (11.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

string_kit-0.1.0a8-py3-none-any.whl (11.3 kB view details)

Uploaded Python 3

File details

Details for the file string_kit-0.1.0a8.tar.gz.

File metadata

  • Download URL: string_kit-0.1.0a8.tar.gz
  • Upload date:
  • Size: 11.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: pdm/2.25.4 CPython/3.13.5 Windows/11

File hashes

Hashes for string_kit-0.1.0a8.tar.gz
Algorithm Hash digest
SHA256 53a36d0257216c1e255fd3e7f3dccb7b45255d99308010abc2f4f7bc4c65ff38
MD5 7cde8ce5a8a663d52e310a944b4a4f2b
BLAKE2b-256 dc807e08a7a5081d94f562b8c3f2e98078da59aa938b2217b62343f27a858458

See more details on using hashes here.

File details

Details for the file string_kit-0.1.0a8-py3-none-any.whl.

File metadata

  • Download URL: string_kit-0.1.0a8-py3-none-any.whl
  • Upload date:
  • Size: 11.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: pdm/2.25.4 CPython/3.13.5 Windows/11

File hashes

Hashes for string_kit-0.1.0a8-py3-none-any.whl
Algorithm Hash digest
SHA256 ebe4c36493543e4217f680997222dc37ceb27253a6c338932fa48418ad1fbabf
MD5 b16f4e4f0dab1593dfc05f2a34fe9fac
BLAKE2b-256 bf97fe6760c7a74f536d70836563f3ca7b3fa020a01b59951f85b96779b2484d

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page