Skip to main content

print and format on steroids

Project description

PyPI Package latest release Supported versions Supported implementations Wheel packaging support Test line coverage

It’s been almost fifty years since C introduced printf() and the basic formatted printing of positional parameters. Isn’t it time for an upgrade? You betcha!

say evolves Python’s print statement/function, format function/method, and % string interpolation operator with simpler, higher-level facilities. For example, it provides direct template formatting:

from say import *

x, nums, name = 12, list(range(4)), 'Fred'

say("There are {x} things.")
say("Nums has {len(nums)} items: {nums}")
say("Name: {name!r}")

yields:

There are 12 things.
Nums has 4 items: [0, 1, 2, 3]
Name: 'Fred'

Or instead of printing the string immediately, you want the string itself, the fmt() function is our version of sprintf().:

>>> fmt("{name} has {x} things and {len(nums)} numbers.")
'Fred has 12 things and 4 numbers.'

The more items being printed, and the more complicated the format invocation, the more valuable this simple inline specification becomes.

But as nice as replacing positional templates with inline templates is–a fact finally officially accommodated with formatted string literals of Python 3.6–say does a lot more. It also works in a variety of ways to up-level the output-generation task. For example:

say.title('Discovered')
say("Name: {name:style=blue}", indent='+1')
say("Age:  {age:style=blue}", indent='+1')

Prints a nicely formatted text block, with a proper title and indentation, and just the variable information in blue.

http://content.screencast.com/users/jonathaneunice/folders/Jing/media/81bf4738-c875-4998-82ac-a91d211d000b/00000745.png

say provides:

  • DRY, Pythonic, inline string templates that piggyback Python’s well-proven format() method, syntax, and underlying engine.

  • A single output mechanism that works the same way across Python 2 or Python 3.

  • A companion fmt() object for string formatting.

  • Higher-order line formatting such as line numbering, indentation, and line-wrapping built in. You can get substantially better output formatting with almost no additional code.

  • Convenient methods for common formatting items such as titles, horizontal separators, and vertical whitespace.

  • Easy styled output, including ANSI colors and user-defined styles and text transforms.

  • Easy output to one or more files, without additional code or complexity.

  • Super-duper template/text aggregator objects for easily building, reading, and writing multi-line texts.

Take it for a test drive today! See the full documentation at Read the Docs.

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

say-1.6.5.zip (64.4 kB view details)

Uploaded Source

Built Distribution

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

say-1.6.5-py2.py3-none-any.whl (22.9 kB view details)

Uploaded Python 2Python 3

File details

Details for the file say-1.6.5.zip.

File metadata

  • Download URL: say-1.6.5.zip
  • Upload date:
  • Size: 64.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for say-1.6.5.zip
Algorithm Hash digest
SHA256 80542facb744fe976a492c50445b44e9cfe85b4110575ecc873f3e106c1c2dd2
MD5 30653796ee16cece13d67f341cfdcc50
BLAKE2b-256 a02675663bcd8c5b736aad1015fc55a097bb80f60f49caf0ac87f7a3aeb0eeac

See more details on using hashes here.

File details

Details for the file say-1.6.5-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for say-1.6.5-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 f393269fb60ece1467bc3eb1556d3ce9e19fbc89ed12a1bda52f927f4b454799
MD5 c05083771108d19ec9637469001b3bd3
BLAKE2b-256 a540a6fb7163ffe86d6b8d943b4d5f194743d72e3dfdd193d96ba3be2ede220d

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