Metadata-Version: 1.1
Name: PyVantagePro
Version: 0.2
Summary: Communication tools for the Davis VantagePro2 devices
Home-page: https://github.com/SalemHarrache/PyVantagePro
Author: Lionel Darras
Author-email: Lionel.Darras@obs.ujf-grenoble.fr
License: GNU GPL v3
Description: PyVantagePro
        ============
        
        .. image:: https://secure.travis-ci.org/SalemHarrache/PyVantagePro.png?branch=master
        
        PyVantagePro is a python project which aims to make the communication with
        weather stations Davis VantagePro2 easier and funnier...i.e. more Pythonic.
        
        The main feature of this project is to get data automatically.
        In order to do so, it uses the basic methods `get_archives()`
        (to get archive data) and `get_current_data()` (to get real-time data).
        
        About configuration, it only uses `gettime()` and `settime()` because we are
        assuming that stations are already configured.
        
        **Note:** PyVantagePro uses the `PyLink <http://pypi.python.org/pypi/PyLink>`_ lib, offers a universal communication interface with File-Like API.
        
        Examples
        --------
        
        ::
        
            >>> from pyvantagepro import VantagePro2
            >>>
            >>> device = VantagePro2('tcp:host-ip:port')
            >>> device.gettime()
            2012-06-13 16:44:56
            >>> data = device.get_current_data()
            >>> data['TempIn']
            87.1
            >>> data.raw
            4C 4F 4F ... 0D E6 3B
            >>> data.filter(('TempIn', 'TempOut', 'SunRise', 'SunSet')).to_csv()
            SunRise,SunSet,TempIn,TempOut
            03:50,19:25,87.3,71.5
        
        
        Features
        --------
        
        * Collecting real-time data as a python dictionary
        * Collecting archives as a list of dictionaries
        * Collecting data in a CSV file
        * Updating station time
        * Getting some information about the station, such as date and firmware version.
        * Various types of connections are supported
        * Comes with a command-line script
        * Compatible with Python 2.6+ and 3.x
        
        Documentation
        -------------
        
        See documentation here: http://pyvantagepro.readthedocs.org
        
        Changelog
        ---------
        
        Version 0.2
        ~~~~~~~~~~~
        
        Released on 2012-06-20.
        
        - Remove blist from requirements
        - Minor bug fixes
        
        Version 0.1
        ~~~~~~~~~~~
        
        Released on 2012-06-14.
        
        - First properly tagged release.
        - Support VantagePro2 revB only.
        - Parsing binary data into dict and list of dict.
        - Command-line script.
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Science/Research
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
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.2
Classifier: Topic :: Internet
Classifier: Topic :: Utilities
Classifier: Topic :: Software Development :: Libraries :: Python Modules
