Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

table_printer

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

table_printer

Python Table Printer

  • 0.1.4
  • PyPI
  • Socket score

Maintainers
1

Table Printer

Description

Print a list of python dicts as an organized table.

The code is mostly copied from this <http://stackoverflow.com/a/5087336>__ Stack Overflow comment with the following additions: - customization of the top and bottom line characters - customization of the alignment ('left' or 'right') - automatic truncation of text that is longer than the column width with ellipses ('...') - ability to receive a separate data set that will be printed as a totals row at the bottom of the table by passing optional argument

Installation

pip install table_printer

Usage

::

from table_printer import TablePrinter

fmt = [
  ('Title',         'title',        50, 'left'),
  ('Description',   'description',  50, 'right'),
]
data = [{'title': 'Hello', 'description': 'World'}]
totals = {'title': 'TOTAL', '1 title'}
print TablePrinter(fmt, sep='|', ul='=', tl='-', bl='_')(data, totals)

Output


::

    --------------------------------------------------|--------------------------------------------------
    Title                                             |                                       Description
    ==================================================|==================================================
    Hello                                             |                                             World
    ==================================================|==================================================
    TOTAL                                             |                                           1 title
    __________________________________________________|__________________________________________________

*See table\_printer/table\_printer.py for additional arguments and
details.*

Keywords

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc