{ "info": { "author": "Scott Blevins", "author_email": "sblevins@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 3 - Alpha", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python :: 2.7", "Topic :: Software Development :: Libraries :: Python Modules" ], "description": "# PyBambooHR\n\n[![Build Status](https://secure.travis-ci.org/smeggingsmegger/PyBambooHR.png)](https://travis-ci.org/smeggingsmegger/PyBambooHR)   ![Download Stats](https://pypip.in/download/PyBambooHR/badge.svg)\n\nThis is an unofficial Python API for Bamboo HR. So far it is focusing on managing employee information but you can pretty much do anything you want with a little python.\n\nThe library makes use of the [requests](http://docs.python-requests.org/en/latest/) library for Python and [HTTPretty](https://github.com/gabrielfalcao/HTTPretty) for testing. A huge thank you to both of those excellent projects.\n\nUsing this library is very simple:\n\n```python\nfrom PyBambooHR import PyBambooHR\n\nbamboo = PyBambooHR(subdomain='yoursub', api_key='yourapikeyhere')\n\nemployees = bamboo.get_employee_directory()\n```\n\n(Note that you have to enable sharing employee directory to use that method.)\n\nThis will give you a list of employees with properties on each including their ID.\n\n\n```python\nfrom PyBambooHR import PyBambooHR\n\nbamboo = PyBambooHR(subdomain='yoursub', api_key='yourapikeyhere')\n\n# Jim's employee ID is 123 and we are not specifying fields so this will get all of them.\njim = bamboo.get_employee(123)\n\n# Pam's employee ID is 222 and we are specifying fields so this will get only the ones we request.\npam = bamboo.get_employee(222, ['city', 'workPhone', 'workEmail'])\n\n```\n\nAdding an employee\n\n```python\nfrom PyBambooHR import PyBambooHR\n\nbamboo = PyBambooHR(subdomain='yoursub', api_key='yourapikeyhere')\n\n# The firstName and lastName keys are required...\nemployee = {'firstName': 'Test', 'lastName': 'Person'}\n\nresult = bamboo.add_employee(employee)\n\nThe result dict will contain id and location. \"id\" is the numerical BambooHR employee ID. Location is a link to that employee.\n\n```\n\nUpdating an employee\n\n```python\nfrom PyBambooHR import PyBambooHR\n\nbamboo = PyBambooHR(subdomain='yoursub', api_key='yourapikeyhere')\n\n# His name was test person...\nemployee = {'firstName': 'Another', 'lastName': 'Namenow'}\n\n# Use the ID and then the dict with the new information\nresult = bamboo.update_employee(333, employee)\n\nresult will be True or False depending on if it succeeded.\n\n```\n\nRequesting a Report\n\n```python\nfrom PyBambooHR import PyBambooHR\n\nbamboo = PyBambooHR(subdomain='yoursub', api_key='yourapikeyhere')\n\n# Use the ID to request json information\nresult = bamboo.request_company_report(1, format='json', filter_duplicates=True)\n\n# Now do stuff with your results (Will vary by report.)\nfor employee in result['employees']:\n print(employee)\n\n# Use the ID and save a pdf:\nresult = bamboo.request_company_report(1, format='pdf', output_file='/tmp/report.pdf', filter_duplicates=True)\n\n```\nGetting information that is scheduled in the future\n```python\nfrom PyBambooHR import PyBambooHR\n\nbamboo = PyBambooHR(subdomain='yoursub', api_key='yourapikeyhere', onlyCurrent=False)\n\n```\nBambooHR has effective dates for when promotions are scheduled to happen or when new hires are going to join the organization. In order to see these events before they happen using the BambooHR API set `onlyCurrent` to `False`. As a note, this only works for pulling reports and getting employee information. This does not work on getting the employee directory.\n\nCHANGES\n=======\nVersion 0.4.2 - 03 October 2014\n\n * Added row_id to row dictionary to keep track of them in case we need them.\n\nVersion 0.3.6 - 03 October 2014\n\n * Improvements by Ng Zhi An\n\nVersion 0.3.1 - 24 February 2014\n\n * Raise errors on non-200 statuses\n\nVersion 0.3.0 - 23 February 2014\n\n * Company Reports\n * Custom Reports\n\nVersion 0.2.0 - 05 October 2013\n\n * Underscore key support\n * Better test coverage\n\nVersion 0.1.0 - 02 October 2013\n\n * Pre-Alpha version\n * Uses Bamboo HR API to get employee info.\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "http://github.com/smeggingsmegger/PyBambooHR", "keywords": "Bamboo", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "PyBambooHR", "package_url": "https://pypi.org/project/PyBambooHR/", "platform": "OS Independent", "project_url": "https://pypi.org/project/PyBambooHR/", "project_urls": { "Homepage": "http://github.com/smeggingsmegger/PyBambooHR" }, "release_url": "https://pypi.org/project/PyBambooHR/0.8.0/", "requires_dist": null, "requires_python": "", "summary": "A Python wrapper for the Bamboo HR API", "version": "0.8.0" }, "last_serial": 4811310, "releases": { "0.1.0": [ { "comment_text": "", "digests": { "md5": "8e5c7f6352dcf9482368aa88a02c2bb2", "sha256": "07da29f8b2a80a76a66d153ad0bb85b7e4354bfc05ca982d04fb8cdfb6952c65" }, "downloads": -1, "filename": "PyBambooHR-0.1.0.tar.gz", "has_sig": false, "md5_digest": "8e5c7f6352dcf9482368aa88a02c2bb2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5103, "upload_time": "2013-10-03T02:46:40", "url": "https://files.pythonhosted.org/packages/b1/20/33c6eb1411dc9611726d79534c3eb45cc17cabec55211fad6ae29ad3fcbf/PyBambooHR-0.1.0.tar.gz" } ], "0.1.1": [ { "comment_text": "", "digests": { "md5": "f6e9b9352617781caf792dab177a5a0b", "sha256": "6849a3948bdbda21b8280ae5a539f99243940449d64ba6b304c187c27a331eae" }, "downloads": -1, "filename": "PyBambooHR-0.1.1.tar.gz", "has_sig": false, "md5_digest": "f6e9b9352617781caf792dab177a5a0b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2441, "upload_time": "2013-10-03T02:55:50", "url": "https://files.pythonhosted.org/packages/d2/56/2a45b8c7f01469b460b0ba3a3a279deaa0f433fa29377cf5808595b6f91b/PyBambooHR-0.1.1.tar.gz" } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "111dfb4013c058af7c6432ea009cc0d1", "sha256": "365ae3c3312221fb7837b54aba509f03dca662a539478be6c703c48f00813464" }, "downloads": -1, "filename": "PyBambooHR-0.2.0.tar.gz", "has_sig": false, "md5_digest": "111dfb4013c058af7c6432ea009cc0d1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2701, "upload_time": "2013-10-03T03:26:35", "url": "https://files.pythonhosted.org/packages/5d/55/0f42c69eb8ebc225ab897fb492ddc95efa1b3edac1a471a830a5ecb03c00/PyBambooHR-0.2.0.tar.gz" } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "92118f2b938d17f1393ae3f8235d5146", "sha256": "5a9066bcd75892261e48abc4dc89be0de4cd36c44cb006445c68e885791356e3" }, "downloads": -1, "filename": "PyBambooHR-0.2.1.tar.gz", "has_sig": false, "md5_digest": "92118f2b938d17f1393ae3f8235d5146", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5438, "upload_time": "2013-10-03T03:49:35", "url": "https://files.pythonhosted.org/packages/a0/2b/b1e383230e31d6803b137bffd46dce9c50cde1709cf856ec8dc3f2aca3f8/PyBambooHR-0.2.1.tar.gz" } ], "0.2.2": [ { "comment_text": "", "digests": { "md5": "f9762570217920a7064ba756a8d01e42", "sha256": "aef19cd47fe1b0f1d2149f88072ea224f4466f7d5dba16bd471f2858d1ee09e7" }, "downloads": -1, "filename": "PyBambooHR-0.2.2.tar.gz", "has_sig": false, "md5_digest": "f9762570217920a7064ba756a8d01e42", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5451, "upload_time": "2013-10-03T03:55:53", "url": "https://files.pythonhosted.org/packages/2b/07/a2cbef0d05c8c1890eae3e5e76e4935169673d4db2bad46971888af1c4b4/PyBambooHR-0.2.2.tar.gz" } ], "0.2.3": [ { "comment_text": "", "digests": { "md5": "33ab583478c5b49756fb2521067237a7", "sha256": "ec99ab031b2c29e400d521b0f637bf8354fddd0e6f6dde94967bef0437147648" }, "downloads": -1, "filename": "PyBambooHR-0.2.3.tar.gz", "has_sig": false, "md5_digest": "33ab583478c5b49756fb2521067237a7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6721, "upload_time": "2013-10-04T21:08:57", "url": "https://files.pythonhosted.org/packages/94/26/d6d4f61106506c6f615678345baa9258c94c5ba27a801bdaed3ed8a5fd46/PyBambooHR-0.2.3.tar.gz" } ], "0.2.4": [ { "comment_text": "", "digests": { "md5": "1c96a70100da8b7e9868ec483bc9ed00", "sha256": "47963cddd01250584f660141cf27856937405dd536787001d9583d4539e8be4a" }, "downloads": -1, "filename": "PyBambooHR-0.2.4.tar.gz", "has_sig": false, "md5_digest": "1c96a70100da8b7e9868ec483bc9ed00", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6851, "upload_time": "2013-10-05T18:53:59", "url": "https://files.pythonhosted.org/packages/80/82/794d3610dba9dfdbfbdb3a47856e7e6b69520eef1f6a0228508b28468eb9/PyBambooHR-0.2.4.tar.gz" } ], "0.2.5": [ { "comment_text": "", "digests": { "md5": "a120c73baff742cbbcf62635aa1f9e19", "sha256": "52f506f8eaf526571b182bdba4e771fff4c82072d6e97488ccbc7f649161aae9" }, "downloads": -1, "filename": "PyBambooHR-0.2.5.tar.gz", "has_sig": false, "md5_digest": "a120c73baff742cbbcf62635aa1f9e19", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6864, "upload_time": "2013-10-05T19:00:55", "url": "https://files.pythonhosted.org/packages/bb/62/921b4d34f51fc0b0f91807ccdfdfd95873a70dc7daba903f1f8de423190d/PyBambooHR-0.2.5.tar.gz" } ], "0.2.6": [ { "comment_text": "", "digests": { "md5": "f3a8d017c2bfc1d73e43b44437aca6e8", "sha256": "f405f27f4e0c5e5ebad90884c1e329871562531d3485e3bc25275254f32d3052" }, "downloads": -1, "filename": "PyBambooHR-0.2.6.tar.gz", "has_sig": false, "md5_digest": "f3a8d017c2bfc1d73e43b44437aca6e8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6875, "upload_time": "2013-10-05T22:02:49", "url": "https://files.pythonhosted.org/packages/0b/f8/e560802a1d27cf8f67fa2ca9215ac6633b0d7463b92cbc439d45790a8ce3/PyBambooHR-0.2.6.tar.gz" } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "07c9b8139dcfbb5efa5ad6a149c6e379", "sha256": "4f860b37f950a8ad5147e1be23e60c1ad1a1c31d1cd2b743a554b8fea2be93c4" }, "downloads": -1, "filename": "PyBambooHR-0.3.0.tar.gz", "has_sig": false, "md5_digest": "07c9b8139dcfbb5efa5ad6a149c6e379", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7944, "upload_time": "2014-02-24T03:58:19", "url": "https://files.pythonhosted.org/packages/2e/32/ed846fe62f2c30a425451e479d2105ec64b969533126cc6e554e281aacd2/PyBambooHR-0.3.0.tar.gz" } ], "0.3.1": [ { "comment_text": "", "digests": { "md5": "250a046ed97d0e0e38e50f1230da4a6a", "sha256": "bfddd951c4849d95d68298412072bd3bd1b33c81a5e91943093ed67d2fc450e9" }, "downloads": -1, "filename": "PyBambooHR-0.3.1.tar.gz", "has_sig": false, "md5_digest": "250a046ed97d0e0e38e50f1230da4a6a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8092, "upload_time": "2014-02-25T02:34:23", "url": "https://files.pythonhosted.org/packages/2a/b0/8cc26ef507aa96cfb630bde2222821c46c1857baa7c26a93a1d4b69e2b48/PyBambooHR-0.3.1.tar.gz" } ], "0.3.2": [ { "comment_text": "", "digests": { "md5": "28bd353a7bd1b1d08c6f65a1d4f7c537", "sha256": "06f333cad97665aaf3142dba901f99cbe1a5f8fc2dde2b067c5338dd31709452" }, "downloads": -1, "filename": "PyBambooHR-0.3.2.tar.gz", "has_sig": false, "md5_digest": "28bd353a7bd1b1d08c6f65a1d4f7c537", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8051, "upload_time": "2014-05-06T19:36:08", "url": "https://files.pythonhosted.org/packages/e7/b6/60da1a5c7f29368b2bb8bc257f0e6816dd05aab6697ad8d2bd01f196c82b/PyBambooHR-0.3.2.tar.gz" } ], "0.3.3": [ { "comment_text": "", "digests": { "md5": "df00de507389458db184d8d5e31b4c85", "sha256": "d28e0a9b77442ddf992d800542e702d2e11ea3a9046b44e367c4d6fffe4dea93" }, "downloads": -1, "filename": "PyBambooHR-0.3.3.tar.gz", "has_sig": false, "md5_digest": "df00de507389458db184d8d5e31b4c85", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8052, "upload_time": "2014-05-06T19:40:41", "url": "https://files.pythonhosted.org/packages/ea/e3/783b9c7ff99f2928d108807787502be34135ad47523dba0ef2833073e546/PyBambooHR-0.3.3.tar.gz" } ], "0.3.4": [ { "comment_text": "", "digests": { "md5": "92742b41900a00223cd8f1ea73ee4df9", "sha256": "17230b888b7430ec88f048495180c4eb92fba3885ebd8cfb62141e124f9a9163" }, "downloads": -1, "filename": "PyBambooHR-0.3.4.tar.gz", "has_sig": false, "md5_digest": "92742b41900a00223cd8f1ea73ee4df9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8055, "upload_time": "2014-05-06T19:43:05", "url": "https://files.pythonhosted.org/packages/07/f8/6d0ab85116cbd8549271849a018651168a18a1c8c0469d9d494df8bb6714/PyBambooHR-0.3.4.tar.gz" } ], "0.4.0": [ { "comment_text": "", "digests": { "md5": "051d7d77e1fb83619af70b2796ebb9d0", "sha256": "9b1da5fa98681332cb689f91f253ad7975fd751c5b0e35229becc8517b8da5ea" }, "downloads": -1, "filename": "PyBambooHR-0.4.0.tar.gz", "has_sig": false, "md5_digest": "051d7d77e1fb83619af70b2796ebb9d0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10615, "upload_time": "2014-10-02T23:08:23", "url": "https://files.pythonhosted.org/packages/1c/50/28632b2d47384d32b091a6963700baa3de76d0795e8a41a9df3f183e58a0/PyBambooHR-0.4.0.tar.gz" } ], "0.4.1": [ { "comment_text": "", "digests": { "md5": "f79f8e2f8655da9ba04ca876c13d8876", "sha256": "5e3ed0c16a8bd00e03091bfddf537da48f6a6e1689f95efbddfe1f42b4b73333" }, "downloads": -1, "filename": "PyBambooHR-0.4.1.tar.gz", "has_sig": false, "md5_digest": "f79f8e2f8655da9ba04ca876c13d8876", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11308, "upload_time": "2014-10-03T17:40:19", "url": "https://files.pythonhosted.org/packages/32/b7/c92caad33fd5dd5db9c278fcf32c72ebbecbce4fe80f539833313cc8ae7e/PyBambooHR-0.4.1.tar.gz" } ], "0.4.2": [ { "comment_text": "", "digests": { "md5": "914501420cda2278937a0a5dd7e2bda4", "sha256": "8fe2109cda74e0d3dfa779d05bd35a85718acf22ddc66457efa41448433074c9" }, "downloads": -1, "filename": "PyBambooHR-0.4.2.tar.gz", "has_sig": false, "md5_digest": "914501420cda2278937a0a5dd7e2bda4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11400, "upload_time": "2014-10-03T20:45:50", "url": "https://files.pythonhosted.org/packages/f2/ce/802b42189d322590937cdca82a053b0c9ee742b88b5440a1ef5b9f1a4e39/PyBambooHR-0.4.2.tar.gz" } ], "0.5.0": [ { "comment_text": "", "digests": { "md5": "4665576579591b2de4aa187d7a3ef05d", "sha256": "0b633932af4795e5971b9f2c33755cdcebe4ec012f4f2cfda106c4b397bf8f0c" }, "downloads": -1, "filename": "PyBambooHR-0.5.0.tar.gz", "has_sig": false, "md5_digest": "4665576579591b2de4aa187d7a3ef05d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11667, "upload_time": "2015-02-04T21:28:00", "url": "https://files.pythonhosted.org/packages/25/2a/67f10f60ad415aed339aaf4093c3d09da8778e0a1b006e737211b0210cae/PyBambooHR-0.5.0.tar.gz" } ], "0.5.1": [ { "comment_text": "", "digests": { "md5": "5d60c4ff449d0e8705c6bc154c308757", "sha256": "936d2711e2b618f9e0dbfb6becb2f4daa08053e6b5514324dc7f19c675f16473" }, "downloads": -1, "filename": "PyBambooHR-0.5.1.tar.gz", "has_sig": false, "md5_digest": "5d60c4ff449d0e8705c6bc154c308757", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11821, "upload_time": "2015-04-19T03:25:16", "url": "https://files.pythonhosted.org/packages/94/09/9c684bc5cbba3c113cefa7de6ab665436a812a2bfbcb569bdd5b543e591b/PyBambooHR-0.5.1.tar.gz" } ], "0.6.0": [ { "comment_text": "", "digests": { "md5": "1e66846716a3c4baa9e14183bb15b99a", "sha256": "424aaa119630a56ca22b23475984226e5000c41a8f7f04b06755762671a7b919" }, "downloads": -1, "filename": "PyBambooHR-0.6.0.tar.gz", "has_sig": false, "md5_digest": "1e66846716a3c4baa9e14183bb15b99a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12073, "upload_time": "2015-04-19T03:55:06", "url": "https://files.pythonhosted.org/packages/33/ba/70c9237d4814dc8d60464dd7dacafaca49f2805b65e30861df40d14e2639/PyBambooHR-0.6.0.tar.gz" } ], "0.6.1": [ { "comment_text": "", "digests": { "md5": "a92ab9090e23e7b0de95a66022ee6649", "sha256": "b4f99ddd07c1c5426c870d80d773f3299945e49a6e2e2430a6fe0a1c4c8e4ea6" }, "downloads": -1, "filename": "PyBambooHR-0.6.1.tar.gz", "has_sig": false, "md5_digest": "a92ab9090e23e7b0de95a66022ee6649", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12079, "upload_time": "2015-06-01T15:40:00", "url": "https://files.pythonhosted.org/packages/30/a7/ea5a3aa3300b7e207475bd9fa1b6f1dd5904ec469e3920a761273e0973cc/PyBambooHR-0.6.1.tar.gz" } ], "0.6.2": [ { "comment_text": "", "digests": { "md5": "2ccbdcb28fa42ad6c8b93d2d0352ad02", "sha256": "f0f39ba6fd1a1000a9c861946cacc0e44c6c91a04b9ad5ed2205868c4573f5fc" }, "downloads": -1, "filename": "PyBambooHR-0.6.2.tar.gz", "has_sig": false, "md5_digest": "2ccbdcb28fa42ad6c8b93d2d0352ad02", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12080, "upload_time": "2015-06-01T15:42:37", "url": "https://files.pythonhosted.org/packages/20/b7/f6e9efdae3fcd5c95e81bad0bab14c312440de8be52e3294c8e52a2a3d9d/PyBambooHR-0.6.2.tar.gz" } ], "0.6.9": [ { "comment_text": "", "digests": { "md5": "b53e53025156e3295c651b581f28f64c", "sha256": "37360d82a296cbaa7a978d25dc377972cc8b77f02cffd1996a2369d6be5e65dd" }, "downloads": -1, "filename": "PyBambooHR-0.6.9.tar.gz", "has_sig": false, "md5_digest": "b53e53025156e3295c651b581f28f64c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12193, "upload_time": "2015-11-12T17:43:14", "url": "https://files.pythonhosted.org/packages/d2/5f/1e3e8679c497c43d6841261bab4c216c43b3aa13bf464f1f3a186cacb494/PyBambooHR-0.6.9.tar.gz" } ], "0.7.0": [ { "comment_text": "", "digests": { "md5": "7a08b327b169265931981e70d496fb89", "sha256": "078471a69f28a5b8054734e26c3c340547a9e16742160ac9dcdc5bb9c721d954" }, "downloads": -1, "filename": "PyBambooHR-0.7.0.tar.gz", "has_sig": false, "md5_digest": "7a08b327b169265931981e70d496fb89", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12220, "upload_time": "2016-06-24T01:17:16", "url": "https://files.pythonhosted.org/packages/01/b2/afa68d337ab79014aa84ddb3490eea66d97b41e6be38175ff8916706f99d/PyBambooHR-0.7.0.tar.gz" } ], "0.7.1": [ { "comment_text": "", "digests": { "md5": "b28557000accb51cd931e87a0e3a8d6b", "sha256": "7fbbcedd55c04a5e1ae0ab2ea16e4452e86e1aaf678d5ece727405f363675efc" }, "downloads": -1, "filename": "PyBambooHR-0.7.1.tar.gz", "has_sig": false, "md5_digest": "b28557000accb51cd931e87a0e3a8d6b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12512, "upload_time": "2016-06-24T01:17:57", "url": "https://files.pythonhosted.org/packages/98/6f/97b133ca4d77831437dbc3ca1662279e9432cab514c97ad9a4659c4dc522/PyBambooHR-0.7.1.tar.gz" } ], "0.7.2": [ { "comment_text": "", "digests": { "md5": "51c0455e868a956aa7d65ff8ff5071cc", "sha256": "f4dd856ccaa45ca4f6c0c481e405f524cc107caf88fbba585de22ac6f4164efe" }, "downloads": -1, "filename": "PyBambooHR-0.7.2.tar.gz", "has_sig": false, "md5_digest": "51c0455e868a956aa7d65ff8ff5071cc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12793, "upload_time": "2019-02-12T14:50:49", "url": "https://files.pythonhosted.org/packages/4c/6c/f3be87d84418efb0a6f7e0fdf8c0e4cd0e96921255e3ac96b6a559907ffd/PyBambooHR-0.7.2.tar.gz" } ], "0.8.0": [ { "comment_text": "", "digests": { "md5": "01050c50ad63829c3ae546c5c9baa894", "sha256": "6219d5c32ba7154737eafef7960f3c43cda83f94e5ff887e22144b1f6e4e686b" }, "downloads": -1, "filename": "PyBambooHR-0.8.0.tar.gz", "has_sig": false, "md5_digest": "01050c50ad63829c3ae546c5c9baa894", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14690, "upload_time": "2019-02-12T15:11:59", "url": "https://files.pythonhosted.org/packages/9a/4e/63af5bbdce4f4f9f1f89d4f48f6e89e4601273bbe7a5700756b15cb79a48/PyBambooHR-0.8.0.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "01050c50ad63829c3ae546c5c9baa894", "sha256": "6219d5c32ba7154737eafef7960f3c43cda83f94e5ff887e22144b1f6e4e686b" }, "downloads": -1, "filename": "PyBambooHR-0.8.0.tar.gz", "has_sig": false, "md5_digest": "01050c50ad63829c3ae546c5c9baa894", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14690, "upload_time": "2019-02-12T15:11:59", "url": "https://files.pythonhosted.org/packages/9a/4e/63af5bbdce4f4f9f1f89d4f48f6e89e4601273bbe7a5700756b15cb79a48/PyBambooHR-0.8.0.tar.gz" } ] }