Skip to main content

Print Everything!

Project description

Printing everything for everyone!

Latest Version Travis CI build status
Project page:

https://github.com/ofir123/py-printer

Usage

The perfect printer for Python 3!

Just create a printer instance, pick your favorite colors and get to work!
py-printer supports all ANSI colors, and crazy encodings!
It also calculates the console width in order to wrap words properly.

import pyprinter

printer = pyprinter.get_printer()

# Write a simple line.
printer.write_line(printer.YELLOW + 'Hello World!')

# Or use the color functions (nested coloring is also supported).
printer.write_line(printer.yellow('Hello World!'))
docs/images/simple.png
# Use indentations.
with printer.group(indent=4):
    printer.write_line(printer.GREEN + 'Hello Again!')
docs/images/indented.png
# Write aligned values.
printer.write_aligned('Awesomeness', 'Check!')
docs/images/aligned.png
# Write titles.
printer.write_title('Wow!')
docs/images/title.png
# Print human-readable file sizes.
from pyprinter import FileSize

FileSize(42352352).pretty_print()
docs/images/file_size.png
# Use tables.
from pyprinter import Table

Table('Test', [{'1': 'a', '2': 'b', '3': 'c'}]).pretty_print()
docs/images/table.png
# Integrate friendly progress bars.
import time
from pyprinter import ProgressBar

progress = ProgressBar(10)
for i in range(10):
    time.sleep(1)
    progress.eval(i)
progress.finish()
docs/images/progress_bar.png
# Use word-wrapping or colors only.
printer = pyprinter.get_printer(colors=False, width_limit=True)
printer.write_line(printer.YELLOW + 'Hello World!')
docs/images/no_colors.png

Install

pip install pyprinter

Development

In order to build a new version, do the following:

  • Update version string in setup.py (in both version and download_url fields)

  • Update version in __init__.py file.

  • Run python setup.py sdist bdist_wheel to create the build

  • Run twine upload dist/* to upload everything to PyPi

  • Create a release (and tag) for the new version in GitHub (and delete the old one)

  • Delete old version from PyPi as well

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

pyprinter-1.5.3.tar.gz (25.9 kB view hashes)

Uploaded Source

Built Distribution

pyprinter-1.5.3-py3-none-any.whl (27.4 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