{ "info": { "author": "Kyle McChesney & Nick Greenfield & Roderick Bovee", "author_email": "opensource@onecodex.com", "bugtrack_url": null, "classifiers": [ "Environment :: Console", "License :: OSI Approved :: MIT License", "Topic :: Internet :: WWW/HTTP", "Topic :: Scientific/Engineering :: Bio-Informatics", "Topic :: Software Development :: Libraries :: Python Modules" ], "description": "# One Codex API - Python Client Library and CLI\n\n[![Circle CI](https://circleci.com/gh/onecodex/onecodex.png?style=shield&circle-token=d86a8fc55e54a645ee515387db9acee32068a6ad)](https://circleci.com/gh/onecodex/onecodex) [![codecov](https://codecov.io/gh/onecodex/onecodex/branch/master/graph/badge.svg)](https://codecov.io/gh/onecodex/onecodex) ![Black Code Style](https://camo.githubusercontent.com/28a51fe3a2c05048d8ca8ecd039d6b1619037326/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f636f64652532307374796c652d626c61636b2d3030303030302e737667)\n\nCommand line interface (CLI) and Python client library for interacting with the One Codex v1 API ([API docs](https://docs.onecodex.com)).\n\nMAINTAINERS: [@polyatail](https://github.com/polyatail), [@bovee](https://github.com/bovee), [@boydgreenfield](https://github.com/boydgreenfield)\n\n# Installation\n\nThis package provides 3 major pieces of functionality: (1) a core Python client library; (2) a simple CLI for interacting with the One Codex platform that uses that core library; and (3) optional extensions to the client library, which offers many features aimed at advanced users and provides functionality for use in interactive notebook environments (e.g., IPython notebooks).\n\n\n### _Basic installation_\nThe CLI (and core Python library) may be simply installed using `pip`. To download a minimal installation (#1 and #2), simply run:\n```shell\npip install onecodex\n```\n\n\n### _Installation with optional extensions_\nTo also download the optional extensions to the client library - and all of their dependencies - use the command `pip install onecodex[all]`. **Warning:** Because other packages used in the extensions rely upon `numpy` being present during their installation, `numpy` must be installed seperately first. So if you do not have `numpy` installed, and you are going to install `onecodex[all]` please do the following:\n```shell\n# If numpy is not installed in your environment\npip install numpy\n\n# Once you have numpy installed\npip install onecodex[all]\n```\n\n# Using the CLI\n\n## Logging in\nThe CLI supports authentication using either your One Codex API key or your One Codex username and password.\nTo log in using your username and password:\n\n```shell\nonecodex login\n```\n\nThis command will save a credentials file at `~/.onecodex`, which will then automatically be used for authentication the next time the CLI or Python client library are used (OS X/Linux only). You can clear this file and remove your API key from your machine with `onecodex logout`.\n\nIn a shared environment, we recommend directly using your One Codex API key, rather than logging in and storing it in a credentials file. To use API key authentication, simply pass your key as an argument to the `onecodex` command:\n```shell\nonecodex --api-key=YOUR_API_KEY samples\n```\n\nYour API key can be found on the [One Codex settings page](https://app.onecodex.com/settings) and should be 32 character string. You may also generate a new API key on the settings page in the web application. _Note_: Because your API key provides access to all of the samples and metadata in your account, you should immediately reset your key on the website if it is ever accidentally revealed or saved (e.g., checked into a GitHub repository).\n\n## Uploading files\nThe CLI supports uploading FASTA or FASTQ files (optionally gzip compressed) via the `upload` command.\n```shell\nonecodex upload bacterial_reads_file.fq.gz\n```\n\nMultiple files can be uploaded in a single command as well:\n```shell\nonecodex upload file1.fq.gz file2.fq.gz ...\n```\n\nYou can also upload files using the Python client library:\n\n\n```python\nuploaded_sample1 = ocx.Samples.upload(\"/path/to/file.fastq\")\n\n# Or upload a tuple of paired end files\nuploaded_sample2 = ocx.Samples.upload((\"/path/to/R1.fastq\", \"/path/to/R2.fastq\"))\n```\n\nWhich returns a `Samples` resource (as of `0.5.0`). Samples can be associated with tags, metadata, and projects at upload timing using those respective keyword arguments:\n\n```python\n# Note format must match the schema defined for our API, with arbitrary\n# metadata allowed as a single-level dictionary in the `custom` field.\n# See https://docs.onecodex.com/reference#the-metadata-resource for details.\nmetadata = {\n \"platform\": \"Illumina NovaSeq 6000\",\n \"date_collected\": \"2019-04-14T00:51:54.832048+00:00\",\n \"external_sample_id\": \"my-lims-ID-or-similar\",\n \"custom\": {\n \"my-string-field\": \"A most interesting sample...\",\n \"my-boolean-field\": True,\n \"my-number-field-1\": 1,\n \"my-number-field-2\": 2.0,\n }\n}\n```\n\n\nUploads can be made in parallel using Python threads (or multiple processes), e.g.:\n\n```python\nimport concurrent.futures\nuploaded_samples = []\n\nwith concurrent.futures.ThreadPoolExecutor(max_workers=4) as executor:\n futures = {executor.submit(ocx.Samples.upload, file) for file in LIST_OF_FILES}\n for future in concurrent.futures.as_completed(futures):\n try:\n uploaded_samples.append(future.result())\n except Exception as e:\n print(\"An execption occurred during your upload: {}\".format(e))\n```\n\n\n## Resources\nThe CLI supports retrieving your One Codex samples and analyses. The following resources may be queried:\n\n* Your samples (`Samples`)\n\n* Sample metadata (`Metadata`)\n\n* `Analyses`, which include several subtypes with additional functionality and fields:\n * `Classifications`, which are basic metagenomic classification results for your samples\n * `Panels`, which are _in silico_ panels for particular genes or other functional markers ([example on One Codex](https://app.onecodex.com/panel/sample))\n\n* `Jobs`, which provide information on the name, version, and type of analysis which was performed for a given `Analyses`\n\n\nSimply invoke the `onecodex` command, using one of the above resource names as a subcommand (all lowercase). For example:\n```shell\n# fetch all your samples\nonecodex samples\n\n# fetch a list of panels based on their ids\nonecodex panels 0123456789abcdef 0987654321fdecba\n```\n\n# Using the Python client library\n\n## Initalization\nTo load the API, use the following import:\n```python\nfrom onecodex.api import Api\n```\n\nInstantiate an API client either by passing your API key or automatically fetching your credentials from `~/.onecodex` if you've previously called `onecodex login`.\n\n```python\nfrom onecodex.api import Api\n\n# Instantiate a One Codex API object, will attempt to get credentials from ~/.onecodex\nocx = Api()\n\n# Instantiate an API object, manually specifying an API key\nocx = Api(api_key=\"YOUR_API_KEY_HERE\")\n```\n\n## Resources\n\nResources are exposed as attributes on the API object. You can fetch a resource directly by its ID or you can fetch it using the query interface. Currently you can access resources using either `get()` or `where()`. If you need help finding the ID for a sample, its identifier is part of its url on our webpage: e.g. for an analysis at `https://app.onecodex.com/analysis/public/1d9491c5c31345b6`, the ID is `1d9491c5c31345b6`. IDs are all short unique identifiers, consisting of 16 hexadecimal characters (`0-9a-f`).\n\n```python\nsample_analysis = ocx.Classifications.get(\"1d9491c5c31345b6\") # Fetch an individual classification\nsample_analysis.results() # Returns classification results as JSON object\nsample_analysis.table() # Returns a pandas dataframe\n```\n\nIn addition to methods on individual instances of a given resource (e.g., a `Sample` or an `Analysis`), the library also provides methods for aggregating sets of samples or analyses:\n\n\n```python\nall_completed_analyses = ocx.Classifications.where(complete=True)\nall_completed_analyses.to_otu() # Returns classification results as JSON object\nall_completed_analyses.to_df() # Returns a pandas dataframe\n```\n\n# Development\n\nBefore developing, `git` and `python` (version >=2.7 and/or >=3.4) are needed. We recommend using [pyenv](https://github.com/yyuu/pyenv) for Python version management.\n\nTo download the client library from GitHub:\n\n```shell\ngit clone https://github.com/onecodex/onecodex.git\ncd onecodex/\n```\n\nTo set up the project, first create a virtual environment and then install dependencies:\n\n```shell\nvirtualenv venv\nsource venv/bin/activate\npip install numpy # numpy must be installed before any of its dependencies\npip install -r requirements.txt\n```\n\nTest are run through the Makefile, and call tox. Note this may take awhile at first because of installing dependencies:\n\n```shell\nmake lint\nmake test\n```\n\nWe use [`pre-commit`](https://pre-commit.com) for automated linting using [`black`](https://github.com/ambv/black), `flake8`, and various whitespace and newline formatters during development.", "description_content_type": "text/markdown", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/onecodex/onecodex", "keywords": "One Codex API Client", "license": "MIT License", "maintainer": "", "maintainer_email": "", "name": "onecodex", "package_url": "https://pypi.org/project/onecodex/", "platform": "", "project_url": "https://pypi.org/project/onecodex/", "project_urls": { "Homepage": "https://github.com/onecodex/onecodex" }, "release_url": "https://pypi.org/project/onecodex/0.7.2/", "requires_dist": null, "requires_python": "", "summary": "One Codex API client and Python library", "version": "0.7.2" }, "last_serial": 5974759, "releases": { "0.0.1": [ { "comment_text": "", "digests": { "md5": "7fa397d11cc0b83049998d8510c43a90", "sha256": "0a7a9a684ddf751f7ce173431200ef2657b30bcdd335ba0d21f9591aec395bc4" }, "downloads": -1, "filename": "onecodex-0.0.1.tar.gz", "has_sig": false, "md5_digest": "7fa397d11cc0b83049998d8510c43a90", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5471, "upload_time": "2014-10-20T22:17:28", "url": "https://files.pythonhosted.org/packages/24/9c/73c8ee44a2cc65e1d62fcd0ba2a47860f6d038086b3f68a831ce1c387185/onecodex-0.0.1.tar.gz" } ], "0.0.10": [ { "comment_text": "", "digests": { "md5": "4d19935dd831b50ac84943c28ad5eb9a", "sha256": "2b78a48aad092b932a522c04dcf01ef48a1f7e0fe510e1163caad44851fa1aa3" }, "downloads": -1, "filename": "onecodex-0.0.10.tar.gz", "has_sig": false, "md5_digest": "4d19935dd831b50ac84943c28ad5eb9a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8447, "upload_time": "2015-07-22T21:36:49", "url": "https://files.pythonhosted.org/packages/a3/1a/dcc608efe8f43446c671d58dcc3eb81edf9730bb90ab1a57b7a2315d67b4/onecodex-0.0.10.tar.gz" } ], "0.0.2": [ { "comment_text": "", "digests": { "md5": "636c0a0315adc1bc5fdeb3cbb68e3014", "sha256": "7fa8947c1d3ddc5b0ef5fa32269d6be1454482f2fa91fe3483fb4868e867d624" }, "downloads": -1, "filename": "onecodex-0.0.2.tar.gz", "has_sig": false, "md5_digest": "636c0a0315adc1bc5fdeb3cbb68e3014", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5607, "upload_time": "2014-10-21T21:29:36", "url": "https://files.pythonhosted.org/packages/9f/f7/19126a7a026e4d3d4b5dae5300563dd40eedde1ebd7c0ea45d63a5b4a5fa/onecodex-0.0.2.tar.gz" } ], "0.0.3": [ { "comment_text": "", "digests": { "md5": "53901cc6adfbd50ea626bea2ef2b2e63", "sha256": "b3b5e9221a8906ffc0dfc7709f3e545083f897064e5078e8d66ff3cc861f561b" }, "downloads": -1, "filename": "onecodex-0.0.3.tar.gz", "has_sig": false, "md5_digest": "53901cc6adfbd50ea626bea2ef2b2e63", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6188, "upload_time": "2014-10-28T15:47:39", "url": "https://files.pythonhosted.org/packages/f1/fb/4bd94bcb3ab1b60d5012d87960cf512ba15e55a41604e4cf95b688c6663e/onecodex-0.0.3.tar.gz" } ], "0.0.4": [ { "comment_text": "", "digests": { "md5": "0461352b02a220f16ed70ad7fce8db64", "sha256": "6451d55c1256d4222b624e13d8190245ec90538cb4baea2e4e31d35425688fe1" }, "downloads": -1, "filename": "onecodex-0.0.4.tar.gz", "has_sig": false, "md5_digest": "0461352b02a220f16ed70ad7fce8db64", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6323, "upload_time": "2014-10-29T15:26:32", "url": "https://files.pythonhosted.org/packages/72/d4/ecf6ce45289f863da44f3679a80890befaf777b56518e4e0687e103f9839/onecodex-0.0.4.tar.gz" } ], "0.0.5": [ { "comment_text": "", "digests": { "md5": "df589a1431982dd237f43845d246cecb", "sha256": "e823da1cc31236dac43951fc04eadb37189eb6da878f389cd4bb9176947e74a9" }, "downloads": -1, "filename": "onecodex-0.0.5.tar.gz", "has_sig": false, "md5_digest": "df589a1431982dd237f43845d246cecb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6404, "upload_time": "2014-10-29T17:48:08", "url": "https://files.pythonhosted.org/packages/d8/c1/fa293e0fca99ec13e7b102bf370531ac7f191841f86cbe4f49164faee3b1/onecodex-0.0.5.tar.gz" } ], "0.0.6": [ { "comment_text": "", "digests": { "md5": "5ce015297f08682fa378ab522476dac5", "sha256": "c7ab23e9a165f9a54a8606662aba6cda3c97fbff946748d9e0f0911084c5ad2c" }, "downloads": -1, "filename": "onecodex-0.0.6.tar.gz", "has_sig": false, "md5_digest": "5ce015297f08682fa378ab522476dac5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6609, "upload_time": "2014-10-30T18:04:45", "url": "https://files.pythonhosted.org/packages/fd/bd/b242968f0032bfdaccc3b0e99351e06027dac68ab674be09885cae806460/onecodex-0.0.6.tar.gz" } ], "0.0.7": [ { "comment_text": "", "digests": { "md5": "15149e5f7f16f575cf09e9c8615f70d0", "sha256": "24cf9b8dffef68e667738839dda083167e5b379a064270ce1b6efe2485b16164" }, "downloads": -1, "filename": "onecodex-0.0.7.tar.gz", "has_sig": false, "md5_digest": "15149e5f7f16f575cf09e9c8615f70d0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7662, "upload_time": "2015-02-13T05:12:11", "url": "https://files.pythonhosted.org/packages/20/2e/d7f2cd658103b3f4fd995b058efa264add5f16eb83c208ea72963076d5f2/onecodex-0.0.7.tar.gz" } ], "0.0.8": [ { "comment_text": "", "digests": { "md5": "4769053331ea1979026ae2ae6c22f3bf", "sha256": "8246d56da34bc7a9c2e510164e4ce308ca61e75395a047da70ad284e696dfcde" }, "downloads": -1, "filename": "onecodex-0.0.8.tar.gz", "has_sig": false, "md5_digest": "4769053331ea1979026ae2ae6c22f3bf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7864, "upload_time": "2015-05-19T23:50:28", "url": "https://files.pythonhosted.org/packages/2e/df/819bf3408acaef4ed99f2acef6d532e73a27c57031ca2bb5c76f4405d50a/onecodex-0.0.8.tar.gz" } ], "0.0.9": [ { "comment_text": "", "digests": { "md5": "a8180c89bfa4de1d28cdc39cba019f77", "sha256": "4eae254e82624e5e5a5fcb63b482788f6990c81a3b579d4c084a97b93d790d9c" }, "downloads": -1, "filename": "onecodex-0.0.9.tar.gz", "has_sig": false, "md5_digest": "a8180c89bfa4de1d28cdc39cba019f77", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8333, "upload_time": "2015-07-15T22:08:14", "url": "https://files.pythonhosted.org/packages/c8/32/87228c95b42bf63e56c4735afb93ee67f95188a5b48936a489b1390c97cd/onecodex-0.0.9.tar.gz" } ], "0.1.0": [ { "comment_text": "", "digests": { "md5": "596a579822d44af35eab094f954c524c", "sha256": "03cba6decf4d8cd7b03b9d78ed748ede9025e32499f0fef9a2587f9a122f9eea" }, "downloads": -1, "filename": "onecodex-0.1.0.tar.gz", "has_sig": false, "md5_digest": "596a579822d44af35eab094f954c524c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8491, "upload_time": "2015-08-06T17:39:49", "url": "https://files.pythonhosted.org/packages/fa/cf/5d9bde531654457b5aad1c2612a830bc34f981ff288c1ba206a2e89152cf/onecodex-0.1.0.tar.gz" } ], "0.1.1": [ { "comment_text": "", "digests": { "md5": "d24590cc415bbc07cd4a7658c11f1821", "sha256": "56c0970157d8f1df15ea2a18694f8d61fe4d30821e8235ee611aa600e998bcef" }, "downloads": -1, "filename": "onecodex-0.1.1.tar.gz", "has_sig": false, "md5_digest": "d24590cc415bbc07cd4a7658c11f1821", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8533, "upload_time": "2015-09-09T23:13:03", "url": "https://files.pythonhosted.org/packages/6a/66/8a636283b765fd9a02c111ea0094ff7206360245a22fd188fc7ba0b0fa4e/onecodex-0.1.1.tar.gz" } ], "0.1.2": [ { "comment_text": "", "digests": { "md5": "244a45b7f8280ab36d6cc779bcf35a2e", "sha256": "7cb9f67ed6e81182d408dcb7b383215cf4c3deb0f48b7ac3262a3d943dac10ad" }, "downloads": -1, "filename": "onecodex-0.1.2.tar.gz", "has_sig": false, "md5_digest": "244a45b7f8280ab36d6cc779bcf35a2e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8525, "upload_time": "2015-10-21T23:21:53", "url": "https://files.pythonhosted.org/packages/82/b0/a7edb3d0fa23fd8d6c17e7dc2d90ae717a164f04d799ea00aa78af5441df/onecodex-0.1.2.tar.gz" } ], "0.1.3": [ { "comment_text": "", "digests": { "md5": "6a741fdf6e62f106553e62b12c7eef39", "sha256": "69d9a8962f58ee7db162ff7fa7737ca7b99df075d088bda41d0b9612467dd033" }, "downloads": -1, "filename": "onecodex-0.1.3.tar.gz", "has_sig": false, "md5_digest": "6a741fdf6e62f106553e62b12c7eef39", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8575, "upload_time": "2016-08-23T20:58:05", "url": "https://files.pythonhosted.org/packages/24/d1/54d92de5608800360a596c150c291000b4d1804be08b9d3ef00b108f0132/onecodex-0.1.3.tar.gz" } ], "0.1.4": [ { "comment_text": "", "digests": { "md5": "f41cd46d2533e7caf8204956cdc81d5e", "sha256": "39899c0a0864fd33f41f048902eaebfedb3ac0f47a4cb15b6ebda681fc9cdb95" }, "downloads": -1, "filename": "onecodex-0.1.4.tar.gz", "has_sig": false, "md5_digest": "f41cd46d2533e7caf8204956cdc81d5e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8603, "upload_time": "2016-09-15T16:18:06", "url": "https://files.pythonhosted.org/packages/21/d5/846f358c3add03793ccd2d3e74b6c2fad2e9acea92fc2777e732a97652d0/onecodex-0.1.4.tar.gz" } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "44971656a96e29e5f8f99ab98f2b3f79", "sha256": "7756a62450eabc69b41079e6ae94c31f44e3c832ad09ba1c6cda8c1241a1f3df" }, "downloads": -1, "filename": "onecodex-0.2.0.tar.gz", "has_sig": false, "md5_digest": "44971656a96e29e5f8f99ab98f2b3f79", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 31351, "upload_time": "2017-01-06T00:59:28", "url": "https://files.pythonhosted.org/packages/c7/f5/3bf951652d5c87786f9beaff1d317b5921102253fc953a04fcfe5c9a4814/onecodex-0.2.0.tar.gz" } ], "0.2.0a0": [ { "comment_text": "", "digests": { "md5": "ab3ce9da472bf2f37723e66ac3ec7da1", "sha256": "695a89cb397e89a1847e7166e1e425d58afb783b4a39167b8e8f6febda267769" }, "downloads": -1, "filename": "onecodex-0.2.0a0.tar.gz", "has_sig": false, "md5_digest": "ab3ce9da472bf2f37723e66ac3ec7da1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 30666, "upload_time": "2016-11-04T20:17:49", "url": "https://files.pythonhosted.org/packages/85/b8/546d5d950ef763ebf55e4e56149b006d102e3c4c8274dabbd402c9d7fe6b/onecodex-0.2.0a0.tar.gz" } ], "0.2.0a1": [ { "comment_text": "", "digests": { "md5": "b1d68b70aa144b59254bcabcd85b013f", "sha256": "ce7faf7a6b7da339d9ce9c15c615104417a331b5a1963e1e50b10b35b7b38de2" }, "downloads": -1, "filename": "onecodex-0.2.0a1-py2.7.egg", "has_sig": false, "md5_digest": "b1d68b70aa144b59254bcabcd85b013f", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 77903, "upload_time": "2017-01-06T00:59:30", "url": "https://files.pythonhosted.org/packages/e5/da/aea6d3115e6e56289c40bec0f0668bf57755d7cf575eb762c928576aa7f1/onecodex-0.2.0a1-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "ca2fa86b8430b8eaf8772b97cb05a147", "sha256": "b135aa2738294bfed8d8bf3587b1f801f2e2a1407cb17bb1278cc52ba780b55f" }, "downloads": -1, "filename": "onecodex-0.2.0a1.tar.gz", "has_sig": false, "md5_digest": "ca2fa86b8430b8eaf8772b97cb05a147", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 30781, "upload_time": "2016-11-07T18:33:07", "url": "https://files.pythonhosted.org/packages/bd/a6/328333ca642aa278b806f670bf2dbff3e1fd7892b7868f96289663def0a4/onecodex-0.2.0a1.tar.gz" } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "893cc0b2180634aca23816b41d3f853a", "sha256": "7eae4a796d3e9f2bb61f30bf8b3c8a560e9b6800d7f0addcca26071accfc10e4" }, "downloads": -1, "filename": "onecodex-0.2.1-py2.7.egg", "has_sig": false, "md5_digest": "893cc0b2180634aca23816b41d3f853a", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 71716, "upload_time": "2017-01-17T23:23:35", "url": "https://files.pythonhosted.org/packages/86/1f/32868f6f79a482d60eca2d7bf5f9c7153fcbe72805a06aa27cbb3129b02c/onecodex-0.2.1-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "0256019164d9536fc8defc87fb1328c3", "sha256": "866fd0f95e3104b0ab4d8a73b36635fe3bd68d9f6d99a00975527a193a6c3495" }, "downloads": -1, "filename": "onecodex-0.2.1.tar.gz", "has_sig": false, "md5_digest": "0256019164d9536fc8defc87fb1328c3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 31607, "upload_time": "2017-01-17T23:23:37", "url": "https://files.pythonhosted.org/packages/47/cb/7909f3d58e4b850862d08c0a468b7eba0d634697b79d54d7c7fce683a4f6/onecodex-0.2.1.tar.gz" } ], "0.2.10": [ { "comment_text": "", "digests": { "md5": "5c561174443a02489024db857c7a118f", "sha256": "84e1253482459885c66bc87cc732a1c164b577fdc82ef4f23449ca2e1f248675" }, "downloads": -1, "filename": "onecodex-0.2.10.tar.gz", "has_sig": false, "md5_digest": "5c561174443a02489024db857c7a118f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 48179, "upload_time": "2018-01-09T06:56:48", "url": "https://files.pythonhosted.org/packages/09/d9/e71331423eaf002ea99b1f4e7a61b167f6f8f4091e591c567f13c4df878a/onecodex-0.2.10.tar.gz" } ], "0.2.11": [ { "comment_text": "", "digests": { "md5": "dfa60366592984b648a432c7f3521802", "sha256": "31544a2187359a818112c63b414e24a7bd5d77ba8dbbff34679fcec53232c2bc" }, "downloads": -1, "filename": "onecodex-0.2.11-py2.7.egg", "has_sig": false, "md5_digest": "dfa60366592984b648a432c7f3521802", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 112742, "upload_time": "2018-05-16T00:48:00", "url": "https://files.pythonhosted.org/packages/8e/66/675d1c7ac150dda99fd9dd10f6e037aa3e71260a707505135c929120c818/onecodex-0.2.11-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "83c8557921d8e0a9211cb2ac1c31c1c0", "sha256": "9d29f4ef98e5162db0e404549e0c4752d72e805a66505c25b8d65891a5f7dd47" }, "downloads": -1, "filename": "onecodex-0.2.11.tar.gz", "has_sig": false, "md5_digest": "83c8557921d8e0a9211cb2ac1c31c1c0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 47617, "upload_time": "2018-03-02T18:49:07", "url": "https://files.pythonhosted.org/packages/61/3d/3bfc5c37fa0daddb13725a2cbc69418e0303a7af8a81ccc8d65ebc03713b/onecodex-0.2.11.tar.gz" } ], "0.2.12": [ { "comment_text": "", "digests": { "md5": "dbb515eacd432c9baff807a471635f1e", "sha256": "5f8c6dce6a6de577fc676cf4e4e6314ae3c822544b5cb18622401930e0716ad6" }, "downloads": -1, "filename": "onecodex-0.2.12.tar.gz", "has_sig": false, "md5_digest": "dbb515eacd432c9baff807a471635f1e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 50424, "upload_time": "2018-05-16T00:48:02", "url": "https://files.pythonhosted.org/packages/84/97/d065263086b24cb4b74c104fd5c07384922cc81a32615ada074895088912/onecodex-0.2.12.tar.gz" } ], "0.2.13": [ { "comment_text": "", "digests": { "md5": "210d9ed6cdaa6abaab5f0deca2effcee", "sha256": "bbef79de8e75c22ca05834d1199a5027b576f03bd2d76c776b2b65148e4f62d5" }, "downloads": -1, "filename": "onecodex-0.2.13.tar.gz", "has_sig": false, "md5_digest": "210d9ed6cdaa6abaab5f0deca2effcee", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 51212, "upload_time": "2018-09-24T03:20:45", "url": "https://files.pythonhosted.org/packages/95/1f/08fe44513e1d7015a9bda132762df927c1831b245de56b7a0a7447bd06b1/onecodex-0.2.13.tar.gz" } ], "0.2.14": [ { "comment_text": "", "digests": { "md5": "4c5a5ffab8c4f951c047d865a94e7bd2", "sha256": "e71d465dfee22034ce5fd03be2439840a0a20d14c83513184146777516175933" }, "downloads": -1, "filename": "onecodex-0.2.14.tar.gz", "has_sig": false, "md5_digest": "4c5a5ffab8c4f951c047d865a94e7bd2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 64216, "upload_time": "2018-11-17T02:09:08", "url": "https://files.pythonhosted.org/packages/89/72/8cf2d2a53515ae790ed8c304cf44c5c9376afa6f355f905301b51a045968/onecodex-0.2.14.tar.gz" } ], "0.2.2": [ { "comment_text": "", "digests": { "md5": "7084f62fa377d31abe8cb2335d17062b", "sha256": "bdd8d5d1793d9fbfcfc0e57d8170741fb1caaee1bc397153c8c4aaf87926bd24" }, "downloads": -1, "filename": "onecodex-0.2.2.tar.gz", "has_sig": false, "md5_digest": "7084f62fa377d31abe8cb2335d17062b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 32248, "upload_time": "2017-01-21T01:20:30", "url": "https://files.pythonhosted.org/packages/10/b1/e66762a2c9e67a0322bbcc96bb413f45749be315163392b79d3060e81649/onecodex-0.2.2.tar.gz" } ], "0.2.3": [ { "comment_text": "", "digests": { "md5": "65723a6642e40bc69874dbb95aa19b80", "sha256": "666e341823c913f04b50db9237b20d96fdedf9cc723cd5d36d9a74cb3feec718" }, "downloads": -1, "filename": "onecodex-0.2.3.tar.gz", "has_sig": false, "md5_digest": "65723a6642e40bc69874dbb95aa19b80", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 32379, "upload_time": "2017-01-21T07:30:23", "url": "https://files.pythonhosted.org/packages/cf/0a/10be06247079528cdcfc25c01e6e6496be3c356f8e6ef3ddccb1c1b7816c/onecodex-0.2.3.tar.gz" } ], "0.2.4": [ { "comment_text": "", "digests": { "md5": "6e877b918f4c0328ba189877537399e8", "sha256": "f42188f2e9675c14804c4ad9211e28e5f65f827874f122bf0110416e70bd10dd" }, "downloads": -1, "filename": "onecodex-0.2.4.tar.gz", "has_sig": false, "md5_digest": "6e877b918f4c0328ba189877537399e8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 39561, "upload_time": "2017-08-21T18:36:40", "url": "https://files.pythonhosted.org/packages/82/32/595064f841cc9ea0ce6b2eebb4c1dfb18b081cc3e3550cebed1ef5fd5850/onecodex-0.2.4.tar.gz" } ], "0.2.5": [ { "comment_text": "", "digests": { "md5": "4c5f4baeed53f57c81eaa30c908c7578", "sha256": "61c11a25f00a01ec59358d364208bbec5a465b9281cc3863388a6e23dab87bff" }, "downloads": -1, "filename": "onecodex-0.2.5.tar.gz", "has_sig": false, "md5_digest": "4c5f4baeed53f57c81eaa30c908c7578", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 39589, "upload_time": "2017-08-21T21:45:55", "url": "https://files.pythonhosted.org/packages/3c/26/973ef4701d164d71900cfd4a11e3c85056a33af94b2a61a0906083098eb7/onecodex-0.2.5.tar.gz" } ], "0.2.6": [ { "comment_text": "", "digests": { "md5": "6806dc27588a8a4820f1c13dae1fa3d7", "sha256": "1000e3dc39cb200515d17a025997fabafc839c5a3908610bb46f715dcb9f7f64" }, "downloads": -1, "filename": "onecodex-0.2.6.tar.gz", "has_sig": false, "md5_digest": "6806dc27588a8a4820f1c13dae1fa3d7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 39989, "upload_time": "2017-08-25T00:34:18", "url": "https://files.pythonhosted.org/packages/6e/ae/8453a17f82c65f6c61f8178f81a557ee0dfb94cb525346d1594d65592b61/onecodex-0.2.6.tar.gz" } ], "0.2.7": [ { "comment_text": "", "digests": { "md5": "38d872f2f09db4ff85a71ebb9f6d554c", "sha256": "6cafa7fe30b53a9645b4c3ad4b64cbb53ddbe8b282cbf27bf40a17875d7cfe64" }, "downloads": -1, "filename": "onecodex-0.2.7.tar.gz", "has_sig": false, "md5_digest": "38d872f2f09db4ff85a71ebb9f6d554c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 41896, "upload_time": "2017-09-05T23:37:17", "url": "https://files.pythonhosted.org/packages/5f/cb/d273e336e3cd507a551d9288f00f35fa0d6e82a01d932b820b00c63edf43/onecodex-0.2.7.tar.gz" } ], "0.2.8": [ { "comment_text": "", "digests": { "md5": "149667d2e29f2d50124b7d45fccdcc26", "sha256": "f4d66ff89a83408cd364a813191d7e23e9ef8077896baab8675010780ae3ebb6" }, "downloads": -1, "filename": "onecodex-0.2.8.tar.gz", "has_sig": false, "md5_digest": "149667d2e29f2d50124b7d45fccdcc26", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 42031, "upload_time": "2017-09-14T00:34:29", "url": "https://files.pythonhosted.org/packages/bc/d9/34a3fdda441840eabcabe73cd8656db8d4ea5f4d1e1b77c88577a9910b1a/onecodex-0.2.8.tar.gz" } ], "0.2.9": [ { "comment_text": "", "digests": { "md5": "07fa6bf8fed583a3fe335550f7f32f9f", "sha256": "932fcbc925ec27c46bba93a118b23b6f6eaf76998a8e6ab7247f681952e78ef1" }, "downloads": -1, "filename": "onecodex-0.2.9-py3.6.egg", "has_sig": false, "md5_digest": "07fa6bf8fed583a3fe335550f7f32f9f", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 103982, "upload_time": "2018-09-24T03:20:47", "url": "https://files.pythonhosted.org/packages/c4/f8/2c0dd006c8e65dcdb9dd5b3d34c38ed2d7bbc283debc760b0197ad5a2e9b/onecodex-0.2.9-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "aeb42535cb1fd8c5e4def05d57f83fc4", "sha256": "01f336acdb62b97505d179fde72b894d0b65ea0464b9cf6e938130c74081257a" }, "downloads": -1, "filename": "onecodex-0.2.9.tar.gz", "has_sig": false, "md5_digest": "aeb42535cb1fd8c5e4def05d57f83fc4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 42109, "upload_time": "2017-10-27T20:59:47", "url": "https://files.pythonhosted.org/packages/af/c2/c27f749fbe7ff040cbabf6921448a1f57e0687b6f8cab9b265bae0803030/onecodex-0.2.9.tar.gz" } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "108d064fb1547410da194eac3ad4bb6a", "sha256": "3dbdb7338a34f0585ec253d5e4dbb4f3e771727197494947655a5475a307dfd3" }, "downloads": -1, "filename": "onecodex-0.3.0.tar.gz", "has_sig": false, "md5_digest": "108d064fb1547410da194eac3ad4bb6a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 69563, "upload_time": "2019-01-02T22:59:53", "url": "https://files.pythonhosted.org/packages/d2/33/01ef57f7b9532ca79565e1fad4cffff2ea96847facf7cd09121aa0c9780c/onecodex-0.3.0.tar.gz" } ], "0.3.1": [ { "comment_text": "", "digests": { "md5": "be106edb52e2940ebd00d42846328274", "sha256": "81f2431f9573d04f6ffd20d071834bd0ee0c2587e9ef93cac3d3151e56d79725" }, "downloads": -1, "filename": "onecodex-0.3.1.tar.gz", "has_sig": false, "md5_digest": "be106edb52e2940ebd00d42846328274", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 70019, "upload_time": "2019-01-09T17:18:03", "url": "https://files.pythonhosted.org/packages/92/f1/20a29b09336a443c540d7fb710c9a9a77a860bbf4489407f306bc44e6d7a/onecodex-0.3.1.tar.gz" } ], "0.4.0": [ { "comment_text": "", "digests": { "md5": "59bbaa1a1389175fdfb5918557cfa4bf", "sha256": "069b339e10c1ed8695c858a499532a6d89e4c51cf5a84f26e103d91d23552d7e" }, "downloads": -1, "filename": "onecodex-0.4.0.tar.gz", "has_sig": false, "md5_digest": "59bbaa1a1389175fdfb5918557cfa4bf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 118707, "upload_time": "2019-02-21T23:59:13", "url": "https://files.pythonhosted.org/packages/a1/94/aaf2d1c459b2a95645bde3466b9df0320f8a5190c05f808e5096948e3889/onecodex-0.4.0.tar.gz" } ], "0.4.1": [ { "comment_text": "", "digests": { "md5": "d68e75c6334b41aa47b8d5e6420674cf", "sha256": "8bec0eb16a459fa54b556b1016367be08e526c431f87080a26f8165124eeadf7" }, "downloads": -1, "filename": "onecodex-0.4.1.tar.gz", "has_sig": false, "md5_digest": "d68e75c6334b41aa47b8d5e6420674cf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 120498, "upload_time": "2019-03-08T01:33:40", "url": "https://files.pythonhosted.org/packages/00/51/9370127517278c891b95881cda1d25569a2942a007e6111534c544d7251d/onecodex-0.4.1.tar.gz" } ], "0.4.2": [ { "comment_text": "", "digests": { "md5": "99527138dd04a4ea2d17c8d9296b4841", "sha256": "aa0b4b8a859401391f00fd79034e6b7711d968326e962e014fc3169fae7955fa" }, "downloads": -1, "filename": "onecodex-0.4.2.tar.gz", "has_sig": false, "md5_digest": "99527138dd04a4ea2d17c8d9296b4841", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 120520, "upload_time": "2019-03-18T23:39:54", "url": "https://files.pythonhosted.org/packages/e3/5f/338c31066f5ff9145adc40c6e7bad1c61e2af1c7f6f19f9b1a10fb09cb79/onecodex-0.4.2.tar.gz" } ], "0.4.3": [ { "comment_text": "", "digests": { "md5": "0b6001f845a681e377f326ca9a72c880", "sha256": "af00a47810b0c9861aba5361ee15c5cf7f7c73c25baec07725a383b3be49151d" }, "downloads": -1, "filename": "onecodex-0.4.3.tar.gz", "has_sig": false, "md5_digest": "0b6001f845a681e377f326ca9a72c880", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 120695, "upload_time": "2019-03-25T17:15:03", "url": "https://files.pythonhosted.org/packages/19/13/577ee6148607a6ba5182169dbc5b93b40afc470a86a27c9c6c01dbe5ef84/onecodex-0.4.3.tar.gz" } ], "0.4.4": [ { "comment_text": "", "digests": { "md5": "8e8eccbb775326186512006e5a04c52f", "sha256": "ccfb7a07c168f2d3387b7b9295493611645d2e1903cc77bd80b90a4a90ebcdba" }, "downloads": -1, "filename": "onecodex-0.4.4.tar.gz", "has_sig": false, "md5_digest": "8e8eccbb775326186512006e5a04c52f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 120530, "upload_time": "2019-03-25T19:29:17", "url": "https://files.pythonhosted.org/packages/3d/38/db4d7a8cbbd891818bc6da3ba3b65746d763038ec29bfd168f5696aea018/onecodex-0.4.4.tar.gz" } ], "0.4.5": [ { "comment_text": "", "digests": { "md5": "23ec2dd65412e62499984b580381fc61", "sha256": "05e7dca406fb1c13d0393bb24f1a3822480b9fb39eba43067f04545fae9165a6" }, "downloads": -1, "filename": "onecodex-0.4.5.tar.gz", "has_sig": false, "md5_digest": "23ec2dd65412e62499984b580381fc61", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 120933, "upload_time": "2019-04-02T23:38:00", "url": "https://files.pythonhosted.org/packages/c0/05/1c8e3be543c28d8f5a79bfd332dcc80a95b083bd478fede3aa692fc5fb5c/onecodex-0.4.5.tar.gz" } ], "0.5.0": [ { "comment_text": "", "digests": { "md5": "845363182b3910c956d1c7df79a0e2a2", "sha256": "4006d2711469c3558ec22b9d134621959c3a25b8532273ffa00038b5bc15528a" }, "downloads": -1, "filename": "onecodex-0.5.0.tar.gz", "has_sig": false, "md5_digest": "845363182b3910c956d1c7df79a0e2a2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 123817, "upload_time": "2019-04-19T18:04:42", "url": "https://files.pythonhosted.org/packages/f8/98/b7480b33c672eb2f3c76644bcdf3103e6bd9dd9838c78b90adc2f6ef23f0/onecodex-0.5.0.tar.gz" } ], "0.5.1": [ { "comment_text": "", "digests": { "md5": "4fd332bc8493cd872b55c92de24155f9", "sha256": "70e1bae63bcae09ec999530d6004fef8656fc3fbcde38dd57125fbc4077037c9" }, "downloads": -1, "filename": "onecodex-0.5.1.tar.gz", "has_sig": false, "md5_digest": "4fd332bc8493cd872b55c92de24155f9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 123900, "upload_time": "2019-04-24T17:18:57", "url": "https://files.pythonhosted.org/packages/27/0f/00cd3191b24344b22e174a4ce6a83ff36724ee806f9a174b792894d22c0b/onecodex-0.5.1.tar.gz" } ], "0.5.2": [ { "comment_text": "", "digests": { "md5": "f7f096256738e176ade76463afa1f211", "sha256": "fa75f8feb4395053793e0f525ccc558baaa1d3daffc87528c4f305a942cb0c99" }, "downloads": -1, "filename": "onecodex-0.5.2.tar.gz", "has_sig": false, "md5_digest": "f7f096256738e176ade76463afa1f211", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 123951, "upload_time": "2019-04-30T00:33:21", "url": "https://files.pythonhosted.org/packages/b2/81/ba8a98fa23e6ff5b9bee3a3965c49b827b4d1bad121e526b578499a000ae/onecodex-0.5.2.tar.gz" } ], "0.5.3": [ { "comment_text": "", "digests": { "md5": "1d779abee6c18213a93599ddb66cd6e8", "sha256": "b53ecb319873fa85182400ea7a2bd5e85f1bdfdb780c4c2a8213c9808cd1d668" }, "downloads": -1, "filename": "onecodex-0.5.3.tar.gz", "has_sig": false, "md5_digest": "1d779abee6c18213a93599ddb66cd6e8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 123997, "upload_time": "2019-05-01T22:28:41", "url": "https://files.pythonhosted.org/packages/71/64/a908ab8fb4f39fe08d249f73d8dcfca710824aaa2c79058416a8f92a8554/onecodex-0.5.3.tar.gz" } ], "0.5.4": [ { "comment_text": "", "digests": { "md5": "b1f77ffe5de0424923aab19b859c37f7", "sha256": "30248f50936fd433ce7a47fc2238da6e28cbaca157faef3d69c11c3e852f1c7b" }, "downloads": -1, "filename": "onecodex-0.5.4.tar.gz", "has_sig": false, "md5_digest": "b1f77ffe5de0424923aab19b859c37f7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 124247, "upload_time": "2019-06-06T19:45:26", "url": "https://files.pythonhosted.org/packages/dd/75/60f85d3266a152ce513376faed28d4cd16861497f08080289ba85e0c75cf/onecodex-0.5.4.tar.gz" } ], "0.5.5": [ { "comment_text": "", "digests": { "md5": "16d9d4fde42bbe0d35a11f30d3f35217", "sha256": "7bcc207ef458656dd97b383e0e4fa3d2ae18872d627117ad9887d80637e78fca" }, "downloads": -1, "filename": "onecodex-0.5.5.tar.gz", "has_sig": false, "md5_digest": "16d9d4fde42bbe0d35a11f30d3f35217", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 125218, "upload_time": "2019-07-01T22:32:31", "url": "https://files.pythonhosted.org/packages/99/7d/b7e0644d4b3de635c38a8c9ef7907fc16e46133c0203d0d7fc9cff65dc7a/onecodex-0.5.5.tar.gz" } ], "0.5.6": [ { "comment_text": "", "digests": { "md5": "e0210d6882f539a18170052eb5b26e8f", "sha256": "596eb6cf4bd141fd582a0642367b81480524754716d1dbcfc7adc867cab3333e" }, "downloads": -1, "filename": "onecodex-0.5.6.tar.gz", "has_sig": false, "md5_digest": "e0210d6882f539a18170052eb5b26e8f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 125376, "upload_time": "2019-07-02T20:11:54", "url": "https://files.pythonhosted.org/packages/2a/07/28f7f541fc66fe7e38da719f6a3e46aec7d398762c2a6e952a2fba8ada37/onecodex-0.5.6.tar.gz" } ], "0.6.0": [ { "comment_text": "", "digests": { "md5": "28ba94efd37a180026f7f59dc90ab3a5", "sha256": "49a5254bf5e79a7a1e097e84c1271b74ba2a7344b8ef41f4553cf5616c60e19d" }, "downloads": -1, "filename": "onecodex-0.6.0.tar.gz", "has_sig": false, "md5_digest": "28ba94efd37a180026f7f59dc90ab3a5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 126687, "upload_time": "2019-07-19T22:18:23", "url": "https://files.pythonhosted.org/packages/df/d0/16758202d45deaee8e6874a217057e1db1fbf41740d2ed157807f8ae6bb8/onecodex-0.6.0.tar.gz" } ], "0.6.1": [ { "comment_text": "", "digests": { "md5": "1647b7ed964ce960f6032faafcc35b38", "sha256": "1e7b54eeaca2d9ddbebd0c4540d80324c95b9d6daf5a83da4b793722ff5bf184" }, "downloads": -1, "filename": "onecodex-0.6.1.tar.gz", "has_sig": false, "md5_digest": "1647b7ed964ce960f6032faafcc35b38", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 128038, "upload_time": "2019-07-26T02:26:54", "url": "https://files.pythonhosted.org/packages/f3/f0/a65f4cbdef19090b725d64a1c05d194f0689fd6bc411f85a277b65d69ae3/onecodex-0.6.1.tar.gz" } ], "0.6.2": [ { "comment_text": "", "digests": { "md5": "bf18d89d805f235e18003cb8be6987ac", "sha256": "33aeb2d6cb8b963f342165867835b6bdc5d97860224f3ae115499e2b0f4c891c" }, "downloads": -1, "filename": "onecodex-0.6.2.tar.gz", "has_sig": false, "md5_digest": "bf18d89d805f235e18003cb8be6987ac", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 127936, "upload_time": "2019-07-26T19:54:20", "url": "https://files.pythonhosted.org/packages/49/4d/d6bc8c5674185d32a8c929e8a63b44ac84d1cee2b266c6c534ae99b38955/onecodex-0.6.2.tar.gz" } ], "0.6.3": [ { "comment_text": "", "digests": { "md5": "fb05350149895b9fbef1f64e8dc4a951", "sha256": "611f0508a3f572f3fee868b38c8dafe6e5b4748f4408d2c4d5aecf0442a0b639" }, "downloads": -1, "filename": "onecodex-0.6.3.tar.gz", "has_sig": false, "md5_digest": "fb05350149895b9fbef1f64e8dc4a951", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 128886, "upload_time": "2019-08-12T22:41:42", "url": "https://files.pythonhosted.org/packages/5a/f4/20e83f139b1f0f493a81181374a22e3910acdbd830c684c19d5bc58e5c7c/onecodex-0.6.3.tar.gz" } ], "0.6.4": [ { "comment_text": "", "digests": { "md5": "38d7e06278a002c4858c042647e83e97", "sha256": "48fd50511d1836e450e53d3bed535d41acaaba806f2e9880c01c13852ef4711b" }, "downloads": -1, "filename": "onecodex-0.6.4.tar.gz", "has_sig": false, "md5_digest": "38d7e06278a002c4858c042647e83e97", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 130125, "upload_time": "2019-08-29T16:44:05", "url": "https://files.pythonhosted.org/packages/5b/6b/91d8a239f0310462f373a5b374570d69a0693f1364d348a2ffc072f7af93/onecodex-0.6.4.tar.gz" } ], "0.6.5": [ { "comment_text": "", "digests": { "md5": "d345ccaa6913beb6b30b91e205893c3b", "sha256": "a4c28fe4c2fd4caa66c4adacdea4c27ec50ded8f7f4d8fa6717728187cd4a9b0" }, "downloads": -1, "filename": "onecodex-0.6.5.tar.gz", "has_sig": false, "md5_digest": "d345ccaa6913beb6b30b91e205893c3b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 129877, "upload_time": "2019-08-29T22:17:49", "url": "https://files.pythonhosted.org/packages/c1/a3/c7322ede179290d6bcf05faaa8ec21a31a3d4063a9aebba3fd563bf80fc4/onecodex-0.6.5.tar.gz" } ], "0.7.0": [ { "comment_text": "", "digests": { "md5": "a3b33349603e9438976caf8289df11f4", "sha256": "7395499acb3b62505e001ce7ad31cafa5e665f12d7bf7bdab8d68e0e40fd6857" }, "downloads": -1, "filename": "onecodex-0.7.0.tar.gz", "has_sig": false, "md5_digest": "a3b33349603e9438976caf8289df11f4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 127509, "upload_time": "2019-10-04T23:24:17", "url": "https://files.pythonhosted.org/packages/f0/ca/37e17d697175c93b6669f6eb783e5a49978abfe64b8ef923b5fe0fb4309a/onecodex-0.7.0.tar.gz" } ], "0.7.1": [ { "comment_text": "", "digests": { "md5": "7560548af1f475a57b69bf25c46aa516", "sha256": "83a1b4d05376655ee7e03f55c5e8c0a118f4ccc8fe740676bc770175b8fe8cd4" }, "downloads": -1, "filename": "onecodex-0.7.1.tar.gz", "has_sig": false, "md5_digest": "7560548af1f475a57b69bf25c46aa516", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 127537, "upload_time": "2019-10-07T21:24:25", "url": "https://files.pythonhosted.org/packages/a2/8e/3d26edbef0aea6014df4e911713df25e32b742c3e3423b77fc845a54cf7c/onecodex-0.7.1.tar.gz" } ], "0.7.2": [ { "comment_text": "", "digests": { "md5": "a949db0cc1420e992e99c77510f90527", "sha256": "98106b3588dbab0b10ddc63b685481cfcc9e7df07b3cc080fd45c17fd911c1d6" }, "downloads": -1, "filename": "onecodex-0.7.2.tar.gz", "has_sig": false, "md5_digest": "a949db0cc1420e992e99c77510f90527", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 127549, "upload_time": "2019-10-15T04:41:20", "url": "https://files.pythonhosted.org/packages/99/58/2bb966c49d731cabfde0889d7de9d9bd3b9d64b700f9aa7a697e2a12eb83/onecodex-0.7.2.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "a949db0cc1420e992e99c77510f90527", "sha256": "98106b3588dbab0b10ddc63b685481cfcc9e7df07b3cc080fd45c17fd911c1d6" }, "downloads": -1, "filename": "onecodex-0.7.2.tar.gz", "has_sig": false, "md5_digest": "a949db0cc1420e992e99c77510f90527", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 127549, "upload_time": "2019-10-15T04:41:20", "url": "https://files.pythonhosted.org/packages/99/58/2bb966c49d731cabfde0889d7de9d9bd3b9d64b700f9aa7a697e2a12eb83/onecodex-0.7.2.tar.gz" } ] }