Skip to main content

Fancy Pythonic String Builder.

Project description

Fancy Pythonic String Builder

image

image

Documentation Status

  • Free software: Apache Software License 2.0

Features

  • Builds strings in a pythonic way.
  • We're using the with statement to build substrings.
  • Python code can be interleaved with the string building.

Useful for generating code.

Example

from buildstr import Builder

b = Builder("A")
b << "B"
with b(surround=("{ ", " }"), separator="; ") as b1:
    b1 << ["a", "b", "c"]

assert b.build() == "A B { a; b; c }"

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

buildstr-0.1.1.tar.gz (3.7 kB view hashes)

Uploaded Source

Built Distribution

buildstr-0.1.1-py3-none-any.whl (4.1 kB view hashes)

Uploaded Python 3

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