Skip to main content

like dedent but more flexible

Project description

Tedent

Keep your multi-line templated strings lookin' good :sunglasses:

This is a python version of tedent


Table of Contents


What is it?

  • A function similar to dedent just with different semantics

What does the name stand for?

  • Template string
  • indentation

names are hard


Why create it?

  • dedent didn't handle the following case like I wanted
formattedBoroughs = f"""\
[
    'Brooklyn',
    'Manhattan',
]
"""

print(
    dedent(
        f"""\
        New York boroughs
        ${formattedBoroughs}
        """
    )
)

#
# expected:
# New York boroughs
# [
#     'Brooklyn',
#     'Manhattan',
# ]
#
# actual:
#         New York boroughs
#         [
#     'Brooklyn',
#     'Manhattan',
# ]
#

Simple Usage

import tedent from 'tedent'

#
# *note the lack of the backslash
#
print(
    tedent(
        """
        This will be indented
          as you expect
        """
    )
)

# writes:
# This will be indented
#   as you expect

Questions about how the indentation works?

Because the indentation logic is both young and convoluted, please refer to the code and tests for details. The library is not that big and if you have any questions please create a github issue.


Important Usage Notes

  • First of all, this library doesn't handle tabs. I will accept a PR with support

  • Secondly, if you always use tedent like the following

    tedent(
        """
        some text
        """
    )
    

    then you shouldn't run into any issues. However we all know input can be tricky so tedent has a few input requirements in order to format your string properly.

input requirements

  • if the argument isn't a string then an error will be thrown
  • if you pass a string with three or more newlines, then
    • the first and last lines must contain only whitespace
    • the second line must contain a non-whitespace character
    • an error will be thrown if the above two conditions are not met
  • if you pass a string with fewer than 3 newlines
    • if they only contain whitespace then an empty string is returned
    • otherwise an error is thrown
  • finally, all trailing whitespace from the result is stripped

If you have questions please raise a github issue.


Test

#
# you must have poetry installed
#
$ poetry shell
$ poetry install
$ python runTests.py

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

tedent-0.1.5.tar.gz (92.6 kB view details)

Uploaded Source

Built Distribution

tedent-0.1.5-py3-none-any.whl (105.1 kB view details)

Uploaded Python 3

File details

Details for the file tedent-0.1.5.tar.gz.

File metadata

  • Download URL: tedent-0.1.5.tar.gz
  • Upload date:
  • Size: 92.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/0.12.15 CPython/3.7.3 Linux/5.1.2-arch1-1-ARCH

File hashes

Hashes for tedent-0.1.5.tar.gz
Algorithm Hash digest
SHA256 3042e20657db02c0dd55a6a1df566a18280b1dd6713aeeb25f62e42aceae8a14
MD5 599e45891fe9a9b8e5fbaf1ab22e21d1
BLAKE2b-256 2d223154eb0e3b645e35214d2ac1ee7cf5963ec2007b155093dd4fc1935175f9

See more details on using hashes here.

File details

Details for the file tedent-0.1.5-py3-none-any.whl.

File metadata

  • Download URL: tedent-0.1.5-py3-none-any.whl
  • Upload date:
  • Size: 105.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/0.12.15 CPython/3.7.3 Linux/5.1.2-arch1-1-ARCH

File hashes

Hashes for tedent-0.1.5-py3-none-any.whl
Algorithm Hash digest
SHA256 18a7a63a2b1fe0bf9d082fad91c25b74594a619726ed0115bbec840670f6f07c
MD5 6802b965b3ca19929e64ad5db1d73d85
BLAKE2b-256 525797acbfdd8ef41d412c2003bf2b5543e8c49a10521f0cfda45063d6a5077a

See more details on using hashes here.

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