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

Install

pip install resf

pypi page


How to use

Basics

from resf import *

initRes()                                   # Initializes new Table
addRes('Name', value)                       # Add a value to the table
addRes('Name', value, 'Unit', precision)    # Unit and Precision can be set
printRes()                                  # prints the resulting table

Sample 1

foo = 15
bar = 123 / 14

initRes()
addRes('Foo', foo, 'kg')
addEmpty()                                  # Add an empty line
addRes('0 digits of Bar', bar, precision=0)
addRes('4 digits of Bar', bar, precision=4)
printRes()

Output 1

+-----------------+----------------+
| Name            | Value [Unit]   |
|-----------------+----------------|
| Foo             | 15.00 kg       |
|                 |                |
| 0 digits of Bar | 9              |
| 4 digits of Bar | 8.7857         |
+-----------------+----------------+

All Functions

initRes()
addRes(name, value, unit='', precision=2)
addEmpty()
printRes()

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 Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

resf-0.1.4-py3-none-any.whl (3.2 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