├── .gitignore ├── .travis.yml ├── AUTHORS ├── CHANGES ├── LICENSE ├── PyBambooHR ├── PyBambooHR.py ├── __init__.py ├── config.py └── utils.py ├── README.md ├── README.rst ├── pypi.py ├── requirements.txt ├── setup.py └── tests ├── test_employees.py ├── test_misc.py └── test_reports.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smeggingsmegger/PyBambooHR/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smeggingsmegger/PyBambooHR/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smeggingsmegger/PyBambooHR/HEAD/AUTHORS -------------------------------------------------------------------------------- /CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smeggingsmegger/PyBambooHR/HEAD/CHANGES -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smeggingsmegger/PyBambooHR/HEAD/LICENSE -------------------------------------------------------------------------------- /PyBambooHR/PyBambooHR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smeggingsmegger/PyBambooHR/HEAD/PyBambooHR/PyBambooHR.py -------------------------------------------------------------------------------- /PyBambooHR/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smeggingsmegger/PyBambooHR/HEAD/PyBambooHR/__init__.py -------------------------------------------------------------------------------- /PyBambooHR/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smeggingsmegger/PyBambooHR/HEAD/PyBambooHR/config.py -------------------------------------------------------------------------------- /PyBambooHR/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smeggingsmegger/PyBambooHR/HEAD/PyBambooHR/utils.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smeggingsmegger/PyBambooHR/HEAD/README.md -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smeggingsmegger/PyBambooHR/HEAD/README.rst -------------------------------------------------------------------------------- /pypi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smeggingsmegger/PyBambooHR/HEAD/pypi.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | httpretty>=0.6.5 2 | requests>=2.0.0 3 | xmltodict==0.9.2 4 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smeggingsmegger/PyBambooHR/HEAD/setup.py -------------------------------------------------------------------------------- /tests/test_employees.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smeggingsmegger/PyBambooHR/HEAD/tests/test_employees.py -------------------------------------------------------------------------------- /tests/test_misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smeggingsmegger/PyBambooHR/HEAD/tests/test_misc.py -------------------------------------------------------------------------------- /tests/test_reports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smeggingsmegger/PyBambooHR/HEAD/tests/test_reports.py --------------------------------------------------------------------------------