Metadata-Version: 2.1
Name: bamboopy
Version: 0.0.7
Summary: A python wrapper around BambooHR's APIs
Home-page: https://github.com/gortiz-v/bamboopy
Author: Gerardo Ortiz
Author-email: gortiz@netquest.com
License: MIT
Keywords: Bamboo,HR,BambooHR,API
Platform: OS Independent
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.6
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Description-Content-Type: text/markdown
Requires-Dist: rfc6266
Requires-Dist: xmltodict

# BambooHR Python Library
----

This library eases the use of the BambooHR REST API. It is an unofficial Python API for BambooHR.

This library require two additional libraries (xmltodic, rfc6266) to handle some special requests.

To use this library you can do

```python
from bamboopy import Employees

employees = Employees(
    api_key='MYCOMPANYAPIKEY',
    company='companyname')

employees = employees.directory()

```
This will give you a list of employees

You can also upload files to BambooHR

```python
from bamboopy import Employees

employees = Employees(
    api_key='MYCOMPANYAPIKEY',
    company='companyname')


employees.upload_file(
    123,
    category=12,
    file='./Contract_template.pdf',
    filename="Contract.pdf")
```

