{
"info": {
"author": "Alex Thompson",
"author_email": "godfoder@acis.ufl.edu",
"bugtrack_url": null,
"classifiers": [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Topic :: Software Development :: Libraries :: Python Modules"
],
"description": "idigbio-python-client\n=====================\n\n.. image:: https://img.shields.io/pypi/v/idigbio.svg\n :target: https://pypi.python.org/pypi/idigbio\n\n.. image:: https://img.shields.io/travis/iDigBio/idigbio-python-client.svg\n :target: https://travis-ci.org/iDigBio/idigbio-python-client\n\nA python client for the `iDigBio `_ iDigBio v2 API.\n\nInstallation\n------------\n\n.. code-block::\n\n pip install idigbio\n\nIf you want to use the Pandas Data Frame interface you need to install\npandas as well.\n\n.. code-block::\n\n pip install idigbio pandas\n\nIf you see InsecurePlatformWarning or have other SSL certificate verification issues, you may \nwish to install urllib3 with the secure extra.\n\n.. code-block::\n\n pip install urllib3[secure]\n\n\nBasic Usage\n-----------\n\nReturning JSON from the API.\n\n.. code-block:: python\n\n import idigbio\n api = idigbio.json()\n json_output = api.search_records()\n\nReturning a Pandas Data Frame.\n\n.. code-block:: python\n\n import idigbio\n api = idigbio.pandas()\n pandas_output = api.search_records()\n\nSee the `Search API docs\n`_ for info about\nthe endpoint parameters.\n\n\nExamples\n++++++++\n\nView a Record By UUID\n\n.. code-block:: python\n\n import idigbio\n api = idigbio.json()\n record = api.view(\"records\",\"1db58713-1c7f-4838-802d-be784e444c4a\")\n\nSearch for a Record by scientific name\n\n.. code-block:: python\n\n import idigbio\n api = idigbio.json()\n record_list = api.search_records(rq={\"scientificname\": \"puma concolor\"})\n\nSearch for Records that have images\n\n.. code-block:: python\n\n import idigbio\n api = idigbio.json()\n record_list = api.search_records(rq={\"scientificname\": \"puma concolor\", \"hasImage\": True})\n\nSearch for a MediaRecords by record property\n\n.. code-block:: python\n\n import idigbio\n api = idigbio.json()\n mediarecord_list = api.search_media(rq={\"scientificname\": \"puma concolor\", \"hasImage\": True})\n\nCreate a heat map for a genus\n\n.. code-block:: python\n\n import idigbio\n api = idigbio.json()\n m = api.create_map(rq={\"genus\": \"acer\"}, t=\"geohash\")\n m.save_map_image(\"acer_map_geohash\", 2)\n\nCreate a point map for a genus\n\n.. code-block:: python\n\n import idigbio\n api = idigbio.json()\n m = api.create_map(rq={\"genus\": \"acer\"}, t=\"points\")\n m.save_map_image(\"acer_map_points\", 2)\n\nCreate a zoomed in point map for a bounding box\n\n.. code-block:: python\n\n import idigbio\n api = idigbio.json()\n bbox = {\"type\": \"geo_bounding_box\", \"bottom_right\": {\"lat\": 29.642979999999998, \"lon\": -82.00}, \"top_left\": {\"lat\": 29.66298, \"lon\": -82.35315800000001}}\n m = api.create_map(\n rq={\"geopoint\": bbox}\n )\n m.save_map_image(\"test.png\", None, bbox=bbox)\n\n\nCreate a summary of kingdom and phylum data\n\n.. code-block:: python\n\n import idigbio\n api = idigbio.json()\n summary_data = api.top_records(fields=[\"kingdom\", \"phylum\"])\n\nGet the number of Records for a search by scientific name\n\n.. code-block:: python\n\n import idigbio\n api = idigbio.json()\n count = api.count_records(rq={\"scientificname\": \"puma concolor\"})\n\nGet the number of MediaRecords for a search by scientific name\n\n.. code-block:: python\n\n import idigbio\n api = idigbio.json()\n count = api.count_media(rq={\"scientificname\": \"puma concolor\"})\n\nGet the histogram of Collection Dates for a search by record property, for the last 10 years\n\n.. code-block:: python\n\n import idigbio\n api = idigbio.json()\n histogram_data = api.datehist(\n rq={\"scientificname\": \"puma concolor\"},\n top_fields=[\"institutioncode\"], min_date=\"2005-01-01\")\n\nDevelopment\n+++++++++++\n\nTo contribute code to this project, please submit a pull request to the repo on github:\n\nhttps://github.com/idigbio/idigbio-python-client/\n\nTo set up a development environment, run the following from inside a python virtual environment\nin your local repo directory:\n\n.. code-block::\n\n pip install -e .\n\n\n\n.. :changelog:\n\nRelease History\n---------------\n\n0.8.5 (2018-03-16)\n++++++++++++++++++\n\n**New**\n\n- add debug command-line option\n\n0.8.4 (2017-06-07)\n++++++++++++++++++\n\n**New**\n\n- add full-featured example script fetch_media.py to download media from iDigBio\n- add documentation for fetch_media\n\n**Changes**\n\n- remove fetch_media_based_on_query.py which is superceded by fetch_media.py\n\n0.8.3.3 (2017-05-17)\n++++++++++++++++++++\n\n**New**\n\n- add an example to examples directory to download media based on search query\n\n**Changes**\n\n- minor changes to documentation, unit tests\n- remove hard-coded path to tmp directory\n\n0.8.2 (2017-05-10)\n++++++++++++++++++\n\n**New**\n\n- count_recordsets() function returns number of recordsets in iDigBio\n\n\n0.8.1 (2016-08-29)\n++++++++++++++++++\n\n- Send etag with file on upload to verify correctness\n\n0.6.1 (2016-04-08)\n++++++++++++++++++\n\n**Changes**\n\n- Add media_type to upload functionality.\n\n0.6.0 (2016-03-30)\n++++++++++++++++++\n\n**Changes**\n\n- Make pandas an extra requirements, update docs\n\n**New**\n\n- Specify auth for api backend\n- Upload image capability (requires auth)\n\n\n\n0.5.0 (2016-02-24)\n++++++++++++++++++\n\n**Changes**\n\n- Don't exclude ``data.*`` fields if requested specifically\n- Fix ``stats`` and ``datehist`` api calls to respect parameters;\n param names changed to use python style and match server params.\n\n\n0.4.3 (2016-02-23)\n++++++++++++++++++\n\n**Bugfixes**\n\n- no results no longer errs in the pandas client.\n- limit correctly limits to specified record, not next larger batch size\n\n**Miscellaneous**\n\n- Clarify targetted python versions",
"description_content_type": "",
"docs_url": null,
"download_url": "",
"downloads": {
"last_day": -1,
"last_month": -1,
"last_week": -1
},
"home_page": "http://github.com/idigbio/idigbio-python-client/",
"keywords": "",
"license": "MIT",
"maintainer": "",
"maintainer_email": "",
"name": "idigbio",
"package_url": "https://pypi.org/project/idigbio/",
"platform": "",
"project_url": "https://pypi.org/project/idigbio/",
"project_urls": {
"Homepage": "http://github.com/idigbio/idigbio-python-client/"
},
"release_url": "https://pypi.org/project/idigbio/0.8.5/",
"requires_dist": null,
"requires_python": "",
"summary": "Python Client for the iDigBio Search API",
"version": "0.8.5"
},
"last_serial": 3677328,
"releases": {
"0.2.1": [
{
"comment_text": "",
"digests": {
"md5": "8e5c2405b1b2cdf13d210fb91cfe163a",
"sha256": "e0d550702524dd1cc9a2df627a85f6c7de6dcccbee41bd6017d9e2d2397e95b2"
},
"downloads": -1,
"filename": "idigbio-0.2.1-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "8e5c2405b1b2cdf13d210fb91cfe163a",
"packagetype": "bdist_wheel",
"python_version": "2.7",
"requires_python": null,
"size": 8775,
"upload_time": "2015-03-06T14:29:46",
"url": "https://files.pythonhosted.org/packages/3d/f6/750bcdeb09759ab3a9c1fbdbf60a2269a9de6a29cc0eef9450bbea6d102a/idigbio-0.2.1-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "888afce6aa62a7eddaa888487106c8d7",
"sha256": "acf1ce787a1ebab9a77f1fb52be666c8c1b206cdacb6cc30292c76bcc0e1e563"
},
"downloads": -1,
"filename": "idigbio-0.2.1.tar.gz",
"has_sig": false,
"md5_digest": "888afce6aa62a7eddaa888487106c8d7",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 4537,
"upload_time": "2015-03-06T14:29:38",
"url": "https://files.pythonhosted.org/packages/fb/f1/74d94623b831eb69b76db94ac2db8ee55afdb5f80093f7a34acec4107208/idigbio-0.2.1.tar.gz"
}
],
"0.3.0": [
{
"comment_text": "",
"digests": {
"md5": "91d215d9d0e63cfd35e5c6aef58e4958",
"sha256": "a74ec05ca56651d7d81a1783a48b6c326a4fea6db0692238a3532ee9d9be2341"
},
"downloads": -1,
"filename": "idigbio-0.3.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "91d215d9d0e63cfd35e5c6aef58e4958",
"packagetype": "bdist_wheel",
"python_version": "2.7",
"requires_python": null,
"size": 9429,
"upload_time": "2015-03-06T22:04:19",
"url": "https://files.pythonhosted.org/packages/76/7a/d36d6f042f56654fb6088d2cc0c63d1adc2969d2cb8db74d187371d4dd2c/idigbio-0.3.0-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "31807e2b16318c5a1f7f9d4f29b9c63f",
"sha256": "eab96420101b18d832f6e8ba463942789c464bad8a302dda3a3ce4a7014fda91"
},
"downloads": -1,
"filename": "idigbio-0.3.0.tar.gz",
"has_sig": false,
"md5_digest": "31807e2b16318c5a1f7f9d4f29b9c63f",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 5022,
"upload_time": "2015-03-06T22:04:10",
"url": "https://files.pythonhosted.org/packages/24/97/d6318b22251a3fb5913db2b9f3bfbd07b45bbf1b158b342a6cfef8493e0b/idigbio-0.3.0.tar.gz"
}
],
"0.4.0": [
{
"comment_text": "",
"digests": {
"md5": "650800bf064b1ef7891e64926c7028e4",
"sha256": "86c0b82d62daf16ef7ffca82ccac24971cba942c12640097dbf0b045b6db7af8"
},
"downloads": -1,
"filename": "idigbio-0.4.0.tar.gz",
"has_sig": false,
"md5_digest": "650800bf064b1ef7891e64926c7028e4",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 6444,
"upload_time": "2015-06-05T18:39:20",
"url": "https://files.pythonhosted.org/packages/7d/ab/8f8cfb2908f8aa949c856133185cbe3a188bb75da467b3c3ddc98f521431/idigbio-0.4.0.tar.gz"
}
],
"0.4.1": [
{
"comment_text": "",
"digests": {
"md5": "19b87fed168a6ba250fbececf77d58c5",
"sha256": "5c8d03752a6430c5947fba3dc9e6b33b59ee9a8beee33771289d746adee049e2"
},
"downloads": -1,
"filename": "idigbio-0.4.1.tar.gz",
"has_sig": false,
"md5_digest": "19b87fed168a6ba250fbececf77d58c5",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 6435,
"upload_time": "2015-06-05T18:52:58",
"url": "https://files.pythonhosted.org/packages/09/c9/a7c07d1278e1e928f4b1816bc23ba34aaf867e346da14c0dd601a552586c/idigbio-0.4.1.tar.gz"
}
],
"0.4.2": [
{
"comment_text": "",
"digests": {
"md5": "2b060168355739752439ed0e124558db",
"sha256": "8b7cf32a8af894a188a5ddc85a4a28fc72e68e8c0ae5c8c6b2f71c0d3681216a"
},
"downloads": -1,
"filename": "idigbio-0.4.2.tar.gz",
"has_sig": false,
"md5_digest": "2b060168355739752439ed0e124558db",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 6428,
"upload_time": "2015-06-05T19:10:42",
"url": "https://files.pythonhosted.org/packages/32/a0/860d879c6a9829ea94b14d1ecd02c509173cce61737d05758d660faa467c/idigbio-0.4.2.tar.gz"
}
],
"0.4.3": [
{
"comment_text": "",
"digests": {
"md5": "7d2e8af75d499b259dfcc79fa76a4a49",
"sha256": "1800ae9251ef1e05587c38eb51484daa6718bee70dfabeea5fbca46c8992638e"
},
"downloads": -1,
"filename": "idigbio-0.4.3.tar.gz",
"has_sig": false,
"md5_digest": "7d2e8af75d499b259dfcc79fa76a4a49",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 7090,
"upload_time": "2016-02-23T21:22:19",
"url": "https://files.pythonhosted.org/packages/51/32/d719ec40d691b36dbd371e8fc3ae6353f9418351ea151cb26768b049bdce/idigbio-0.4.3.tar.gz"
}
],
"0.5.0": [
{
"comment_text": "",
"digests": {
"md5": "cc4c69a865d2d7442b1062268e0a0661",
"sha256": "6612b9dcc7c74b4f3c05872a375e2b413ded9d4951bdfe99fb5301e9782ca911"
},
"downloads": -1,
"filename": "idigbio-0.5.0.tar.gz",
"has_sig": false,
"md5_digest": "cc4c69a865d2d7442b1062268e0a0661",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 7326,
"upload_time": "2016-02-24T21:08:58",
"url": "https://files.pythonhosted.org/packages/c5/20/04487debe47ce3da7af57e0353ebdf01d34cdffe7e49083a034a577eb733/idigbio-0.5.0.tar.gz"
}
],
"0.6.0": [
{
"comment_text": "",
"digests": {
"md5": "f08ed1ce3d8db4f2e383acc12c286ec2",
"sha256": "0f917fabcb5082f1c15b981a1e27dc74ed393174ff6fd032a5a2c93fb17507ea"
},
"downloads": -1,
"filename": "idigbio-0.6.0.tar.gz",
"has_sig": false,
"md5_digest": "f08ed1ce3d8db4f2e383acc12c286ec2",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 8520,
"upload_time": "2016-03-30T16:59:18",
"url": "https://files.pythonhosted.org/packages/24/bf/0329d828453599466ec1c2f78f42c642694eb09ab8aaca4d12a86613c019/idigbio-0.6.0.tar.gz"
}
],
"0.6.1": [
{
"comment_text": "",
"digests": {
"md5": "f6861569fdc169557f44adaf9d44a960",
"sha256": "3a6616ebc84f4564c565037b3d8f4075c130f6f0d9f68c540aa1bdc3ab861f40"
},
"downloads": -1,
"filename": "idigbio-0.6.1-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "f6861569fdc169557f44adaf9d44a960",
"packagetype": "bdist_wheel",
"python_version": "3.5",
"requires_python": null,
"size": 11118,
"upload_time": "2016-04-08T14:53:19",
"url": "https://files.pythonhosted.org/packages/9a/f3/c45f1c1d75bbc41fe377b147362e1ba4468e69708443fe8acfd4c0eb4646/idigbio-0.6.1-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "83263adb45a4d858c78080d061979178",
"sha256": "fca047251c87d2dbaa98c31efdec744b44f961b3d4928331edaf027f8d832d85"
},
"downloads": -1,
"filename": "idigbio-0.6.1.tar.gz",
"has_sig": false,
"md5_digest": "83263adb45a4d858c78080d061979178",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 10142,
"upload_time": "2016-04-08T14:52:54",
"url": "https://files.pythonhosted.org/packages/95/44/e86a3a8a236659ddd07d3532ea5ec56900b025992e5611433482ed63b162/idigbio-0.6.1.tar.gz"
}
],
"0.7.0": [
{
"comment_text": "",
"digests": {
"md5": "be115ad9056d3ecf3afd9bd0642d53d9",
"sha256": "3d53c7fa924dd896aeb9e28a0993b7bf936daf190042ce8475862b4b295330f9"
},
"downloads": -1,
"filename": "idigbio-0.7.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "be115ad9056d3ecf3afd9bd0642d53d9",
"packagetype": "bdist_wheel",
"python_version": "2.7",
"requires_python": null,
"size": 11145,
"upload_time": "2016-06-01T20:23:39",
"url": "https://files.pythonhosted.org/packages/ac/1f/660b0fe0c5767ec03f8aaf6b986329b69957b3a13ece1ee09895e4a46034/idigbio-0.7.0-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "8fb67f21313ac73546b091b74bfe9232",
"sha256": "0776dbdd9feba1028c7ce70b8cc07e7c0cb1becf5275427f49ad2eab6af6e2b3"
},
"downloads": -1,
"filename": "idigbio-0.7.0.tar.gz",
"has_sig": false,
"md5_digest": "8fb67f21313ac73546b091b74bfe9232",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 8700,
"upload_time": "2016-06-01T20:23:35",
"url": "https://files.pythonhosted.org/packages/b8/2d/1212642fdc70c205d7c37761eb7f41801aeba6fde2010c81528284c2d382/idigbio-0.7.0.tar.gz"
}
],
"0.7.1": [
{
"comment_text": "",
"digests": {
"md5": "89c49ec29a12e84f56ff9f4f95500f64",
"sha256": "9772733426bb4c55538a8caf203866404836b6757fbcbe402c7a3892624eebfb"
},
"downloads": -1,
"filename": "idigbio-0.7.1-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "89c49ec29a12e84f56ff9f4f95500f64",
"packagetype": "bdist_wheel",
"python_version": "2.7",
"requires_python": null,
"size": 11185,
"upload_time": "2016-06-01T20:57:59",
"url": "https://files.pythonhosted.org/packages/b2/d1/99ad4527b0f9e4c1108dd60e649a1b680ee98ac58bbde2abdb0400ee94de/idigbio-0.7.1-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "f7390fea0fbb2f2ee4c04942d5e56523",
"sha256": "cbb6c27063a7aa2d5f088f50bdc2910b6c2510f63d8be75b38e31d14af22dab9"
},
"downloads": -1,
"filename": "idigbio-0.7.1.tar.gz",
"has_sig": false,
"md5_digest": "f7390fea0fbb2f2ee4c04942d5e56523",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 8730,
"upload_time": "2016-06-01T20:57:53",
"url": "https://files.pythonhosted.org/packages/eb/26/cbb8197c8f26890a026ca01b700f8dedc2d396a868fcb1a33df594a31b7a/idigbio-0.7.1.tar.gz"
}
],
"0.7.2": [
{
"comment_text": "built for Linux-4.4.0-24-generic-x86_64-with-glibc2.7",
"digests": {
"md5": "8261baaa1bbed5ad37655c99637f9885",
"sha256": "63f5829492de6c9440752ffc10925ecf28b7223a6bc1a2c9256f06b1f7a779ca"
},
"downloads": -1,
"filename": "idigbio-0.7.2.linux-x86_64.tar.gz",
"has_sig": false,
"md5_digest": "8261baaa1bbed5ad37655c99637f9885",
"packagetype": "bdist_dumb",
"python_version": "any",
"requires_python": null,
"size": 14552,
"upload_time": "2016-06-30T14:26:09",
"url": "https://files.pythonhosted.org/packages/99/eb/b65214ac0dc7a84699ca7f5b8157618004a4dd49ebdeec396f43ecd7d177/idigbio-0.7.2.linux-x86_64.tar.gz"
},
{
"comment_text": "",
"digests": {
"md5": "e17bab35bf11320c4de0d6e9df47771a",
"sha256": "6293b17b195877f09470c276b25ceb44da9f32e6213b4b0c81e5f1b10d57e41a"
},
"downloads": -1,
"filename": "idigbio-0.7.2.tar.gz",
"has_sig": false,
"md5_digest": "e17bab35bf11320c4de0d6e9df47771a",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 8738,
"upload_time": "2016-06-30T14:26:05",
"url": "https://files.pythonhosted.org/packages/98/15/bdc4300c058be5274540dba9a532d279e5799883e32dedfebcbd7861aad3/idigbio-0.7.2.tar.gz"
}
],
"0.8.0": [
{
"comment_text": "built for Linux-4.4.0-24-generic-x86_64-with-glibc2.7",
"digests": {
"md5": "02f72417ceb48240acbf6c1ee34f3487",
"sha256": "c7f490adf6f4f21c92534172fd259a7378def94b0fac6cb4010e978a2de4b65f"
},
"downloads": -1,
"filename": "idigbio-0.8.0.linux-x86_64.tar.gz",
"has_sig": false,
"md5_digest": "02f72417ceb48240acbf6c1ee34f3487",
"packagetype": "bdist_dumb",
"python_version": "any",
"requires_python": null,
"size": 14459,
"upload_time": "2016-07-01T17:51:55",
"url": "https://files.pythonhosted.org/packages/9f/7d/6ac4b12774152242b70639e6476d6634341254ae9fbd57a1c5ffd9fe4a64/idigbio-0.8.0.linux-x86_64.tar.gz"
},
{
"comment_text": "",
"digests": {
"md5": "8990650e9f415653787c5d58d4f3b944",
"sha256": "c955ca3659ac0b1794a02d4d40365762ce9b95e2d9b3e4165ef24a6ff506cd95"
},
"downloads": -1,
"filename": "idigbio-0.8.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "8990650e9f415653787c5d58d4f3b944",
"packagetype": "bdist_wheel",
"python_version": "2.7",
"requires_python": null,
"size": 11184,
"upload_time": "2016-08-18T20:58:39",
"url": "https://files.pythonhosted.org/packages/21/27/1738668edf54a807448d8ed74faa6290986c2c428fa4e7f46a0ff765d23c/idigbio-0.8.0-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "54431a3cf4f8260532f0c959db203a25",
"sha256": "facf847d1480ca966fb062c9b36f97c9ba412614ed199e3e5a48954cecca71cb"
},
"downloads": -1,
"filename": "idigbio-0.8.0.tar.gz",
"has_sig": false,
"md5_digest": "54431a3cf4f8260532f0c959db203a25",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 8741,
"upload_time": "2016-07-01T17:51:51",
"url": "https://files.pythonhosted.org/packages/b1/35/763081178444144eb484f34a57db71673978df90e185dca2bbd2195c6bba/idigbio-0.8.0.tar.gz"
}
],
"0.8.1": [
{
"comment_text": "",
"digests": {
"md5": "ae7010def1a0960391a805ed7282cb01",
"sha256": "b050329a3f3456d3a26a7f18180a87b5f570eba59baa66992a4b2ddcc476a36f"
},
"downloads": -1,
"filename": "idigbio-0.8.1.tar.gz",
"has_sig": false,
"md5_digest": "ae7010def1a0960391a805ed7282cb01",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 8740,
"upload_time": "2016-08-30T21:06:19",
"url": "https://files.pythonhosted.org/packages/e5/b0/d8a436646d7789959239f60e93b30a34e02b01948a5724329b770222e7d1/idigbio-0.8.1.tar.gz"
}
],
"0.8.2": [
{
"comment_text": "",
"digests": {
"md5": "f7158edba2ff93e83a1d38a250c65234",
"sha256": "089b70852ee74c3816354ba2afe915436911171ee695dde3d3989d5a2e3c508c"
},
"downloads": -1,
"filename": "idigbio-0.8.2.tar.gz",
"has_sig": false,
"md5_digest": "f7158edba2ff93e83a1d38a250c65234",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 8939,
"upload_time": "2017-05-10T20:08:32",
"url": "https://files.pythonhosted.org/packages/19/40/027e7e841b5f91882bb20c8a0c1d2bc5267d13fb45a9ad408e816c2b5772/idigbio-0.8.2.tar.gz"
}
],
"0.8.3": [
{
"comment_text": "",
"digests": {
"md5": "53afce3fb0c9bf1d19a7fc5a34e6350c",
"sha256": "7f9986288eee4b41e5b003b9d6e3d893f5c6c9e1f8f96de2d55167f3bf9191f7"
},
"downloads": -1,
"filename": "idigbio-0.8.3.tar.gz",
"has_sig": false,
"md5_digest": "53afce3fb0c9bf1d19a7fc5a34e6350c",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 9042,
"upload_time": "2017-05-17T17:45:44",
"url": "https://files.pythonhosted.org/packages/d7/dd/453567b717dcc39bee6d2e65e5d445ef1983b59c4ac25ebdace12acf3773/idigbio-0.8.3.tar.gz"
}
],
"0.8.3.1": [
{
"comment_text": "",
"digests": {
"md5": "76738700d48d2c773d3a473aa259317c",
"sha256": "2a81f29bf8f18d61c160becf9653535fc21932eb0df4d5cf8601ec60a2583748"
},
"downloads": -1,
"filename": "idigbio-0.8.3.1.tar.gz",
"has_sig": false,
"md5_digest": "76738700d48d2c773d3a473aa259317c",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 9068,
"upload_time": "2017-05-17T18:30:15",
"url": "https://files.pythonhosted.org/packages/4f/97/7efa01034a9dcd9bae2697d3d04d19767d4066a27a3f779296b3f2c80413/idigbio-0.8.3.1.tar.gz"
}
],
"0.8.3.3": [
{
"comment_text": "",
"digests": {
"md5": "b1dd0a292184310e683300bf18b5abab",
"sha256": "b29951d621c00f5c36b80cd4a255750c711ad734ee9530487ba8bed4cb1d5b6c"
},
"downloads": -1,
"filename": "idigbio-0.8.3.3.tar.gz",
"has_sig": false,
"md5_digest": "b1dd0a292184310e683300bf18b5abab",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 9079,
"upload_time": "2017-05-17T18:35:14",
"url": "https://files.pythonhosted.org/packages/fa/5b/08119681d240008e9eb7a42345a5e9cf94c5cf64e63e8473014f826958e8/idigbio-0.8.3.3.tar.gz"
}
],
"0.8.4": [
{
"comment_text": "",
"digests": {
"md5": "982150f954c295bf0e73128e3e99fba9",
"sha256": "5b963fe8e39ae4fe96a2b26fff792a845a44c25897fd6cb84fca18ad0673695b"
},
"downloads": -1,
"filename": "idigbio-0.8.4.tar.gz",
"has_sig": false,
"md5_digest": "982150f954c295bf0e73128e3e99fba9",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 9173,
"upload_time": "2017-06-07T15:05:08",
"url": "https://files.pythonhosted.org/packages/be/26/781443df0d7ed956b3427cffd3c59e0c3578375236e96325f46c85f8d121/idigbio-0.8.4.tar.gz"
}
],
"0.8.5": [
{
"comment_text": "",
"digests": {
"md5": "15fd38008144b4859ddc51542e2e5619",
"sha256": "70449e83153a0816faac708673d7244dc108785321f84f08d85b384d2801c400"
},
"downloads": -1,
"filename": "idigbio-0.8.5.tar.gz",
"has_sig": false,
"md5_digest": "15fd38008144b4859ddc51542e2e5619",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 9380,
"upload_time": "2018-03-16T19:25:22",
"url": "https://files.pythonhosted.org/packages/c6/18/59e9bd73bd5f12bb1cca33b2b970168b3b3cb8a6f57f6240fd4e7977239f/idigbio-0.8.5.tar.gz"
}
]
},
"urls": [
{
"comment_text": "",
"digests": {
"md5": "15fd38008144b4859ddc51542e2e5619",
"sha256": "70449e83153a0816faac708673d7244dc108785321f84f08d85b384d2801c400"
},
"downloads": -1,
"filename": "idigbio-0.8.5.tar.gz",
"has_sig": false,
"md5_digest": "15fd38008144b4859ddc51542e2e5619",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 9380,
"upload_time": "2018-03-16T19:25:22",
"url": "https://files.pythonhosted.org/packages/c6/18/59e9bd73bd5f12bb1cca33b2b970168b3b3cb8a6f57f6240fd4e7977239f/idigbio-0.8.5.tar.gz"
}
]
}