Metadata-Version: 1.1
Name: csvshuf
Version: 1.0
Summary: Randomize cells within columns in a CSV file. Like GNU shuf, but for CSV.
Home-page: https://github.com/pereorga/csvshuf
Author: Pere Orga
Author-email: pere@orga.cat
License: GNU GPLv3
Description: csvshuf
        =======
        
        Shuffle cells in a CSV file. Like GNU shuf, but for CSV columns.
        
        
        Usage
        -----
        
        Shuffle the first column of each row of foobar.csv
        
            csvshuf -c1 foobar.csv
        
        Shuffle the third column of each row of foobar.csv using Sattolo's
        algorithm
        
            csvshuf -c3 -s foobar.csv
        
        Shuffle all columns of foobar.csv
        
            csvshuf foobar.csv
        
        Shuffle all the columns but the first of foobar.csv
        
            csvshuf -C1 foobar.csv
        
        Shuffle the first and third columns of the first ten lines of foobar.csv
        
            head -10 foobar.csv | csvshuf -c 1,3
        
        Shuffle the first and third columns of the pipe-delimited foobar.csv
        
            csvshuf -c1,3 -d "|" foobar.csv
        
        Shuffle the first and third columns of the tab-delimited foobar.csv
        
            csvshuf -c 1,3 -t foobar.csv
        
        Shuffle the first three columns of the pipe-delimited foobar.csv; output
        will be comma-delimited
        
            csvshuf -c 1,2,3 -d "|" -o , foobar.csv
        
        Shuffle the first three columns of the comma-delimited foobar.csv;
        output will be pipe-delimited
        
            csvshuf -c 1,2,3 -o "|" foobar.csv
        
        Shuffle the first two columns of the comma-delimited, pipe-quoted
        foobar.csv
        
            csvshuf -c 1,2 -d "," -q "|" foobar.csv
        
        
        
        Author
        ------
        
        Pere Orga pere@orga.cat, 2016.
        
        Originally forked from csvcut (https://gist.github.com/bycoffe/187278).
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: End Users/Desktop
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Scientific/Engineering :: Information Analysis
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Utilities
