Metadata-Version: 1.1
Name: opengridview
Version: 0.0.3
Summary: GUI presentation of data
Home-page: https://github.com/backslasher/opengridview
Author: BackSlasher
Author-email: nitz.raz@gmail.com
License: GPLv3
Description: ==============
        Open-GridView
        ==============
        
        An application insipired by PowerShell's `Out-GridView <https://technet.microsoft.com/en-us/library/hh849920.aspx>`_
        .
        
        Implemented on Gnome using GTK
        
        Input is passed via STDIN or via filenames in argument. Every file is assigned a window and a thread in charge of reading that file and parsing it.
        
        Also check out my post on it: http://blog.backslasher.net/open-gridview.html
        
        Prerequisites
        -------------
        Since we rely on Gtk, we need the python GTK bindings (`PyGobject <https://wiki.gnome.org/action/show/Projects/PyGObject?action=show&redirect=PyGObject>`_). Compiling it as a Python package is annoying, so it's better to install the Distro-provided package (e.g. in Ubuntu - `python-gi`)
        
        Basic usage
        -----------
        Either pipe input, or supply it as files.
        
        Default parser is autosplit (`re.split`) with `\\s+` as separator
        
        Change parser with `--parser`
        
        Change separator where applicable using `--separator`
        
        Column names are usually inferred from input. Use `--headers` to override.
        
        Columns can be discarded by specifying an empty name, like `--headers important,,also`
        
        Column types are usually inferred from first item in input. If overriding headers, follow a name with colons to force a specific type, like `--headers col,othercol:int,thirdcol`
        
        Parsing
        -------
        These different types of input formatting are currently supported:
        
        * ``autosplit`` (default), which uses ``re.split`` to create different columns from every row.
            Default separator is ``\s+`` which is good for space-separated items.
        
            Separator can contains capturing groups for `interesting results <https://docs.python.org/2/library/re.html#re.split>`_
        * ``csv``, with configurable column separators
        * ``line_json``, where every line is considered a single JSON object (Line delimited JSON)
        
        Items are displayed immediately when parsed
        
        Additional features
        -------------------
        * Clipboard support. Copies as CSV to allow easy pasting in spreadsheet software
        * Simple text filtering
        
        
        TODO
        ----
        * act as pipeline middle (and not just terminator), meaning that you can select items and click "OK" to make it send the items to STDOUT
        * Support advanced filtering (e.g. regex, specific columns)
        * Support hiding and re-ordering columns
        * show progress icon when stdin isn't EOF yet
        
Keywords: gridview grid filtering
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: System Administrators
Classifier: Intended Audience :: Science/Research
Classifier: Intended Audience :: Information Technology
Classifier: Topic :: Utilities
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
