Metadata-Version: 1.1
Name: pylleo
Version: 0.3
Summary: Utilities for working with Little Leonardo datalogger data in Python
Home-page: https://github.com/ryanjdillon/pylleo
Author: Ryan J. Dillon
Author-email: ryanjamesdillon@gmail.com
License: GPL-3.0+
Download-URL: https://github.com/ryanjdillon/pylleo/archive/0.3.tar.gz
Description: Pylleo
        ======
        
        |Documentation Status|_
        
        A collection of python utilities for working with data from Little
        Leonardo accelerometers
        
        Quickstart
        ----------
        `pylleo` is currently only available for `Python 3` and has not been
        extensively tested with different versions. For more detail, please refer to
        the documentation.
        
        Install
        ~~~~~~~
        
        .. code::
        
            pip3 install pylleo
        
        Load data
        ~~~~~~~~~
        
        .. code:: python
        
            import pylleo
        
            path_dir = './'
            meta = pylleo.lleoio.read_meta(path_dir, 'W190PD3GT', 34840)
            data = pylleo.lleoio.read_data(meta, path_dir)
        
        Calibration app
        ~~~~~~~~~~~~~~~
        o
        .. code::
        
            pylleo-cal
        
        
        Documentation
        -------------
        The latest documentation for `pylleo` can be found
        here_
        
        .. _here: `Documentation Status`_
        .. |Documentation Status| image:: https://readthedocs.org/projects/pylleo/badge/?version=latest
        .. _Documentation Status: http://pylleo.readthedocs.io/en/latest/?badge=latest
        
        License
        -------
        This project is licensed under the terms of the GPLv3 license. Please see the
        license file in this repository.
        
Keywords: datalogger,accelerometer,biotelemetry
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Science/Research
Classifier: Programming Language :: Python :: 3.5
