/usr/lib/python3/dist-packages/visidata-1.0.egg-info/PKG-INFO is in visidata 1.0-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 | Metadata-Version: 1.2
Name: visidata
Version: 1.0
Summary: curses interface for exploring and arranging tabular data
Home-page: http://visidata.org
Author: Saul Pwanson
Author-email: visidata@saul.pw
License: GPLv3
Download-URL: https://github.com/saulpw/visidata/tarball/1.0
Description-Content-Type: UNKNOWN
Description: # VisiData v1.0 [](https://circleci.com/gh/saulpw/visidata/tree/stable)
A terminal interface for exploring and arranging tabular data.
## Dependencies
- Linux or OS/X
- Python 3.4+
- python-dateutil
- other modules may be required for opening particular data sources
- see [requirements.txt](https://github.com/saulpw/visidata/blob/stable/requirements.txt) or the [supported sources](http://visidata.org/man/#loaders) in the vd manpage
### Install via pip3
Best installation method for users who wish to take advantage of VisiData in their own code, or integrate it into a Python3 virtual environment.
To install VisiData, with loaders for the most common data file formats (including csv, tsv, fixed-width text, json, sqlite, http, html and xls):
$ pip3 install visidata
To install VisiData, plus external dependencies for all available loaders:
$ pip3 install "visidata[full]"
### Install via brew
Ideal for MacOS users who primarily want to engage with VisiData as an application. This is currently the most reliable way to install VisiData's manpage on MacOS.
$ brew install saulpw/vd/visidata
Further instructions available [here](https://github.com/saulpw/homebrew-vd).
### Install via apt
Packaged for Linux users who do not wish to wrangle with PyPi or python3-pip.
Currently, VisiData is undergoing review for integration into the main Debian repository. Until then it is available in our [Debian repo](https://github.com/saulpw/deb-vd).
Grab our public key
$ wget http://visidata.org/devotees.gpg.key
$ apt-key add devotees.gpg.key
Add our repository to apt's search list
$ sudo apt-get install apt-transport-https
$ sudo vim /etc/apt/sources.list
deb[arch=amd64] https://raw.githubusercontent.com/saulpw/deb-vd/master sid main
$ sudo apt-get update
You can then install VisiData by typing:
sudo apt-get install visidata
Further instructions available [here](https://github.com/saulpw/deb-vd).
## Usage
$ vd [<options>] <input> ...
$ <command> | vd [<options>]
VisiData supports tsv, csv, xlsx, hdf5, sqlite, json and more.
Use `-f <filetype>` to force a particular filetype.
(See the [list of supported sources](http://visidata.org/man#sources)).
## Documentation
* Quick reference: `F1` (or `z?`) within `vd` will open the [man page](http://visidata.org/man), which has a list of all commands and options.
* [visidata.org/docs](http://visidata.org/docs) has a complete list of links to all official documentation.
## Help and Support
For additional information, see the [support page](http://visidata.org/support).
## vdtui
The core `vdtui.py` can be used to quickly create efficient terminal workflows. These have been prototyped as proof of this concept:
- [vgit](https://github.com/saulpw/vgit): a git interface
- [vsh](http://github.com/saulpw/vsh): a collection of utilities like `vping` and `vtop`.
- [vdgalcon](https://github.com/saulpw/vdgalcon): a port of the classic game [Galactic Conquest](https://www.galcon.com)
Other workflows should also be created as separate apps using vdtui. These apps can be very small and provide a lot of functionality; for example, see the included [viewtsv](bin/viewtsv).
## License
The innermost core file, `vdtui.py`, is a single-file stand-alone library that provides a solid framework for building text user interface apps. It is distributed under the MIT free software license, and freely available for inclusion in other projects.
Other VisiData components, including the main `vd` application, addons, loaders, and other code in this repository, are available for use and distribution under GPLv3.
## Credits
VisiData was created and developed by Saul Pwanson `<vd@saul.pw>`.
Thanks to all the [contributors](CONTRIBUTING.md#contributors), and to those wonderful users who provide feedback, for making VisiData the awesome tool that it is.
Keywords: console tabular data spreadsheet terminal viewer textpunkcurses csv hdf5 h5 xlsx excel tsv
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Environment :: Console :: Curses
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Database :: Front-Ends
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: Office/Business :: Financial :: Spreadsheet
Classifier: Topic :: Scientific/Engineering :: Visualization
Classifier: Topic :: Utilities
Requires-Python: >=3.4
|