Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/uvemas/ViTables
ViTables, a GUI for PyTables
https://github.com/uvemas/ViTables
Last synced: 2 months ago
JSON representation
ViTables, a GUI for PyTables
- Host: GitHub
- URL: https://github.com/uvemas/ViTables
- Owner: uvemas
- License: gpl-3.0
- Created: 2011-10-03T18:11:49.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2024-07-20T15:47:20.000Z (6 months ago)
- Last Synced: 2024-09-21T08:52:15.098Z (4 months ago)
- Language: Python
- Homepage:
- Size: 22.6 MB
- Stars: 153
- Watchers: 8
- Forks: 55
- Open Issues: 23
-
Metadata Files:
- Readme: README.md
- Changelog: ChangeLog.txt
- License: LICENSE.txt
Awesome Lists containing this project
README
![](https://raw.githubusercontent.com/uvemas/ViTables/074a2597866c8f73e78c73ab5606b215ddf7951e/doc/images/title_page_plain.svg)
![Platform](https://anaconda.org/conda-forge/vitables/badges/platforms.svg) ![License](https://anaconda.org/conda-forge/vitables/badges/license.svg)
![Conda](https://anaconda.org/conda-forge/vitables/badges/version.svg) ![Conda_downloads](https://anaconda.org/conda-forge/vitables/badges/downloads.svg) ![PyPI](https://img.shields.io/pypi/v/vitables) ![PyPI_Downloads](https://static.pepy.tech/badge/vitables/month)
# ViTables
ViTables is a component of the PyTables family. It is a GUI for browsing and editing files in both PyTables and HDF5 formats. It is developed using Python and PyQt5 (the Python bindings to Qt), so it can run on any platform that supports these components.
ViTables capabilities include easy navigation through the data hierarchy, displaying of real data and its associated metadata, a simple, yet powerful, browsing of multidimensional data and much more.
![](https://github.com/uvemas/ViTables/blob/master/doc/images/mainWindow.png?raw=true)
As a viewer, one of the greatest strengths of ViTables is its ability to display very large datasets. Tables with one thousand millions of rows (and beyond) are navigated stunningly fast and with very low memory requirements. So, if you ever need to browse huge tables, don't hesitate, ViTables is your choice.
If you need a customized browser for managing your HDF5 data, ViTables is an excellent starting point.
Here are some [screenshots](https://github.com/uvemas/ViTables/tree/master/doc/images).
## QuickStart
### System requirements
ViTables 3.0.3 has been tested against the latest versions of Python 3,
PyTables and PyQt. You can try other versions at your own risk :).### Install through pip (may need further manually debug)
```sh
$ pip install ViTables
```If you don't have PyQt installed you can install it as an extra as follows:
```sh
$ pip install 'ViTables[PyQt5|PyQt6]'
```### Install on a conda environment
Using conda you should be able to run vitables on any system, let it
be linux, mac or windows. The following are instructions for linux-like
systems.Simply run
```sh
$ conda install -c conda-forge vitables
```For more details, see [INSTALL.txt](https://github.com/uvemas/ViTables/blob/master/INSTALL.txt).
### Launch
```sh
$ vitables [/path/to/hdf5/file]
```If `/path/to/hdf5/file` is given, vitables will load that file, otherwise, you need to select a file to open later.