visidata


Namevisidata JSON
Version 3.1.1 PyPI version JSON
download
home_pagehttps://visidata.org
Summaryterminal interface for exploring and arranging tabular data
upload_time2024-10-14 21:06:23
maintainerNone
docs_urlNone
authorSaul Pwanson
requires_python>=3.8
licenseGPLv3
keywords console tabular data spreadsheet terminal viewer textpunkcurses csv hdf5 h5 xlsx excel tsv
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # VisiData v3.1

[![Tests](https://github.com/saulpw/visidata/workflows/visidata-ci-build/badge.svg)](https://github.com/saulpw/visidata/actions/workflows/main.yml)
[![Gitpod ready-to-code](https://img.shields.io/badge/Gitpod-ready--to--code-blue?logo=gitpod)](https://gitpod.io/#https://github.com/saulpw/visidata)

[![discord](https://img.shields.io/discord/880915750007750737?label=discord)](https://visidata.org/chat)
[![mastodon @visidata@fosstodon.org][2.1]][2]
[![twitter @VisiData][1.1]][1]

A terminal interface for exploring and arranging tabular data.

![Frequency table](http://visidata.org/freq-move-row.gif)

VisiData supports tsv, csv, sqlite, json, xlsx (Excel), hdf5, and [many other formats](https://visidata.org/formats).

## Platform requirements

- Linux, OS/X, or Windows (with WSL)
- Python 3.8+
- additional Python modules are required for certain formats and sources

## Install

To install the latest release from PyPi:

    pip3 install visidata

To install the cutting edge `develop` branch (no warranty expressed or implied):

    pip3 install git+https://github.com/saulpw/visidata.git@develop

See [visidata.org/install](https://visidata.org/install) for detailed instructions for all available platforms and package managers.

### Usage

On Linux and OS/X

    $ vd <input>
    $ <command> | vd

On Windows

    $ visidata <input>
    $ <command> | visidata

Press `Ctrl+Q` to quit at any time.

Hundreds of other commands and options are also available; see the documentation.

### Documentation

* [VisiData documentation](https://visidata.org/docs)
* [Plugin Author's Guide and API Reference](https://visidata.org/docs/api)
* [Quick reference](https://visidata.org/man) (available within `vd` with `Ctrl+H`), which has a list of commands and options.
* [Intro to VisiData Tutorial](https://jsvine.github.io/intro-to-visidata/) by [Jeremy Singer-Vine](https://www.jsvine.com/)

### Help and Support

If you have a question, issue, or suggestion regarding VisiData, please [create an issue on Github](https://github.com/saulpw/visidata/issues) or chat with us at #visidata on [irc.libera.chat](https://libera.chat/).

If you use VisiData regularly, please [support me on Patreon](https://www.patreon.com/saulpw)!

## License

Code in the `stable` branch of this repository, including the main `vd` application, loaders, and plugins, is available for use and redistribution under GPLv3.

## Credits

VisiData is conceived and developed by Saul Pwanson `<vd@saul.pw>`.

Anja Kefala `<anja.kefala@gmail.com>` maintains the documentation and packages for all platforms.

Many thanks to numerous other [contributors](https://visidata.org/credits/), and to those wonderful users who provide feedback, for helping to make VisiData the awesome tool that it is.

[1.1]: http://i.imgur.com/tXSoThF.png
[1]: http://www.twitter.com/VisiData
[2.1]: https://raw.githubusercontent.com/mastodon/mastodon/main/app/javascript/images/logo.svg
[2]: https://fosstodon.org/@visidata

<!-- Please don't remove this: Grab your social icons from https://github.com/carlsednaoui/gitsocial -->

            

Raw data

            {
    "_id": null,
    "home_page": "https://visidata.org",
    "name": "visidata",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": "console tabular data spreadsheet terminal viewer textpunkcurses csv hdf5 h5 xlsx excel tsv",
    "author": "Saul Pwanson",
    "author_email": "visidata@saul.pw",
    "download_url": "https://files.pythonhosted.org/packages/6c/41/b026336b7075a2c8461c1ba0dfffd456902f736722f4a016f21fee1e6d7c/visidata-3.1.1.tar.gz",
    "platform": null,
    "description": "# VisiData v3.1\n\n[![Tests](https://github.com/saulpw/visidata/workflows/visidata-ci-build/badge.svg)](https://github.com/saulpw/visidata/actions/workflows/main.yml)\n[![Gitpod ready-to-code](https://img.shields.io/badge/Gitpod-ready--to--code-blue?logo=gitpod)](https://gitpod.io/#https://github.com/saulpw/visidata)\n\n[![discord](https://img.shields.io/discord/880915750007750737?label=discord)](https://visidata.org/chat)\n[![mastodon @visidata@fosstodon.org][2.1]][2]\n[![twitter @VisiData][1.1]][1]\n\nA terminal interface for exploring and arranging tabular data.\n\n![Frequency table](http://visidata.org/freq-move-row.gif)\n\nVisiData supports tsv, csv, sqlite, json, xlsx (Excel), hdf5, and [many other formats](https://visidata.org/formats).\n\n## Platform requirements\n\n- Linux, OS/X, or Windows (with WSL)\n- Python 3.8+\n- additional Python modules are required for certain formats and sources\n\n## Install\n\nTo install the latest release from PyPi:\n\n    pip3 install visidata\n\nTo install the cutting edge `develop` branch (no warranty expressed or implied):\n\n    pip3 install git+https://github.com/saulpw/visidata.git@develop\n\nSee [visidata.org/install](https://visidata.org/install) for detailed instructions for all available platforms and package managers.\n\n### Usage\n\nOn Linux and OS/X\n\n    $ vd <input>\n    $ <command> | vd\n\nOn Windows\n\n    $ visidata <input>\n    $ <command> | visidata\n\nPress `Ctrl+Q` to quit at any time.\n\nHundreds of other commands and options are also available; see the documentation.\n\n### Documentation\n\n* [VisiData documentation](https://visidata.org/docs)\n* [Plugin Author's Guide and API Reference](https://visidata.org/docs/api)\n* [Quick reference](https://visidata.org/man) (available within `vd` with `Ctrl+H`), which has a list of commands and options.\n* [Intro to VisiData Tutorial](https://jsvine.github.io/intro-to-visidata/) by [Jeremy Singer-Vine](https://www.jsvine.com/)\n\n### Help and Support\n\nIf you have a question, issue, or suggestion regarding VisiData, please [create an issue on Github](https://github.com/saulpw/visidata/issues) or chat with us at #visidata on [irc.libera.chat](https://libera.chat/).\n\nIf you use VisiData regularly, please [support me on Patreon](https://www.patreon.com/saulpw)!\n\n## License\n\nCode in the `stable` branch of this repository, including the main `vd` application, loaders, and plugins, is available for use and redistribution under GPLv3.\n\n## Credits\n\nVisiData is conceived and developed by Saul Pwanson `<vd@saul.pw>`.\n\nAnja Kefala `<anja.kefala@gmail.com>` maintains the documentation and packages for all platforms.\n\nMany thanks to numerous other [contributors](https://visidata.org/credits/), and to those wonderful users who provide feedback, for helping to make VisiData the awesome tool that it is.\n\n[1.1]: http://i.imgur.com/tXSoThF.png\n[1]: http://www.twitter.com/VisiData\n[2.1]: https://raw.githubusercontent.com/mastodon/mastodon/main/app/javascript/images/logo.svg\n[2]: https://fosstodon.org/@visidata\n\n<!-- Please don't remove this: Grab your social icons from https://github.com/carlsednaoui/gitsocial -->\n",
    "bugtrack_url": null,
    "license": "GPLv3",
    "summary": "terminal interface for exploring and arranging tabular data",
    "version": "3.1.1",
    "project_urls": {
        "Download": "https://github.com/saulpw/visidata/tarball/3.1.1",
        "Homepage": "https://visidata.org"
    },
    "split_keywords": [
        "console",
        "tabular",
        "data",
        "spreadsheet",
        "terminal",
        "viewer",
        "textpunkcurses",
        "csv",
        "hdf5",
        "h5",
        "xlsx",
        "excel",
        "tsv"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "56605026e693dbd4c38d2d13a697aa61846a6791bd6131e8a84c8aa61c0d5180",
                "md5": "64ef7408196a65af45f872893e54e203",
                "sha256": "903d8bff23df18c794499bee2a653bdeff3a48f899638656287c704ceca63e8b"
            },
            "downloads": -1,
            "filename": "visidata-3.1.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "64ef7408196a65af45f872893e54e203",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 526914,
            "upload_time": "2024-10-14T21:06:20",
            "upload_time_iso_8601": "2024-10-14T21:06:20.293623Z",
            "url": "https://files.pythonhosted.org/packages/56/60/5026e693dbd4c38d2d13a697aa61846a6791bd6131e8a84c8aa61c0d5180/visidata-3.1.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6c41b026336b7075a2c8461c1ba0dfffd456902f736722f4a016f21fee1e6d7c",
                "md5": "563ebd09e2af17789a563c6c5151a3f0",
                "sha256": "8c4484158f0851e4887e595542bd65bdd991de9c20652b442b3fd9742ce8b031"
            },
            "downloads": -1,
            "filename": "visidata-3.1.1.tar.gz",
            "has_sig": false,
            "md5_digest": "563ebd09e2af17789a563c6c5151a3f0",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 13166704,
            "upload_time": "2024-10-14T21:06:23",
            "upload_time_iso_8601": "2024-10-14T21:06:23.590437Z",
            "url": "https://files.pythonhosted.org/packages/6c/41/b026336b7075a2c8461c1ba0dfffd456902f736722f4a016f21fee1e6d7c/visidata-3.1.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-10-14 21:06:23",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "saulpw",
    "github_project": "visidata",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [],
    "lcname": "visidata"
}
        
Elapsed time: 0.92888s