Metadata-Version: 1.1
Name: idx2numpy
Version: 1.1.0
Summary: A Python package which provides tools to convert files to and from IDX format (described at http://yann.lecun.com/exdb/mnist/) into numpy.ndarray.
Home-page: https://github.com/ivanyu/idx2numpy
Author: Ivan Yurchenko
Author-email: ivan0yurchenko@gmail.com
License: MIT License
Description: idx2numpy
        =========
        
        idx2numpy package provides a tool for converting files to and from
        IDX format to numpy.ndarray. You can meet files in IDX format,
        e.g. when you're going to read the [MNIST database of handwritten digits]
        (http://yann.lecun.com/exdb/mnist/) provided by Yann LeCun.
        
        The description of IDX format also can be found on this page.
        
        [![Build Status](https://travis-ci.org/ivanyu/idx2numpy.svg?branch=master)](https://travis-ci.org/ivanyu/idx2numpy)
        
        Installation
        ============
        
        The easiest way to install is by using pip to pull it from PyPI:
        
            pip install idx2numpy
        
        You can also clone the Git repository from Github and install 
        the package manually:
        
            git clone https://github.com/ivanyu/idx2numpy.git
            python setup.py install
        
        Usage
        =====
        
        ```python
        import idx2numpy
        
        # Reading
        ndarr = idx2numpy.convert_from_file('myfile.idx')
        
        f_read = open('myfile.idx', 'rb')
        ndarr = idx2numpy.convert_from_file(f)
        
        s = f_read.read()
        ndarr = idx2numpy.convert_from_string(s)
        
        # Writing    
        idx2numpy.write_to_file('myfile_copy.idx', ndarr)
        
        f_write = open('myfile_copy2.idx', 'w')
        idx2numpy.write_to_file(f_write, ndarr)
        
        s = write_to_string(ndarr)
        ```
        
        Authors and Contributors
        ========================
        The project is started and maintained by Ivan Yurchenko
        (ivan0yurchenko@gmail.com).
        The Contributors are:
         * [andres-s](https://github.com/andres-s)
        
        License
        =======
        MIT license (see *LICENSE* file)
        
        
        Also
        ====
        
        Please, send me a feedback about the library, such as bugs, use cases etc.
        
Keywords: mnist numpy
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: MacOS
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX
Classifier: Operating System :: Unix
Classifier: Programming Language :: Python :: 2.5
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.0
Classifier: Programming Language :: Python :: 3.1
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: Software Development
