Skip to main content

A simple package for displaying calculation results in a textbased table

Project description

resf - Result Formatter

A simple package for displaying calculation results in a textbased table


How to use

Basics

from resf import *

initRes()                                   # Initializes new Table
addRes('Name', value, 'Unit', precision)    # add a value to the table
addRes('Name', value)                       # unit and precision are not required
printRes()                                  # prints the resulting table

Sample 1

foo = 15
bar = 123 / 13

initRes()
addRes('Foo', foo, 'V')
addRes('5 digits of Bar', bar, precision=5)
printRes()

Output 1

 +-----------------+----------------+
 | Name            | Value [Unit]   |
 |-----------------+----------------|
 | Foo             | 15.00 V        |
 | 5 digits of Bar | 9.46154        |
 +-----------------+----------------+

Uses tabulate to generate the table

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

resf-0.1.3.tar.gz (1.9 kB view hashes)

Uploaded Source

Built Distribution

resf-0.1.3-py3-none-any.whl (3.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