Metadata-Version: 1.1
Name: harvest-python3
Version: 0.0.2
Summary: Python3 wrapper for harvest API
Home-page: https://github.com/laodicean/py-harvest3
Author: Brendan Roy
Author-email: br3ndanr@gmail.com
License: MIT
Description: Python 3 Harvest API Bindings
        ===================
        
        A python 3 wrapper for the harvestapp API. Derived from [lionheart's python2 harvest wrapper][1]. Additional detail can be found by checking the [harvestapp api documentation][2].
        
        Usage
        -----
        
            import harvest
            user = harvest.HarvestUser('https://example.harvestapp.com', 'example@email.com', 'passw0rd')
            user.who_am_i()
            user.update_task({
                'hours': 1.8
            })
            user.get_today()
        
          [1]: https://github.com/lionheart/python-harvest
          [2]: https://github.com/harvesthq/api
        
Keywords: harvest api harvestapp
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Software Development :: Libraries
