Metadata-Version: 1.0
Name: datalib
Version: 0.0.0
Summary: A library to work with time series data from xls
Home-page: http://ambhas.com/
Author: Sat Kumar Tomer
Author-email: satkumartomer@gmail.com
License: UNKNOWN
Download-URL: http://ambhas.com/tools/datalib-0.0.0.tar.gz
Description: ============
        datalib
        ============
        
        This is a package/library in python to work with time series data from xls file.
        This is being developed under the project `AMBHAS <http://www.ambhas.com/>`_.
        
        
        Installing datalib
        ======================
        
        Installing datalib can be done by downloading source file (datalib--<version>.tar.gz),
        and after unpacking issuing the command::
        
            python setup.py install
        
        This requires the usual Distutils options available.
        
        Or, download the datalib--<version>.tar.gz file and issue the command::
            
           pip /path/to/datalib--<version>.tar.gz
        
        Or, directly using the pip::
        
           pip install datalib   
        
        
        Usage
        =========
        Import required modules::
        
            import numpy as np
            from datalib import time_data
        
        Read the time series data::
        
            data = time_data('/pata/to/file.xls')
            year = data.get('year')
            month = data.get('month')
            gw_observed = 839-data.get('gw')
          
        Changelog
        =========
        
        0.0.0 (July 2011)
        ------------------
        - Initial release
        
        
        Any questions/comments
        =========================
        If you have any comment/suggestion/question, 
        please feel free to write me at satkumartomer@gmail.com
        
        So far, the documents are not well explained, 
        I will be updating them soon.
        
        
        
        
        
Keywords: time series,xls
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Other Environment
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)
Classifier: Operating System :: OS Independent
Classifier: Topic :: Scientific/Engineering
