Metadata-Version: 1.1
Name: cobutils
Version: 0.2.7
Summary: Manipulate cobol files from python
Home-page: https://pypi.python.org/pypi/cobutils
Author: Ferran Pegueroles Forcadell
Author-email: ferran@pegueroles.com
License: GPL
Description: .. -*- restructuredtext -*-
        
        ====================
         README for cobutils
        ====================
        
        **cobutils** is a library to access data on files formated with COBOL from
        python programs.
        
        
        The package includes ones executable to extract data from a COBOL file and
        another to create a file with COBOL formatted data::
        
            $ ./cobextract.py
            Usage: cobextract.py [OPTIONS] [FILE]
            Extract cobol sequential data from FILE or standard input
        
            cobextract.py: error: Record definition [-r|--reg] is required
        
        
            $ ./cobcreate.py --help
            Usage: cobcreate.py [OPTIONS] [CSVFILE]
            Create a cobol sequential data from CSV FILE or standard input
        
            Options:
              -h, --help           show this help message and exit
              -r FILE, --reg=FILE  read register from FILE
              -o FILE, --out=FILE  output FILE
              -q, --quiet          don't print status messages to stdout
        
        
        The project code and bugtracker is hosted on
        `Bitbucket <http://bitbucket.org/ferranp/cobutils/>`_.
        
        Install
        =======
        
        Using pip::
        
            pip install cobutils
        
        Os download and use ``setup`` ::
        
            python setup.py install
        
        
        Links
        =====
        
         * `Project site <http://bitbucket.org/ferranp/cobutils/>`_.
         * `Python package index page <https://pypi.python.org/pypi/cobutils>`_.
        
        
        
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Information Technology
Classifier: License :: OSI Approved :: GNU Lesser General Public License v2 (LGPLv2)
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.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
