1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90
|
Metadata-Version: 2.2
Name: pyout
Version: 0.8.1
Summary: Terminal styling for tabular data
Home-page: https://github.com/pyout/pyout.git
Author: Kyle Meyer
Author-email: kyle@kyleam.com
License: MIT
Keywords: terminal,tty,console,formatting,style,color
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Environment :: Console
Classifier: Development Status :: 1 - Planning
Classifier: Topic :: Utilities
Classifier: Operating System :: POSIX
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: User Interfaces
Classifier: Topic :: Terminals
Requires-Python: >=3.7
License-File: COPYING
Requires-Dist: blessed; sys_platform != "win32"
Requires-Dist: jsonschema>=3.0.0
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: home-page
Dynamic: keywords
Dynamic: license
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary
===========================================
pyout: Terminal styling for structured data
===========================================
.. image:: https://travis-ci.org/pyout/pyout.svg?branch=master
:target: https://travis-ci.org/pyout/pyout
.. image:: https://codecov.io/github/pyout/pyout/coverage.svg?branch=master
:target: https://codecov.io/github/pyout/pyout?branch=master
.. image:: https://img.shields.io/badge/License-MIT-yellow.svg
:target: https://opensource.org/licenses/MIT
``pyout`` is a Python package that defines an interface for writing
structured records as a table in a terminal. It is being developed to
replace custom code for displaying tabular data in in ReproMan_ and
DataLad_. See the Examples_ folder for how to get started.
A primary goal of the interface is the separation of content from
style and presentation. Current capabilities include
- automatic width adjustment and updating of previous values
- styling based on a field value or specified interval
- defining a transform function that maps a raw value to the displayed
value
- defining a summary function that generates a summary of a column
(e.g., value totals)
- support for delayed, asynchronous values that are added to the table
as they come in
Status
======
This package is currently in early stages of development. While it
should be usable in its current form, it may change in substantial
ways that break backward compatibility, and many aspects currently
lack polish and documentation.
``pyout`` requires Python 3 (>= 3.7). It is developed and tested in
GNU/Linux environments and is expected to work in macOS environments
as well. There is currently very limited Windows support.
License
=======
``pyout`` is under the MIT License. See the COPYING file.
.. _DataLad: https://datalad.org
.. _ReproMan: http://reproman.repronim.org
.. _Examples: examples/
|