{ "info": { "author": "Common workflow language working group", "author_email": "common-workflow-language@googlegroups.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Environment :: Console", "Intended Audience :: Science/Research", "License :: OSI Approved :: Apache Software License", "Operating System :: MacOS :: MacOS X", "Operating System :: POSIX", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Typing :: Typed" ], "description": "|Linux Build Status| |Code coverage| |Documentation Status| |CII Best Practices|\n\n.. |Linux Build Status| image:: https://github.com/common-workflow-language/schema_salad/actions/workflows/ci-tests.yml/badge.svg?branch=main\n :target: https://github.com/common-workflow-language/schema_salad/actions/workflows/ci-tests.yml\n.. |Code coverage| image:: https://codecov.io/gh/common-workflow-language/schema_salad/branch/main/graph/badge.svg\n :target: https://codecov.io/gh/common-workflow-language/schema_salad\n.. |Documentation Status| image:: https://readthedocs.org/projects/schema-salad/badge/?version=latest\n :target: https://schema-salad.readthedocs.io/en/latest/?badge=latest\n :alt: Documentation Status\n.. |CII Best Practices| image:: https://bestpractices.coreinfrastructure.org/projects/1867/badge\n :target: https://bestpractices.coreinfrastructure.org/projects/1867\n\nSchema Salad\n------------\n\nSalad is a schema language for describing JSON or YAML structured\nlinked data documents. Salad schema describes rules for\npreprocessing, structural validation, and hyperlink checking for\ndocuments described by a Salad schema. Salad supports rich data\nmodeling with inheritance, template specialization, object\nidentifiers, object references, documentation generation, code\ngeneration, and transformation to RDF_. Salad provides a bridge\nbetween document and record oriented data modeling and the Semantic\nWeb.\n\nThe Schema Salad library is Python 3.7+ only.\n\nInstallation\n------------\n\n::\n\n pip3 install schema_salad\n\nIf you intend to use the `schema-salad-tool --codegen=python` feature, please\ninclude the `[pycodegen]` extra::\n\n pip3 install schema_salad[pycodegen]\n\nTo install from source::\n\n git clone https://github.com/common-workflow-language/schema_salad\n cd schema_salad\n pip3 install .\n # or pip3 install .[pycodegen] if needed\n\nCommands\n--------\n\nSchema salad can be used as a command line tool or imported as a Python module::\n\n $ schema-salad-tool\n usage: schema-salad-tool [-h] [--rdf-serializer RDF_SERIALIZER] [--skip-schemas]\n [--strict-foreign-properties] [--print-jsonld-context]\n [--print-rdfs] [--print-avro] [--print-rdf] [--print-pre]\n [--print-index] [--print-metadata] [--print-inheritance-dot]\n [--print-fieldrefs-dot] [--codegen language] [--codegen-target CODEGEN_TARGET]\n [--codegen-examples directory] [--codegen-package dotted.package]\n [--codegen-copyright copyright_string] [--print-oneline]\n [--print-doc] [--strict | --non-strict]\n [--verbose | --quiet | --debug] [--only ONLY] [--redirect REDIRECT]\n [--brand BRAND] [--brandlink BRANDLINK] [--brandstyle BRANDSTYLE]\n [--brandinverse] [--primtype PRIMTYPE] [--version]\n [schema] [document]\n\n $ python\n >>> import schema_salad\n\nValidate a schema::\n\n $ schema-salad-tool myschema.yml\n\nValidate a document using a schema::\n\n $ schema-salad-tool myschema.yml mydocument.yml\n\nGenerate HTML documentation::\n\n $ schema-salad-tool --print-doc myschema.yml > myschema.html\n $ # or\n $ schema-salad-doc myschema.yml > myschema.html\n\nGet JSON-LD context::\n\n $ schema-salad-tool --print-jsonld-context myschema.yml mydocument.yml\n\nConvert a document to JSON-LD::\n\n $ schema-salad-tool --print-pre myschema.yml mydocument.yml > mydocument.jsonld\n\nGenerate Python classes for loading/generating documents described by the schema\n(Requires the `[pycodegen]` extra)::\n\n $ schema-salad-tool --codegen=python myschema.yml > myschema.py\n\nDisplay inheritance relationship between classes as a graphviz 'dot' file and\nrender as SVG::\n\n $ schema-salad-tool --print-inheritance-dot myschema.yml | dot -Tsvg > myschema.svg\n\n\nQuick Start\n-----------\n\nLet's say you have a 'basket' record that can contain items measured either by\nweight or by count. Here's an example::\n\n basket:\n - product: bananas\n price: 0.39\n per: pound\n weight: 1\n - product: cucumbers\n price: 0.79\n per: item\n count: 3\n\nWe want to validate that all the expected fields are present, the\nmeasurement is known, and that \"count\" cannot be a fractional value.\nHere is an example schema to do that::\n\n - name: Product\n doc: |\n The base type for a product. This is an abstract type, so it\n can't be used directly, but can be used to define other types.\n type: record\n abstract: true\n fields:\n product: string\n price: float\n\n - name: ByWeight\n doc: |\n A product, sold by weight. Products may be sold by pound or by\n kilogram. Weights may be fractional.\n type: record\n extends: Product\n fields:\n per:\n type:\n type: enum\n symbols:\n - pound\n - kilogram\n jsonldPredicate: '#per'\n weight: float\n\n - name: ByCount\n doc: |\n A product, sold by count. The count must be a integer value.\n type: record\n extends: Product\n fields:\n per:\n type:\n type: enum\n symbols:\n - item\n jsonldPredicate: '#per'\n count: int\n\n - name: Basket\n doc: |\n A basket of products. The 'documentRoot' field indicates it is a\n valid starting point for a document. The 'basket' field will\n validate subtypes of 'Product' (ByWeight and ByCount).\n type: record\n documentRoot: true\n fields:\n basket:\n type:\n type: array\n items: Product\n\nYou can check the schema and document in schema_salad/tests/basket_schema.yml\nand schema_salad/tests/basket.yml::\n\n $ schema-salad-tool basket_schema.yml basket.yml\n Document `basket.yml` is valid\n\n\nDocumentation\n-------------\n\nSee the specification_ and the metaschema_ (salad schema for itself). For an\nexample application of Schema Salad see the Common Workflow Language_.\n\n\nRationale\n---------\n\nThe JSON data model is an popular way to represent structured data. It is\nattractive because of it's relative simplicity and is a natural fit with the\nstandard types of many programming languages. However, this simplicity comes\nat the cost that basic JSON lacks expressive features useful for working with\ncomplex data structures and document formats, such as schemas, object\nreferences, and namespaces.\n\nJSON-LD is a W3C standard providing a way to describe how to interpret a JSON\ndocument as Linked Data by means of a \"context\". JSON-LD provides a powerful\nsolution for representing object references and namespaces in JSON based on\nstandard web URIs, but is not itself a schema language. Without a schema\nproviding a well defined structure, it is difficult to process an arbitrary\nJSON-LD document as idiomatic JSON because there are many ways to express the\nsame data that are logically equivalent but structurally distinct.\n\nSeveral schema languages exist for describing and validating JSON data, such as\nJSON Schema and Apache Avro data serialization system, however none\nunderstand linked data. As a result, to fully take advantage of JSON-LD to\nbuild the next generation of linked data applications, one must maintain\nseparate JSON schema, JSON-LD context, RDF schema, and human documentation,\ndespite significant overlap of content and obvious need for these documents to\nstay synchronized.\n\nSchema Salad is designed to address this gap. It provides a schema language\nand processing rules for describing structured JSON content permitting URI\nresolution and strict document validation. The schema language supports linked\ndata through annotations that describe the linked data interpretation of the\ncontent, enables generation of JSON-LD context and RDF schema, and production\nof RDF triples by applying the JSON-LD context. The schema language also\nprovides for robust support of inline documentation.\n\n.. _JSON-LD: http://json-ld.org\n.. _Avro: http://avro.apache.org\n.. _metaschema: https://github.com/common-workflow-language/schema_salad/blob/main/schema_salad/metaschema/metaschema.yml\n.. _specification: http://www.commonwl.org/v1.0/SchemaSalad.html\n.. _Language: https://github.com/common-workflow-language/common-workflow-language/blob/main/v1.0/CommandLineTool.yml\n.. _RDF: https://www.w3.org/RDF/\n\n\n", "description_content_type": "text/x-rst", "docs_url": null, "download_url": "https://github.com/common-workflow-language/schema_salad/releases", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/common-workflow-language/schema_salad", "keywords": "", "license": "Apache 2.0", "maintainer": "", "maintainer_email": "", "name": "schema-salad", "package_url": "https://pypi.org/project/schema-salad/", "platform": "", "project_url": "https://pypi.org/project/schema-salad/", "project_urls": { "Download": "https://github.com/common-workflow-language/schema_salad/releases", "Homepage": "https://github.com/common-workflow-language/schema_salad" }, "release_url": "https://pypi.org/project/schema-salad/8.2.20220204150214/", "requires_dist": [ "setuptools", "requests (>=1.0)", "ruamel.yaml (!=0.16.6,<0.18,>=0.12.4)", "rdflib (<7.0.0,>=4.2.2)", "mistune (<0.9,>=0.8.1)", "CacheControl (<0.13,>=0.11.7)", "lockfile (>=0.9)", "sphinx (>=2.2) ; extra == 'docs'", "sphinx-rtd-theme ; extra == 'docs'", "pytest (<7) ; extra == 'docs'", "black ; extra == 'pycodegen'" ], "requires_python": ">=3.7", "summary": "Schema Annotations for Linked Avro Data (SALAD)", "version": "8.2.20220204150214", "yanked": false, "yanked_reason": null }, "last_serial": 12789195, "releases": { "1.0": [ { "comment_text": "", "digests": { "md5": "3226ae0c9e2868fdb82c8058482e0c48", "sha256": "5bd6e7813cb5c69c37b2f26a3189b148d0c614b5ec759d6da962caf0d8fffb7f" }, "downloads": -1, "filename": "schema_salad-1.0-py2.7.egg", "has_sig": false, "md5_digest": "3226ae0c9e2868fdb82c8058482e0c48", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 52950, "upload_time": "2015-09-15T12:34:37", "upload_time_iso_8601": "2015-09-15T12:34:37.463183Z", "url": "https://files.pythonhosted.org/packages/72/ba/42cc14c7a9f31f152d01fe455978e51f2e91a7aa466fcd2b031b8f96ebc3/schema_salad-1.0-py2.7.egg", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b50269381d566d3cbe1d779c1e3ec1de", "sha256": "c18f9d0880be7eedd6925a7a6561036c97fdd3eb1320f10065e5c2e895099472" }, "downloads": -1, "filename": "schema-salad-1.0.tar.gz", "has_sig": false, "md5_digest": "b50269381d566d3cbe1d779c1e3ec1de", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25087, "upload_time": "2015-09-15T12:34:41", "upload_time_iso_8601": "2015-09-15T12:34:41.031546Z", "url": "https://files.pythonhosted.org/packages/ae/f5/9cf844a3cda4ee654a0af1202cc484a7063cb80e19069115ae20bc1b64b7/schema-salad-1.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.1": [ { "comment_text": "", "digests": { "md5": "4b40411e8858e6417174f4beed6011a3", "sha256": "37347a5a527299cc89ce5956c107bba59cef5c6c6d48bfca32db774f8aac5d40" }, "downloads": -1, "filename": "schema_salad-1.0.1-py2.7.egg", "has_sig": false, "md5_digest": "4b40411e8858e6417174f4beed6011a3", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 53747, "upload_time": "2015-09-16T03:13:00", "upload_time_iso_8601": "2015-09-16T03:13:00.292476Z", "url": "https://files.pythonhosted.org/packages/0d/6b/fdb6e006747bdc6ddf0083d4fef19e96b0300291ef66a5e952b310090f9b/schema_salad-1.0.1-py2.7.egg", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7e943a828ca8735ba163aa702f7a745b", "sha256": "d443b711d15996ef0564fb374cdde345d790a800feaec4f60ddc12a69f8e6995" }, "downloads": -1, "filename": "schema-salad-1.0.1.tar.gz", "has_sig": false, "md5_digest": "7e943a828ca8735ba163aa702f7a745b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25260, "upload_time": "2015-09-16T03:13:12", "upload_time_iso_8601": "2015-09-16T03:13:12.385237Z", "url": "https://files.pythonhosted.org/packages/c6/15/e627a8e1f0c37c9cff7555ce9eebd2eef0d72f0b09b0e2b66e1a8b9b1acc/schema-salad-1.0.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.2": [ { "comment_text": "", "digests": { "md5": "cc0536ab7d39bbe29e6a98b289a2be67", "sha256": "6740f71c4309abe80df55ed12a587f423145759b15d920340b7a1c9c638c5d25" }, "downloads": -1, "filename": "schema-salad-1.0.2.tar.gz", "has_sig": false, "md5_digest": "cc0536ab7d39bbe29e6a98b289a2be67", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25327, "upload_time": "2015-09-16T04:01:18", "upload_time_iso_8601": "2015-09-16T04:01:18.822560Z", "url": "https://files.pythonhosted.org/packages/a6/25/29e8f25fc360ef96394325bc24917affbfa54fd466926348a0dc04f8e7e6/schema-salad-1.0.2.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.3": [ { "comment_text": "", "digests": { "md5": "b790952ecec93c4aab8cae7d49eb2295", "sha256": "f6879f51ff60675c400ebd9c087ab5bbe7d745d44a99771c11a625684dc423a1" }, "downloads": -1, "filename": "schema_salad-1.0.3-py2.7.egg", "has_sig": false, "md5_digest": "b790952ecec93c4aab8cae7d49eb2295", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 53933, "upload_time": "2015-09-18T05:25:17", "upload_time_iso_8601": "2015-09-18T05:25:17.915300Z", "url": "https://files.pythonhosted.org/packages/c0/f1/cfc20983847778d644b07541385c3e2c68af9efcc1e45f1fe7ca35fd29b7/schema_salad-1.0.3-py2.7.egg", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cc7848219243e9b93a31af271b762395", "sha256": "399268bbefd497087963aa7fdb1770fa817005895442715451fbc4f6dc1b7f1f" }, "downloads": -1, "filename": "schema-salad-1.0.3.tar.gz", "has_sig": false, "md5_digest": "cc7848219243e9b93a31af271b762395", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25330, "upload_time": "2015-09-18T05:25:22", "upload_time_iso_8601": "2015-09-18T05:25:22.272306Z", "url": "https://files.pythonhosted.org/packages/7f/3f/f8829a0f24422a2b0ae37a40178f8781b63bdcd5436916c27cc114d30825/schema-salad-1.0.3.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.4": [ { "comment_text": "", "digests": { "md5": "8ef7dfeef744d1792e89871bee3e69b5", "sha256": "afcb9381542922803ec56546a252f5b16b931f9154aa97acf886608529b19f92" }, "downloads": -1, "filename": "schema_salad-1.0.4-py2.7.egg", "has_sig": false, "md5_digest": "8ef7dfeef744d1792e89871bee3e69b5", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 54263, "upload_time": "2015-11-04T06:25:42", "upload_time_iso_8601": "2015-11-04T06:25:42.455926Z", "url": "https://files.pythonhosted.org/packages/80/fc/cb6da41fa82a5812c33312f9c0b223ff5a6c0ad539222535922f03b4ee8b/schema_salad-1.0.4-py2.7.egg", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f2d843698f236d0bf914ce28b0a0c911", "sha256": "54f876f8430259de2c9a1f05008c4688f6e234c69027ed3e95a5a7f6df3589c0" }, "downloads": -1, "filename": "schema-salad-1.0.4.tar.gz", "has_sig": false, "md5_digest": "f2d843698f236d0bf914ce28b0a0c911", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25388, "upload_time": "2015-09-29T17:03:09", "upload_time_iso_8601": "2015-09-29T17:03:09.941834Z", "url": "https://files.pythonhosted.org/packages/47/9e/8b84cb26eaea611533412221d65876355c409c6e0b716d6ffb1d70fa01b1/schema-salad-1.0.4.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.5": [ { "comment_text": "", "digests": { "md5": "f66234b5199f7cf9f371266b8ebf42de", "sha256": "7b45a26926dc371fdf9f0d6d8b1298c59279b1f487fe67a9d660419b3d939f39" }, "downloads": -1, "filename": "schema_salad-1.0.5-py2.7.egg", "has_sig": false, "md5_digest": "f66234b5199f7cf9f371266b8ebf42de", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 54264, "upload_time": "2015-11-04T06:26:26", "upload_time_iso_8601": "2015-11-04T06:26:26.505292Z", "url": "https://files.pythonhosted.org/packages/b9/96/842186b92884870a18cb29c90fe1f1714e157d949fc88437b3b71a595212/schema_salad-1.0.5-py2.7.egg", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8014f6d2a9e953a7ac1b62ed02f2003b", "sha256": "05065f95d696b97dd67a4a74bc81c6488885d424188be09b87a7711261b1401c" }, "downloads": -1, "filename": "schema-salad-1.0.5.tar.gz", "has_sig": false, "md5_digest": "8014f6d2a9e953a7ac1b62ed02f2003b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25464, "upload_time": "2015-11-04T06:26:36", "upload_time_iso_8601": "2015-11-04T06:26:36.299522Z", "url": "https://files.pythonhosted.org/packages/ad/a7/176a06b8c9834e30cce3fced4efeb9632f6a41fbf5c16c1e6f09b57e6bc9/schema-salad-1.0.5.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.6": [ { "comment_text": "", "digests": { "md5": "3a94c6a2d07a6a843a437d2261212217", "sha256": "1a21d1676b9c0a349911686a4719cf4da18aa6cc646b839666a1dfde6d85a181" }, "downloads": -1, "filename": "schema-salad-1.0.6.tar.gz", "has_sig": false, "md5_digest": "3a94c6a2d07a6a843a437d2261212217", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25521, "upload_time": "2015-11-24T04:07:08", "upload_time_iso_8601": "2015-11-24T04:07:08.490894Z", "url": "https://files.pythonhosted.org/packages/37/71/3c04228fbae24fff1305a2521dcdd441664f1eaa805b4ddd813f64cdce18/schema-salad-1.0.6.tar.gz", "yanked": false, "yanked_reason": null } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "846aa2efb3b8186dbb88308cddba22e2", "sha256": "c853fc82b0fa24938ac26179590f6cc237f4caecf8633739f2eb3a91e83893ac" }, "downloads": -1, "filename": "schema-salad-1.1.0.tar.gz", "has_sig": false, "md5_digest": "846aa2efb3b8186dbb88308cddba22e2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26841, "upload_time": "2015-12-09T15:51:33", "upload_time_iso_8601": "2015-12-09T15:51:33.219368Z", "url": "https://files.pythonhosted.org/packages/8a/4d/9682bfadc37ce7b1e4c2b1528e9aa961342ddd300b633336f24851cb6953/schema-salad-1.1.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.1.1": [ { "comment_text": "", "digests": { "md5": "d457c5b932477c069368f5852cdb787f", "sha256": "b4ae629e73a3cbce1db37c59e11e2ee88355cc9a64143b8d6ea83cbfd391dd9e" }, "downloads": -1, "filename": "schema-salad-1.1.1.tar.gz", "has_sig": false, "md5_digest": "d457c5b932477c069368f5852cdb787f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26862, "upload_time": "2015-12-10T15:39:10", "upload_time_iso_8601": "2015-12-10T15:39:10.444916Z", "url": "https://files.pythonhosted.org/packages/a0/c1/67d7c8c069d3e4a87d52989a7b959e78b1c6a55afd50e2211ff0f44542a2/schema-salad-1.1.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.10.20160505184637": [ { "comment_text": "", "digests": { "md5": "1109b002b41fa5846bd4f93e9d0d3c5e", "sha256": "4c337692f555cafdac3ac27ad6ef94bd392454a1fefd5b156300fb2f8d05a48f" }, "downloads": -1, "filename": "schema-salad-1.10.20160505184637.tar.gz", "has_sig": false, "md5_digest": "1109b002b41fa5846bd4f93e9d0d3c5e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 36241, "upload_time": "2016-05-05T18:46:53", "upload_time_iso_8601": "2016-05-05T18:46:53.134290Z", "url": "https://files.pythonhosted.org/packages/4f/cc/129afda5399464209f98de6bff2d31355a6d364c022ab37251ecc778e59a/schema-salad-1.10.20160505184637.tar.gz", "yanked": false, "yanked_reason": null } ], "1.10.20160505185111": [ { "comment_text": "", "digests": { "md5": "43b9c938aeb82ccfe2e463d30c3fb644", "sha256": "92a80244592e9d1165ad5caa144eb1ab257aeab506419309e728b5337ceb85a3" }, "downloads": -1, "filename": "schema-salad-1.10.20160505185111.tar.gz", "has_sig": false, "md5_digest": "43b9c938aeb82ccfe2e463d30c3fb644", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 36246, "upload_time": "2016-05-05T18:51:21", "upload_time_iso_8601": "2016-05-05T18:51:21.012418Z", "url": "https://files.pythonhosted.org/packages/c5/6f/fb6279075023696676f58a1c52c83b4dc135c7a1c9c3d10213ddaca9a5b2/schema-salad-1.10.20160505185111.tar.gz", "yanked": false, "yanked_reason": null } ], "1.11.20160506154702": [ { "comment_text": "", "digests": { "md5": "98a81956e9fd3997fce67cd8b6390323", "sha256": "db586b1210292a1a9f1e138122e6a6d85b0eb1bcafada7f637aa60fac78e5d34" }, "downloads": -1, "filename": "schema-salad-1.11.20160506154702.tar.gz", "has_sig": false, "md5_digest": "98a81956e9fd3997fce67cd8b6390323", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 36273, "upload_time": "2016-05-06T15:49:21", "upload_time_iso_8601": "2016-05-06T15:49:21.532630Z", "url": "https://files.pythonhosted.org/packages/c3/a3/da3f0a98bfbf086c272946ac325575b82906e1efbc54bc694bd7602a0dd1/schema-salad-1.11.20160506154702.tar.gz", "yanked": false, "yanked_reason": null } ], "1.11.20160524152859": [ { "comment_text": "", "digests": { "md5": "42fc4ef33d7faf160035fdb6028ce47d", "sha256": "e7d51465ebf01e5faff0eeb584d6d39324d7415b52f2fbdbc8e9c8f47b971eae" }, "downloads": -1, "filename": "schema_salad-1.11.20160524152859-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "42fc4ef33d7faf160035fdb6028ce47d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 43154, "upload_time": "2016-05-31T11:14:19", "upload_time_iso_8601": "2016-05-31T11:14:19.326861Z", "url": "https://files.pythonhosted.org/packages/d9/e5/1f27b1b07e3b71e0b34bfd0c977654d3270d8231f836462a2ed7f79ab78d/schema_salad-1.11.20160524152859-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d5a1ffbb566dcf50889c1d518af3f2ff", "sha256": "81627d0e04c4d3c9d4f6ed08528f2b6f428114d63620fda6474d4742832c374b" }, "downloads": -1, "filename": "schema-salad-1.11.20160524152859.tar.gz", "has_sig": false, "md5_digest": "d5a1ffbb566dcf50889c1d518af3f2ff", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 35201, "upload_time": "2016-05-31T11:20:26", "upload_time_iso_8601": "2016-05-31T11:20:26.177060Z", "url": "https://files.pythonhosted.org/packages/a8/ff/dbd22e6d0c6903260ae7c1522c45167d6f852d83a2585c17b4020a2c8e17/schema-salad-1.11.20160524152859.tar.gz", "yanked": false, "yanked_reason": null } ], "1.12.20160610092802": [ { "comment_text": "", "digests": { "md5": "179e994f83aac80d2fb32ee8cf2272b3", "sha256": "acaae19d94dd7030c752f3dfdc635ca32079bd07b9d2c23c2c68eb05847cc38c" }, "downloads": -1, "filename": "schema-salad-1.12.20160610092802.tar.gz", "has_sig": false, "md5_digest": "179e994f83aac80d2fb32ee8cf2272b3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 56389, "upload_time": "2016-06-10T09:33:59", "upload_time_iso_8601": "2016-06-10T09:33:59.729946Z", "url": "https://files.pythonhosted.org/packages/5e/6e/4bf00184ffebc8ff899f7356b3c6ea3d5551894da22bde17435b694a04e8/schema-salad-1.12.20160610092802.tar.gz", "yanked": false, "yanked_reason": null } ], "1.12.20160610104117": [ { "comment_text": "", "digests": { "md5": "5a7ee01038a6b5a72ab330cc18924dc3", "sha256": "50b4642fead6570b10c7aa1b81e2851ce82a0d1bc7c87a79abce8d5d89d2abea" }, "downloads": -1, "filename": "schema_salad-1.12.20160610104117-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "5a7ee01038a6b5a72ab330cc18924dc3", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 74133, "upload_time": "2016-06-15T14:21:08", "upload_time_iso_8601": "2016-06-15T14:21:08.761863Z", "url": "https://files.pythonhosted.org/packages/85/75/a3e8f6bbc3246357ddb979573ac8fe8934c83dc482c01eceb4008cd0f838/schema_salad-1.12.20160610104117-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "92635d8e1317aa161f4a35881076dc33", "sha256": "56b248f214f961200dcb0bcb0017fc6f009b90def54beb61cd0f9f01f041dc7b" }, "downloads": -1, "filename": "schema-salad-1.12.20160610104117.tar.gz", "has_sig": false, "md5_digest": "92635d8e1317aa161f4a35881076dc33", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 56403, "upload_time": "2016-06-10T11:01:24", "upload_time_iso_8601": "2016-06-10T11:01:24.859162Z", "url": "https://files.pythonhosted.org/packages/51/99/cae16cfd2e981702441011e572445e12fdd0f8f69070a8ee13d09109120b/schema-salad-1.12.20160610104117.tar.gz", "yanked": false, "yanked_reason": null } ], "1.13.20160630144631": [ { "comment_text": "", "digests": { "md5": "1d64eb136e8f566b22b2eed8270acfad", "sha256": "315f37497000a886860636c1dc65174743416367fc2fe5ef9ae72c84d4991f96" }, "downloads": -1, "filename": "schema_salad-1.13.20160630144631-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "1d64eb136e8f566b22b2eed8270acfad", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 45961, "upload_time": "2016-07-01T16:29:06", "upload_time_iso_8601": "2016-07-01T16:29:06.709964Z", "url": "https://files.pythonhosted.org/packages/cd/36/fda96f097b5b5318dca2b43bbaa3d02d4be646dfba467cbc1756ce4ec2de/schema_salad-1.13.20160630144631-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0ef9f42926fcd4a6c7fe4d387c389628", "sha256": "10c0e4da17c48688049dd1bfb900f881c468f5725f6901af2934f5c7611a7e87" }, "downloads": -1, "filename": "schema-salad-1.13.20160630144631.tar.gz", "has_sig": false, "md5_digest": "0ef9f42926fcd4a6c7fe4d387c389628", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 37609, "upload_time": "2016-07-01T16:29:10", "upload_time_iso_8601": "2016-07-01T16:29:10.893234Z", "url": "https://files.pythonhosted.org/packages/89/0c/db88d8dc3f0721f0545a09f6acaffe46991f3ea215d7694e83d559af253f/schema-salad-1.13.20160630144631.tar.gz", "yanked": false, "yanked_reason": null } ], "1.13.20160702001514": [ { "comment_text": "", "digests": { "md5": "84fed442bbdaba35430e0e8a5c12f06c", "sha256": "4cc650d2766cdda4bcd1ed55410766ee2616151de8c43746d36122a079e40f58" }, "downloads": -1, "filename": "schema_salad-1.13.20160702001514-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "84fed442bbdaba35430e0e8a5c12f06c", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 45976, "upload_time": "2016-07-06T19:40:01", "upload_time_iso_8601": "2016-07-06T19:40:01.333565Z", "url": "https://files.pythonhosted.org/packages/8c/ad/63882cfe93b7ba83f42f51eaea286b237922c1dd964e8e7fc4b5287310b7/schema_salad-1.13.20160702001514-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9938d515f96ebe04357b17ea1df88a55", "sha256": "06f4332cbc9bfa997b83573020b8a407db78b735ba79832264a46965604bfab7" }, "downloads": -1, "filename": "schema-salad-1.13.20160702001514.tar.gz", "has_sig": false, "md5_digest": "9938d515f96ebe04357b17ea1df88a55", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 37625, "upload_time": "2016-07-06T19:39:57", "upload_time_iso_8601": "2016-07-06T19:39:57.175892Z", "url": "https://files.pythonhosted.org/packages/26/a5/ebe8ec7a999198ec64e36588c4fdaad11f73990b11433b6a31fc6bc5f8c4/schema-salad-1.13.20160702001514.tar.gz", "yanked": false, "yanked_reason": null } ], "1.14.20160707164023": [ { "comment_text": "", "digests": { "md5": "37e86867718c85788ac6f4e64ae66a28", "sha256": "94f0e0dfb91d55af064847c00e1eb014f0226bf5fa117e4573424a457f46a42d" }, "downloads": -1, "filename": "schema_salad-1.14.20160707164023-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "37e86867718c85788ac6f4e64ae66a28", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 46592, "upload_time": "2016-07-07T16:41:06", "upload_time_iso_8601": "2016-07-07T16:41:06.286257Z", "url": "https://files.pythonhosted.org/packages/73/d8/b8ed807ef43e77f9778c40d179a1d0a2ba74c958ccafe0e8ca7c3cef1e5f/schema_salad-1.14.20160707164023-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1a939730b6f37ebe567ac4b9d7dee237", "sha256": "8e0d7d803a8f39344be9a3d2c48b6416911a61b090c41e78dd75286b2b21f96d" }, "downloads": -1, "filename": "schema-salad-1.14.20160707164023.tar.gz", "has_sig": false, "md5_digest": "1a939730b6f37ebe567ac4b9d7dee237", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 38246, "upload_time": "2016-07-07T16:41:01", "upload_time_iso_8601": "2016-07-07T16:41:01.501017Z", "url": "https://files.pythonhosted.org/packages/c2/9f/fb12f6c37537e50315a3a14cc39ee15be19c8a3cc29c52240e2f7cf6cf68/schema-salad-1.14.20160707164023.tar.gz", "yanked": false, "yanked_reason": null } ], "1.14.20160708181155": [ { "comment_text": "", "digests": { "md5": "310cdc475f78fa044e0e2614c33770ed", "sha256": "59ba2f9efa10d310e67ae5d692dec7e35ae73d86c0ce88d7f00038de74caa523" }, "downloads": -1, "filename": "schema_salad-1.14.20160708181155-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "310cdc475f78fa044e0e2614c33770ed", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 46577, "upload_time": "2016-07-08T18:12:37", "upload_time_iso_8601": "2016-07-08T18:12:37.984429Z", "url": "https://files.pythonhosted.org/packages/c6/b1/18d975d2ec14690d0317685e03cc1eb054b0238838f09ca389cf76a0c1e6/schema_salad-1.14.20160708181155-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a8a320bd213164db31377957d6404b19", "sha256": "b408b22b9fbd58b76333696806de78d3cc2b028a0f1858f00d1204e4c6d98644" }, "downloads": -1, "filename": "schema-salad-1.14.20160708181155.tar.gz", "has_sig": false, "md5_digest": "a8a320bd213164db31377957d6404b19", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 37455, "upload_time": "2016-07-08T18:12:33", "upload_time_iso_8601": "2016-07-08T18:12:33.976228Z", "url": "https://files.pythonhosted.org/packages/57/01/14d5e22dbc71da0b7efd80f115e14e4a2d59710b85b4164719af6faf3da7/schema-salad-1.14.20160708181155.tar.gz", "yanked": false, "yanked_reason": null } ], "1.15.20160810152809": [ { "comment_text": "", "digests": { "md5": "c272b9a507c9aa1b86c08c17cd45adfd", "sha256": "24e8d75f5d87f600f16cf52f922778eb6e43c74eeea85d6cf77caa3ef37eb963" }, "downloads": -1, "filename": "schema-salad-1.15.20160810152809.tar.gz", "has_sig": false, "md5_digest": "c272b9a507c9aa1b86c08c17cd45adfd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 39083, "upload_time": "2016-08-10T19:26:14", "upload_time_iso_8601": "2016-08-10T19:26:14.896836Z", "url": "https://files.pythonhosted.org/packages/97/56/2796fb8ffca7602de870b5d4f3d050db22396f54694c7f6c5ad6b2af8081/schema-salad-1.15.20160810152809.tar.gz", "yanked": false, "yanked_reason": null } ], "1.16.20160810195039": [ { "comment_text": "", "digests": { "md5": "f7138586a2416b4e381816a67d8d6ebd", "sha256": "594553642b6a36e7f926a19874f803d51607612bc24821fe628447ee084fdc05" }, "downloads": -1, "filename": "schema-salad-1.16.20160810195039.tar.gz", "has_sig": false, "md5_digest": "f7138586a2416b4e381816a67d8d6ebd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 270681, "upload_time": "2016-08-10T19:51:35", "upload_time_iso_8601": "2016-08-10T19:51:35.398117Z", "url": "https://files.pythonhosted.org/packages/1d/00/da2b33449dcf29414271416c5c8bcb55cf792fa50f88390ff621fc6aaa23/schema-salad-1.16.20160810195039.tar.gz", "yanked": false, "yanked_reason": null } ], "1.16.20160819133325": [ { "comment_text": "", "digests": { "md5": "305412b8b2fa80b7907d04dfa752d309", "sha256": "d8d1d730f9816932b855af9a45588f3d2e0f6113601bc57d9c7633c3f82bb0aa" }, "downloads": -1, "filename": "schema_salad-1.16.20160819133325-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "305412b8b2fa80b7907d04dfa752d309", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 284817, "upload_time": "2016-08-19T13:46:53", "upload_time_iso_8601": "2016-08-19T13:46:53.839521Z", "url": "https://files.pythonhosted.org/packages/98/f8/c4316791980e85f9af2dd6b580b9b6b4c3aeab23f01a9711a0bf4acd4c10/schema_salad-1.16.20160819133325-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6a63511abb86cdb3f74cbc34f1e05b12", "sha256": "0cdef8a75b61fd6890e8ae11fb035fe3de3b208079376c53263e0c6b888f4150" }, "downloads": -1, "filename": "schema-salad-1.16.20160819133325.tar.gz", "has_sig": false, "md5_digest": "6a63511abb86cdb3f74cbc34f1e05b12", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 268801, "upload_time": "2016-08-19T13:46:36", "upload_time_iso_8601": "2016-08-19T13:46:36.822278Z", "url": "https://files.pythonhosted.org/packages/0d/5a/51d93a310c97d172149b76bf723ca11121dd8cc0d63df1fe578001ef1f61/schema-salad-1.16.20160819133325.tar.gz", "yanked": false, "yanked_reason": null } ], "1.17.20160820165726": [ { "comment_text": "", "digests": { "md5": "534c27bd45cdac0009c231ed1b4e218d", "sha256": "b1a6cd08b9bac4bf0451f0885fa820bb71bc92b4d6b7f31c7be2f0c130436cc5" }, "downloads": -1, "filename": "schema-salad-1.17.20160820165726.tar.gz", "has_sig": false, "md5_digest": "534c27bd45cdac0009c231ed1b4e218d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 269919, "upload_time": "2016-08-20T16:59:34", "upload_time_iso_8601": "2016-08-20T16:59:34.512448Z", "url": "https://files.pythonhosted.org/packages/24/ed/fb78a1d91e4b2f4159b52466540258a7e19195f08b81c28ec728747ed972/schema-salad-1.17.20160820165726.tar.gz", "yanked": false, "yanked_reason": null } ], "1.17.20160820171034": [ { "comment_text": "", "digests": { "md5": "eb1577cde4517bd0f9fb6f2ca4297ffc", "sha256": "c50fa0fbd62dea6ece316366942e94222849442f791560b64deb013cfe7c4aab" }, "downloads": -1, "filename": "schema-salad-1.17.20160820171034.tar.gz", "has_sig": false, "md5_digest": "eb1577cde4517bd0f9fb6f2ca4297ffc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 269924, "upload_time": "2016-08-20T17:13:24", "upload_time_iso_8601": "2016-08-20T17:13:24.797193Z", "url": "https://files.pythonhosted.org/packages/50/67/296a0ae733f2bfa65b4c88c835b124e860b7542885c2c88539db2ad45e2f/schema-salad-1.17.20160820171034.tar.gz", "yanked": false, "yanked_reason": null } ], "1.18.20160907135919": [ { "comment_text": "", "digests": { "md5": "c9b2114ed5c0034061fba2f40a5e6593", "sha256": "67550518a6919404383e9bf6c7d449804442d36b38d7d0c7955fdfb06b809ed1" }, "downloads": -1, "filename": "schema-salad-1.18.20160907135919.tar.gz", "has_sig": false, "md5_digest": "c9b2114ed5c0034061fba2f40a5e6593", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 269980, "upload_time": "2016-09-07T14:00:01", "upload_time_iso_8601": "2016-09-07T14:00:01.163847Z", "url": "https://files.pythonhosted.org/packages/22/5b/798667bcf7728612cb0cf9d0d3f71c4f8509efef60e61434b93cbefd6696/schema-salad-1.18.20160907135919.tar.gz", "yanked": false, "yanked_reason": null } ], "1.18.20160930145650": [ { "comment_text": "", "digests": { "md5": "1858772403ee46beed87a9622502d3d4", "sha256": "7282efbd6f16d645dc965c3929122da28f17c00015606d4335d88a832b2b17b1" }, "downloads": -1, "filename": "schema-salad-1.18.20160930145650.tar.gz", "has_sig": false, "md5_digest": "1858772403ee46beed87a9622502d3d4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 270529, "upload_time": "2016-09-30T14:57:14", "upload_time_iso_8601": "2016-09-30T14:57:14.031840Z", "url": "https://files.pythonhosted.org/packages/fc/d2/4393847450149ebe4d345b43c6d2965be35b03ba64676683c7c0135dc1c4/schema-salad-1.18.20160930145650.tar.gz", "yanked": false, "yanked_reason": null } ], "1.18.20161005190847": [ { "comment_text": "", "digests": { "md5": "27d168725fa4ed6286c25f6000606985", "sha256": "748b89880bc904a43af785535906c68f7d705c5b4fdec2d907c6b04c93d4a1b4" }, "downloads": -1, "filename": "schema-salad-1.18.20161005190847.tar.gz", "has_sig": false, "md5_digest": "27d168725fa4ed6286c25f6000606985", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 270540, "upload_time": "2016-10-05T19:36:48", "upload_time_iso_8601": "2016-10-05T19:36:48.616074Z", "url": "https://files.pythonhosted.org/packages/cc/18/e405672e434715965cb1adf381f3d70fc3685c6bf2f6f9d3b1b8727b5607/schema-salad-1.18.20161005190847.tar.gz", "yanked": false, "yanked_reason": null } ], "1.2.20151210153655": [ { "comment_text": "", "digests": { "md5": "89c8d15af284681ddcd1cc17f786605c", "sha256": "29b2ceee40f8f311ed8a760c12d5f7cbfa10cc7d7dc1bb9722103598058de8f9" }, "downloads": -1, "filename": "schema-salad-1.2.20151210153655.tar.gz", "has_sig": false, "md5_digest": "89c8d15af284681ddcd1cc17f786605c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26930, "upload_time": "2015-12-11T15:42:35", "upload_time_iso_8601": "2015-12-11T15:42:35.330293Z", "url": "https://files.pythonhosted.org/packages/4f/ef/960d633fe7a08e2ce28493c09c7ffcc48de6b19f0646ac827161cfc3d307/schema-salad-1.2.20151210153655.tar.gz", "yanked": false, "yanked_reason": null } ], "1.20.20161122192122": [ { "comment_text": "", "digests": { "md5": "48cc9562d73003509a15fef104fbe07c", "sha256": "f7e14c0c27c86faae9484597648f3c5ddd8a0a7a77f717fd935c2e119a6aafef" }, "downloads": -1, "filename": "schema-salad-1.20.20161122192122.tar.gz", "has_sig": false, "md5_digest": "48cc9562d73003509a15fef104fbe07c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 271157, "upload_time": "2016-11-22T19:23:59", "upload_time_iso_8601": "2016-11-22T19:23:59.263613Z", "url": "https://files.pythonhosted.org/packages/e7/ff/31b3d7ffb25ae9ccb3c4463be820f85e9ca1b315c50840a7061c6bed5992/schema-salad-1.20.20161122192122.tar.gz", "yanked": false, "yanked_reason": null } ], "1.21.20161202201331": [ { "comment_text": "", "digests": { "md5": "22564b1992a66df34e1f296372998a3b", "sha256": "82c578f29f75ac82b70e4bb2043265c500047786dd67ec77480f16bfdc2a47e6" }, "downloads": -1, "filename": "schema-salad-1.21.20161202201331.tar.gz", "has_sig": false, "md5_digest": "22564b1992a66df34e1f296372998a3b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 271275, "upload_time": "2016-12-02T20:15:14", "upload_time_iso_8601": "2016-12-02T20:15:14.187638Z", "url": "https://files.pythonhosted.org/packages/6b/be/035599a72add10b24b2cdc17a49622512d85d9ce80ff80467a4d08ca1231/schema-salad-1.21.20161202201331.tar.gz", "yanked": false, "yanked_reason": null } ], "1.21.20161206181442": [ { "comment_text": "", "digests": { "md5": "f243e6a217856eb3fb215adcd5d1090f", "sha256": "5a6dd757588d094195452faf7f2fba3054f22fc6222f2a9b8f9e9a43ae96f79b" }, "downloads": -1, "filename": "schema-salad-1.21.20161206181442.tar.gz", "has_sig": false, "md5_digest": "f243e6a217856eb3fb215adcd5d1090f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 271292, "upload_time": "2016-12-06T18:22:29", "upload_time_iso_8601": "2016-12-06T18:22:29.219516Z", "url": "https://files.pythonhosted.org/packages/a0/7b/d536cf6816d858c5826ee95945a595c54033538f0c4b28abbd4b8147bd6c/schema-salad-1.21.20161206181442.tar.gz", "yanked": false, "yanked_reason": null } ], "1.21.20161206204028": [ { "comment_text": "", "digests": { "md5": "41a085e4f2a1ce62d1b402bd77838af2", "sha256": "3247869652fb0863136d21725db9a1ea816663e27abd010fee0b3ed8f4bffab9" }, "downloads": -1, "filename": "schema-salad-1.21.20161206204028.tar.gz", "has_sig": false, "md5_digest": "41a085e4f2a1ce62d1b402bd77838af2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 271340, "upload_time": "2016-12-06T20:41:52", "upload_time_iso_8601": "2016-12-06T20:41:52.434402Z", "url": "https://files.pythonhosted.org/packages/b9/7d/06faefb0e1231bc534920aed3c8df105cf0e116f296432ba1f783d0ed217/schema-salad-1.21.20161206204028.tar.gz", "yanked": false, "yanked_reason": null } ], "1.21.20161215163938": [ { "comment_text": "", "digests": { "md5": "d3ec19d11e13df30c1ff0bd9a654a435", "sha256": "cdc0b6707c68b94905035b157f1811cbe5b0aabbbf4bb96dcffc9ebbf9686c75" }, "downloads": -1, "filename": "schema-salad-1.21.20161215163938.tar.gz", "has_sig": false, "md5_digest": "d3ec19d11e13df30c1ff0bd9a654a435", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 271365, "upload_time": "2016-12-15T16:40:15", "upload_time_iso_8601": "2016-12-15T16:40:15.190092Z", "url": "https://files.pythonhosted.org/packages/04/e9/d8fb57198145bc4b85feb2aaa0e464bbf2712e4d3d9fc2cadb93178ad150/schema-salad-1.21.20161215163938.tar.gz", "yanked": false, "yanked_reason": null } ], "1.3.20160108151816": [ { "comment_text": "", "digests": { "md5": "cbd56ed26d123b4ddebfd58a32a3c619", "sha256": "ff9b4deed439600bdb7828443a22b01c4830538d6165a9057036d99f06967b1c" }, "downloads": -1, "filename": "schema-salad-1.3.20160108151816.tar.gz", "has_sig": false, "md5_digest": "cbd56ed26d123b4ddebfd58a32a3c619", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28090, "upload_time": "2016-01-08T15:24:28", "upload_time_iso_8601": "2016-01-08T15:24:28.974344Z", "url": "https://files.pythonhosted.org/packages/e7/e9/37f7bbcfd61d6f8534d2769a3a37925287f9d4e67405ff4752ef3dcdb59b/schema-salad-1.3.20160108151816.tar.gz", "yanked": false, "yanked_reason": null } ], "1.4.20160108152457": [ { "comment_text": "", "digests": { "md5": "7bf74e645b92a83b30b9e2976d82ee16", "sha256": "841974dea657036c3167307686f41de00b97c8669a253c71e62cfedb99da38b5" }, "downloads": -1, "filename": "schema-salad-1.4.20160108152457.tar.gz", "has_sig": false, "md5_digest": "7bf74e645b92a83b30b9e2976d82ee16", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28089, "upload_time": "2016-01-08T15:25:10", "upload_time_iso_8601": "2016-01-08T15:25:10.722462Z", "url": "https://files.pythonhosted.org/packages/96/d8/82965ed7608eccb02d9eb66619ee8fe4338b5b42615f9b5fbdaa986f4431/schema-salad-1.4.20160108152457.tar.gz", "yanked": false, "yanked_reason": null } ], "1.4.20160108200836": [ { "comment_text": "", "digests": { "md5": "cadff9fa0c4ff167f96d8f444eb8a894", "sha256": "3c62886d81eaa11e57ffab275500123b55c9f1ac3860ee8139ca95b8de68fd45" }, "downloads": -1, "filename": "schema-salad-1.4.20160108200836.tar.gz", "has_sig": false, "md5_digest": "cadff9fa0c4ff167f96d8f444eb8a894", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28040, "upload_time": "2016-01-08T20:09:19", "upload_time_iso_8601": "2016-01-08T20:09:19.624877Z", "url": "https://files.pythonhosted.org/packages/03/71/6b88afb6d6d6663b12201f581c6b790908d0fbad89ac57bf0e2817a899fa/schema-salad-1.4.20160108200836.tar.gz", "yanked": false, "yanked_reason": null } ], "1.5.20160126150511": [ { "comment_text": "", "digests": { "md5": "49c85da787c835a0f08f10547cdc0857", "sha256": "68d45d7aeb6440744027837c609a2cee8ddda7faef0887d2bee7b6138fd692fa" }, "downloads": -1, "filename": "schema-salad-1.5.20160126150511.tar.gz", "has_sig": false, "md5_digest": "49c85da787c835a0f08f10547cdc0857", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 29261, "upload_time": "2016-01-26T15:05:43", "upload_time_iso_8601": "2016-01-26T15:05:43.585558Z", "url": "https://files.pythonhosted.org/packages/a3/a9/fa012e821ca7a49e79cd240056afe6be262f0bbd5ec70d4c32bb2d0cd273/schema-salad-1.5.20160126150511.tar.gz", "yanked": false, "yanked_reason": null } ], "1.5.20160126190004": [ { "comment_text": "", "digests": { "md5": "f879f6183bc90fca42066db8088c36e3", "sha256": "9b48d2ac63966bd7fbe04787fc534a7b73d15bdcb530db4c176ffb9778913f8b" }, "downloads": -1, "filename": "schema-salad-1.5.20160126190004.tar.gz", "has_sig": false, "md5_digest": "f879f6183bc90fca42066db8088c36e3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 29287, "upload_time": "2016-01-26T21:17:09", "upload_time_iso_8601": "2016-01-26T21:17:09.389229Z", "url": "https://files.pythonhosted.org/packages/6d/c9/4304b3601f6de049cbffda78340751ebaa2a07fa5d9cea2ca23ccbbc0d16/schema-salad-1.5.20160126190004.tar.gz", "yanked": false, "yanked_reason": null } ], "1.5.20160126213649": [ { "comment_text": "", "digests": { "md5": "5846b3896d99696f0423a638f09defa6", "sha256": "611fd46c283a6768e0fe9c463f434176042420cf6041e102aa79b6c4c1369b3b" }, "downloads": -1, "filename": "schema-salad-1.5.20160126213649.tar.gz", "has_sig": false, "md5_digest": "5846b3896d99696f0423a638f09defa6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 29087, "upload_time": "2016-01-27T14:42:58", "upload_time_iso_8601": "2016-01-27T14:42:58.062938Z", "url": "https://files.pythonhosted.org/packages/0a/8f/bf8c003918f321c4334b6e5a60455b774d39dd7fdde99a93bef1f7215fa8/schema-salad-1.5.20160126213649.tar.gz", "yanked": false, "yanked_reason": null } ], "1.6.20160202222448": [ { "comment_text": "", "digests": { "md5": "4ef3fcb28541edd3c30bd134d29cb14d", "sha256": "b9797865a2db9b87e0d8d1115bd2dbf60b9bd8844db50b67b42d65944fc7a59e" }, "downloads": -1, "filename": "schema-salad-1.6.20160202222448.tar.gz", "has_sig": false, "md5_digest": "4ef3fcb28541edd3c30bd134d29cb14d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 29682, "upload_time": "2016-02-03T02:51:15", "upload_time_iso_8601": "2016-02-03T02:51:15.961269Z", "url": "https://files.pythonhosted.org/packages/63/45/89f3827c5197123458c1250638b69c1b702ba8361a5f08d32a6182e0399d/schema-salad-1.6.20160202222448.tar.gz", "yanked": false, "yanked_reason": null } ], "1.7": [ { "comment_text": "", "digests": { "md5": "3138de77e256cf2ff63280d2e20ce922", "sha256": "bcdb37178a846921b33cdc58e56805058d02de190f134e3996fb9de8dedf30a4" }, "downloads": -1, "filename": "schema_salad-1.7-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "3138de77e256cf2ff63280d2e20ce922", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 41192, "upload_time": "2016-03-07T15:52:40", "upload_time_iso_8601": "2016-03-07T15:52:40.195362Z", "url": "https://files.pythonhosted.org/packages/aa/12/ec8bbcb9ea59316c9bf0ca2b953794387998aa644468b5d686e456b2ff73/schema_salad-1.7-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "19883cdfa53705d5f3a2afa8c3ee864d", "sha256": "caa452d6fb138296f9afb082a405648f59931ef09291bc6c8ce1491115b59b45" }, "downloads": -1, "filename": "schema-salad-1.7.tar.gz", "has_sig": false, "md5_digest": "19883cdfa53705d5f3a2afa8c3ee864d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 29906, "upload_time": "2016-03-07T15:52:12", "upload_time_iso_8601": "2016-03-07T15:52:12.071540Z", "url": "https://files.pythonhosted.org/packages/0d/0a/8263f6f22629ff5a8caa1c56be66de6fca3005756f63159f6151c54b2e31/schema-salad-1.7.tar.gz", "yanked": false, "yanked_reason": null } ], "1.7.20160315232142": [ { "comment_text": "", "digests": { "md5": "d615a1cccd56d5bdee0f3e0e36455d85", "sha256": "a593b28eefbd8612ae918789d308aef73b68531544ea0d0d1abe6f31f4984442" }, "downloads": -1, "filename": "schema-salad-1.7.20160315232142.tar.gz", "has_sig": false, "md5_digest": "d615a1cccd56d5bdee0f3e0e36455d85", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 30675, "upload_time": "2016-03-15T23:24:39", "upload_time_iso_8601": "2016-03-15T23:24:39.222455Z", "url": "https://files.pythonhosted.org/packages/8e/0f/75a8e9b1181580c6fd866b8a618c7e707b7e16b9df43230a4ce44f78894d/schema-salad-1.7.20160315232142.tar.gz", "yanked": false, "yanked_reason": null } ], "1.7.20160316145902": [ { "comment_text": "", "digests": { "md5": "e5865da5dc1e27a8210b28f2f27f0e2a", "sha256": "4c8a30a6ec5d7308da2d731673f18f9342356704f3c59bdc5632b3fd9f5c58ab" }, "downloads": -1, "filename": "schema-salad-1.7.20160316145902.tar.gz", "has_sig": false, "md5_digest": "e5865da5dc1e27a8210b28f2f27f0e2a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 34309, "upload_time": "2016-03-16T14:59:21", "upload_time_iso_8601": "2016-03-16T14:59:21.667595Z", "url": "https://files.pythonhosted.org/packages/13/58/474f4226156e141d8a24702b6264e00e615b5d38fe88f75fe5c9bc462d18/schema-salad-1.7.20160316145902.tar.gz", "yanked": false, "yanked_reason": null } ], "1.7.20160316150109": [ { "comment_text": "", "digests": { "md5": "d476a98c37a17700d3495d23e8418e9f", "sha256": "494556b0bd081a5de9b3ec3b9a39e088542ccdec80be3992eaca3512c1519209" }, "downloads": -1, "filename": "schema-salad-1.7.20160316150109.tar.gz", "has_sig": false, "md5_digest": "d476a98c37a17700d3495d23e8418e9f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 34303, "upload_time": "2016-03-16T15:01:34", "upload_time_iso_8601": "2016-03-16T15:01:34.824776Z", "url": "https://files.pythonhosted.org/packages/e2/fc/0edda97cde62ac89f2d7d2f59038bba7782c27544feb6f90ad1dc4a2d2d9/schema-salad-1.7.20160316150109.tar.gz", "yanked": false, "yanked_reason": null } ], "1.7.20160316203940": [ { "comment_text": "", "digests": { "md5": "4b50e8201b3dc6ae9b80501ef570292b", "sha256": "8265ee9761f7959f11a2da5b354d8b697317739b44876a15a2dd3e6df54568ab" }, "downloads": -1, "filename": "schema-salad-1.7.20160316203940.tar.gz", "has_sig": false, "md5_digest": "4b50e8201b3dc6ae9b80501ef570292b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 34262, "upload_time": "2016-03-16T20:40:09", "upload_time_iso_8601": "2016-03-16T20:40:09.398092Z", "url": "https://files.pythonhosted.org/packages/c9/fb/23116564d40972cf7732d44c99b67698fb9f50156e7a2513673b0b4c529b/schema-salad-1.7.20160316203940.tar.gz", "yanked": false, "yanked_reason": null } ], "1.9.20160421133216": [ { "comment_text": "", "digests": { "md5": "9a99c2b87ee7b777661199a8f1d2b84a", "sha256": "bd77da6eb572f30c13a937a6eace9b03018f2764814b5c557404a4132c4b1ab7" }, "downloads": -1, "filename": "schema-salad-1.9.20160421133216.tar.gz", "has_sig": false, "md5_digest": "9a99c2b87ee7b777661199a8f1d2b84a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 34771, "upload_time": "2016-04-21T13:32:42", "upload_time_iso_8601": "2016-04-21T13:32:42.014517Z", "url": "https://files.pythonhosted.org/packages/38/69/b616cb557e39988b21ec8956344d079004b2a1d395094c669d87cae7e05d/schema-salad-1.9.20160421133216.tar.gz", "yanked": false, "yanked_reason": null } ], "2.0.20161122040508": [ { "comment_text": "", "digests": { "md5": "cc210f4af55e5edc1402df10b35d7856", "sha256": "d3012163f3908bc12a5da66f493217aa02eb55f0ecced731c8cc835215ec6663" }, "downloads": -1, "filename": "schema-salad-2.0.20161122040508.tar.gz", "has_sig": false, "md5_digest": "cc210f4af55e5edc1402df10b35d7856", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 274301, "upload_time": "2016-11-22T04:06:13", "upload_time_iso_8601": "2016-11-22T04:06:13.833266Z", "url": "https://files.pythonhosted.org/packages/ed/68/bdb347a62025030586c8da20763a3083087b13a22d2df9056e51a886472b/schema-salad-2.0.20161122040508.tar.gz", "yanked": false, "yanked_reason": null } ], "2.1.20161216210732": [ { "comment_text": "", "digests": { "md5": "ac3a976941249db27c77dc95b48ad623", "sha256": "4711fa78a285f901de1874b13dc90823fb7ec3aa496e79294e3ed888835b2384" }, "downloads": -1, "filename": "schema-salad-2.1.20161216210732.tar.gz", "has_sig": false, "md5_digest": "ac3a976941249db27c77dc95b48ad623", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 274822, "upload_time": "2016-12-16T21:07:55", "upload_time_iso_8601": "2016-12-16T21:07:55.494870Z", "url": "https://files.pythonhosted.org/packages/87/a2/f8840ff3c0bc5d435f84e0cc8884d2c2ca2129db6c5a0876c61c220d2ec6/schema-salad-2.1.20161216210732.tar.gz", "yanked": false, "yanked_reason": null } ], "2.1.20161221160224": [ { "comment_text": "", "digests": { "md5": "0f6ec273aee9f0c87efdb7f543243148", "sha256": "acb0fe01a8affa28d9057ca59c1fc0a5a04981614707c18a1f0a20e8ef17b686" }, "downloads": -1, "filename": "schema-salad-2.1.20161221160224.tar.gz", "has_sig": false, "md5_digest": "0f6ec273aee9f0c87efdb7f543243148", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 273266, "upload_time": "2016-12-21T16:53:04", "upload_time_iso_8601": "2016-12-21T16:53:04.974455Z", "url": "https://files.pythonhosted.org/packages/c7/dc/bf6aeae219bca19383c989ea5568bb1c0922994618bdca14cf41b0454f55/schema-salad-2.1.20161221160224.tar.gz", "yanked": false, "yanked_reason": null } ], "2.1.20161223160831": [ { "comment_text": "", "digests": { "md5": "6b5b863717f590c93b7e6c0b22d06ca3", "sha256": "6ebc458846ebbfc1c1e9489fad2a1e2a6c36cb8cb0930d8ca3dd1f4bcfcd9932" }, "downloads": -1, "filename": "schema-salad-2.1.20161223160831.tar.gz", "has_sig": false, "md5_digest": "6b5b863717f590c93b7e6c0b22d06ca3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 274889, "upload_time": "2016-12-23T16:11:53", "upload_time_iso_8601": "2016-12-23T16:11:53.581366Z", "url": "https://files.pythonhosted.org/packages/e3/35/e2ec05f3e324f44f20ba9c4fb323f4dabcf2bfaea9575716dd7b1b1aca3b/schema-salad-2.1.20161223160831.tar.gz", "yanked": false, "yanked_reason": null } ], "2.1.20161227191302": [ { "comment_text": "", "digests": { "md5": "87f7423940699d51d7be4fc8a8112e95", "sha256": "0efa5b15e57a03f5d1a12d1df3d81fff30874a4aed9d21a97ff5606310f944bb" }, "downloads": -1, "filename": "schema-salad-2.1.20161227191302.tar.gz", "has_sig": false, "md5_digest": "87f7423940699d51d7be4fc8a8112e95", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 275024, "upload_time": "2016-12-27T19:14:09", "upload_time_iso_8601": "2016-12-27T19:14:09.666488Z", "url": "https://files.pythonhosted.org/packages/59/b4/fed4e8227dd910933bc8fb8e5b5a70f0338d010cf0e35fd8772e28320ee8/schema-salad-2.1.20161227191302.tar.gz", "yanked": false, "yanked_reason": null } ], "2.2.20170111180227": [ { "comment_text": "", "digests": { "md5": "ed20eeb991f32a8c38d21bccc7645983", "sha256": "4517d9fd700a2e0e04302452bb43ca995d4836ec549267d6d1090c7efc7c0f0c" }, "downloads": -1, "filename": "schema-salad-2.2.20170111180227.tar.gz", "has_sig": false, "md5_digest": "ed20eeb991f32a8c38d21bccc7645983", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 294837, "upload_time": "2017-01-11T18:02:52", "upload_time_iso_8601": "2017-01-11T18:02:52.664117Z", "url": "https://files.pythonhosted.org/packages/ef/e3/a1fa69dcb645699fe4a68bbeedb79da7799fa7b24db5c8a3e8e365bb6ad7/schema-salad-2.2.20170111180227.tar.gz", "yanked": false, "yanked_reason": null } ], "2.2.20170119151016": [ { "comment_text": "", "digests": { "md5": "f91f3d2cd46fff3c6bbb2ceb8e81c4a6", "sha256": "64f504a35a33d4c1fba874f726eaf2824ca6828edf864f760adbed841ffdea01" }, "downloads": -1, "filename": "schema-salad-2.2.20170119151016.tar.gz", "has_sig": false, "md5_digest": "f91f3d2cd46fff3c6bbb2ceb8e81c4a6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 294863, "upload_time": "2017-01-19T15:11:12", "upload_time_iso_8601": "2017-01-19T15:11:12.105902Z", "url": "https://files.pythonhosted.org/packages/b8/0d/fa67d52f2f3c1693e9f085bd148c6000267964889934eaa63c1f23793c1f/schema-salad-2.2.20170119151016.tar.gz", "yanked": false, "yanked_reason": null } ], "2.2.20170126160727": [ { "comment_text": "", "digests": { "md5": "45bd48133e5250b7956e28392cec2ed5", "sha256": "df746090e0e541056c6f2dd587ee646fd7559973b04269edfa70965e5b0fae4b" }, "downloads": -1, "filename": "schema-salad-2.2.20170126160727.tar.gz", "has_sig": false, "md5_digest": "45bd48133e5250b7956e28392cec2ed5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 295046, "upload_time": "2017-01-26T16:08:13", "upload_time_iso_8601": "2017-01-26T16:08:13.483223Z", "url": "https://files.pythonhosted.org/packages/63/a6/649ea456f353358f409e069db5d513846afcc868457d9a8ce18b7a2b1370/schema-salad-2.2.20170126160727.tar.gz", "yanked": false, "yanked_reason": null } ], "2.2.20170208112505": [ { "comment_text": "", "digests": { "md5": "745ea008200d6912b5c44422c9fc189c", "sha256": "0a301ce048054f0988b79db8afd707f30723d2dbf8fc633643a3e1868ce28a11" }, "downloads": -1, "filename": "schema_salad-2.2.20170208112505-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "745ea008200d6912b5c44422c9fc189c", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 315565, "upload_time": "2017-02-08T11:26:29", "upload_time_iso_8601": "2017-02-08T11:26:29.079272Z", "url": "https://files.pythonhosted.org/packages/8a/3c/79011c315df3b85f13d1a238a726dfb55fbec9e7c35afc22d4204ab89e8e/schema_salad-2.2.20170208112505-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c67f396e31e637b6ac02c70374decb2d", "sha256": "b4e7605a451770d1bfb661dfebbd0fe10588d56ff47a553ea48c099762f9da34" }, "downloads": -1, "filename": "schema-salad-2.2.20170208112505.tar.gz", "has_sig": false, "md5_digest": "c67f396e31e637b6ac02c70374decb2d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 291675, "upload_time": "2017-02-08T11:26:26", "upload_time_iso_8601": "2017-02-08T11:26:26.618673Z", "url": "https://files.pythonhosted.org/packages/29/b0/42847d29b6ea3f7fc5275603a494f5c7239eed59b988d62d1eeec34b740f/schema-salad-2.2.20170208112505.tar.gz", "yanked": false, "yanked_reason": null } ], "2.2.20170216125639": [ { "comment_text": "", "digests": { "md5": "17f6207db238a063279cecafb23bdfff", "sha256": "90b6c6986c34d0c117e426d2124ba289f6920d21af1943aa02f3d9af7967e1e9" }, "downloads": -1, "filename": "schema_salad-2.2.20170216125639-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "17f6207db238a063279cecafb23bdfff", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 315579, "upload_time": "2017-02-16T12:58:13", "upload_time_iso_8601": "2017-02-16T12:58:13.773938Z", "url": "https://files.pythonhosted.org/packages/2a/28/2e371db2f1432cb4522731c848242a8768975d37b9633f1ca94fcdff264a/schema_salad-2.2.20170216125639-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "55f2d5ceae55daf1b649a596fbddb692", "sha256": "7f1a800ffc4ce6ab4f809b557bc494f92317324defe3531dc43022a740b281bc" }, "downloads": -1, "filename": "schema-salad-2.2.20170216125639.tar.gz", "has_sig": false, "md5_digest": "55f2d5ceae55daf1b649a596fbddb692", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 291884, "upload_time": "2017-02-16T12:58:09", "upload_time_iso_8601": "2017-02-16T12:58:09.581393Z", "url": "https://files.pythonhosted.org/packages/79/ac/8d6655bbf8316b3c8b279a91724457e8ced25ac271daf414014d353f31ee/schema-salad-2.2.20170216125639.tar.gz", "yanked": false, "yanked_reason": null } ], "2.2.20170222151604": [ { "comment_text": "", "digests": { "md5": "c3e1e8ed11fd1f1c950447106c85f82d", "sha256": "307414adad7a497d812b24ab8e8be5146d8faae11bec1769bbc2956bbc90fc0d" }, "downloads": -1, "filename": "schema-salad-2.2.20170222151604.tar.gz", "has_sig": false, "md5_digest": "c3e1e8ed11fd1f1c950447106c85f82d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 295105, "upload_time": "2017-02-22T15:47:20", "upload_time_iso_8601": "2017-02-22T15:47:20.783360Z", "url": "https://files.pythonhosted.org/packages/37/a6/e06c51736d39223144a7df43a5f0bcc1855a7192ce7481df5a605435f2fe/schema-salad-2.2.20170222151604.tar.gz", "yanked": false, "yanked_reason": null } ], "2.3.20170302150835": [ { "comment_text": "", "digests": { "md5": "b83a6954f873365b62f16bf3af47c7c7", "sha256": "af8ea85f23f43202459ec36d5f0447d570af482a265d0077f142faccfaac8ef8" }, "downloads": -1, "filename": "schema-salad-2.3.20170302150835.tar.gz", "has_sig": false, "md5_digest": "b83a6954f873365b62f16bf3af47c7c7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 295611, "upload_time": "2017-03-02T15:56:14", "upload_time_iso_8601": "2017-03-02T15:56:14.582786Z", "url": "https://files.pythonhosted.org/packages/4c/d0/ff01b8393d2b1bc8609eafe075983a6d40cbf548965cb223711b056d2f45/schema-salad-2.3.20170302150835.tar.gz", "yanked": false, "yanked_reason": null } ], "2.3.20170302225134": [ { "comment_text": "", "digests": { "md5": "e79a5e4e15ae3d33f19b9bb9e92b3840", "sha256": "1b161f2dde8ce128bd30ee9758ded9bfa083dd8d22e9fd7de5b57fcff2b77f16" }, "downloads": -1, "filename": "schema-salad-2.3.20170302225134.tar.gz", "has_sig": false, "md5_digest": "e79a5e4e15ae3d33f19b9bb9e92b3840", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 295613, "upload_time": "2017-03-02T22:54:12", "upload_time_iso_8601": "2017-03-02T22:54:12.764041Z", "url": "https://files.pythonhosted.org/packages/7e/8e/63ef2889fb4e46c8d4d6449b31c36c651b28d4adc0e6bfd664e2d049b29b/schema-salad-2.3.20170302225134.tar.gz", "yanked": false, "yanked_reason": null } ], "2.4.20170308171942": [ { "comment_text": "", "digests": { "md5": "3d5cef0b01b8ef28fb52d24cd3eae4e5", "sha256": "f80f376d9d32b4bc85f65a6d91d1e85643979cb1fe3b98553bcc7b613c972036" }, "downloads": -1, "filename": "schema-salad-2.4.20170308171942.tar.gz", "has_sig": false, "md5_digest": "3d5cef0b01b8ef28fb52d24cd3eae4e5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 309155, "upload_time": "2017-03-08T17:21:39", "upload_time_iso_8601": "2017-03-08T17:21:39.868754Z", "url": "https://files.pythonhosted.org/packages/43/b4/1555a0edec396dbae93114d454b6c88383d09c543d494d43efe0a41550e7/schema-salad-2.4.20170308171942.tar.gz", "yanked": false, "yanked_reason": null } ], "2.5.1.20170628121527": [ { "comment_text": "", "digests": { "md5": "cdf439a55093a47f63f76ca8f3d91797", "sha256": "9c0789f9a1e90593ac87268e6f54577b0f1e5dda04f6c170fa5166ef726fd324" }, "downloads": -1, "filename": "schema_salad-2.5.1.20170628121527-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "cdf439a55093a47f63f76ca8f3d91797", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 322517, "upload_time": "2017-06-28T12:21:36", "upload_time_iso_8601": "2017-06-28T12:21:36.544077Z", "url": "https://files.pythonhosted.org/packages/88/98/f29528160479689d23b82d8d25a395b1afbd4c033003c5337d80ef61caf7/schema_salad-2.5.1.20170628121527-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "85085c82bddab5b55a4459b0a7453368", "sha256": "1fb0f0755f4b0e44e204d33db7b7f6864d752313e7ddc9aeb13bf5450382a9a8" }, "downloads": -1, "filename": "schema-salad-2.5.1.20170628121527.tar.gz", "has_sig": false, "md5_digest": "85085c82bddab5b55a4459b0a7453368", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 295688, "upload_time": "2017-06-28T12:21:34", "upload_time_iso_8601": "2017-06-28T12:21:34.619485Z", "url": "https://files.pythonhosted.org/packages/3f/18/a376c15ff5750d4adacbf0653795bb0d496786d59fa2aa43af76bc261a4a/schema-salad-2.5.1.20170628121527.tar.gz", "yanked": false, "yanked_reason": null } ], "2.5.20170327140858": [ { "comment_text": "", "digests": { "md5": "37f4af10a15ca49dac5117cb8880f80a", "sha256": "f2a7d70becef00b246f40242cb54672e06b643a1c82cd4767ff35b0e9ea50dd3" }, "downloads": -1, "filename": "schema-salad-2.5.20170327140858.tar.gz", "has_sig": false, "md5_digest": "37f4af10a15ca49dac5117cb8880f80a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 309067, "upload_time": "2017-03-27T16:56:53", "upload_time_iso_8601": "2017-03-27T16:56:53.227748Z", "url": "https://files.pythonhosted.org/packages/4e/53/74ab7e5d4df7beb40a820d6ba4aff5caf302af91df197d6eb92f7e730874/schema-salad-2.5.20170327140858.tar.gz", "yanked": false, "yanked_reason": null } ], "2.5.20170328195758": [ { "comment_text": "", "digests": { "md5": "d10e085b5488dd993afe364237fb599f", "sha256": "12e75f635158ca71d27110bbaf146621e7106388e6e77b6518374c5df9118825" }, "downloads": -1, "filename": "schema-salad-2.5.20170328195758.tar.gz", "has_sig": false, "md5_digest": "d10e085b5488dd993afe364237fb599f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 309111, "upload_time": "2017-03-28T19:58:34", "upload_time_iso_8601": "2017-03-28T19:58:34.104504Z", "url": "https://files.pythonhosted.org/packages/b0/28/9c9dd97843caa49f4a52b03a4be05b9b9f3240f7eefbed22287403687b58/schema-salad-2.5.20170328195758.tar.gz", "yanked": false, "yanked_reason": null } ], "2.5.20170428142041": [ { "comment_text": "", "digests": { "md5": "ebbed144e807fb588f22500dc35a9904", "sha256": "cddb06e43aad17bf887041c1b070cb212aa4d1620adc71b47ce6f141977713d2" }, "downloads": -1, "filename": "schema-salad-2.5.20170428142041.tar.gz", "has_sig": false, "md5_digest": "ebbed144e807fb588f22500dc35a9904", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 309136, "upload_time": "2017-04-28T14:33:55", "upload_time_iso_8601": "2017-04-28T14:33:55.640674Z", "url": "https://files.pythonhosted.org/packages/15/36/15e1bdd0863407f05bfca8c2dd802175353ef90896dfbdf739f26365ef0c/schema-salad-2.5.20170428142041.tar.gz", "yanked": false, "yanked_reason": null } ], "2.5.20170623152720": [ { "comment_text": "", "digests": { "md5": "8c9a83f3cc7521d1b0227573a4bafa94", "sha256": "f69d50df17e14c9c9ca6d8083e258ceb4be06797f06ae0d67d1354cbe75b3afc" }, "downloads": -1, "filename": "schema_salad-2.5.20170623152720-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "8c9a83f3cc7521d1b0227573a4bafa94", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 322453, "upload_time": "2017-06-23T15:42:04", "upload_time_iso_8601": "2017-06-23T15:42:04.525671Z", "url": "https://files.pythonhosted.org/packages/13/7b/ecfde02694d2687b045e8c721bfde7b0c571fdee46377cc92658a826d102/schema_salad-2.5.20170623152720-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "89723444cb79975a16c231fbbdea28d2", "sha256": "231aa8d56aad29c7e465b1cd056e2fd5b8348e6fd38f2022a5917a590ee58ecf" }, "downloads": -1, "filename": "schema-salad-2.5.20170623152720.tar.gz", "has_sig": false, "md5_digest": "89723444cb79975a16c231fbbdea28d2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 295757, "upload_time": "2017-06-23T15:42:02", "upload_time_iso_8601": "2017-06-23T15:42:02.360252Z", "url": "https://files.pythonhosted.org/packages/04/95/98de6834df8a008ac53460654385f3517c8a37dda7e36a367625fde80608/schema-salad-2.5.20170623152720.tar.gz", "yanked": false, "yanked_reason": null } ], "2.6.20170628130600": [ { "comment_text": "", "digests": { "md5": "512bfd39822720b7f74fee2d4df63a88", "sha256": "5e3f465242b1ee980560ebcdfa86125b135f072a4b40b1308ebbf3da2fd67ce2" }, "downloads": -1, "filename": "schema_salad-2.6.20170628130600-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "512bfd39822720b7f74fee2d4df63a88", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 322479, "upload_time": "2017-06-28T13:15:52", "upload_time_iso_8601": "2017-06-28T13:15:52.399105Z", "url": "https://files.pythonhosted.org/packages/27/c4/2a2a3586d33126aa510d31925f554cedd461b84951a555fdb488741216ae/schema_salad-2.6.20170628130600-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d58aa58eb64d25bab04c0c4febf6c12f", "sha256": "b437204259cf0f9e6c53248e0a616506f327b197c32d1270de17086b3ae907bb" }, "downloads": -1, "filename": "schema-salad-2.6.20170628130600.tar.gz", "has_sig": false, "md5_digest": "d58aa58eb64d25bab04c0c4febf6c12f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 295692, "upload_time": "2017-06-28T13:15:50", "upload_time_iso_8601": "2017-06-28T13:15:50.711553Z", "url": "https://files.pythonhosted.org/packages/58/01/a158af214ea99e6e6d6cb03aef8085a842841d39071b96955ed143115296/schema-salad-2.6.20170628130600.tar.gz", "yanked": false, "yanked_reason": null } ], "2.6.20170630075932": [ { "comment_text": "", "digests": { "md5": "4730913f0f19c6dd93006c58ced4c994", "sha256": "96f2960ad5556795a50bd1fc522751a0e59b2361088c78a487b777b14939cc55" }, "downloads": -1, "filename": "schema_salad-2.6.20170630075932-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "4730913f0f19c6dd93006c58ced4c994", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 322476, "upload_time": "2017-06-30T08:03:38", "upload_time_iso_8601": "2017-06-30T08:03:38.004776Z", "url": "https://files.pythonhosted.org/packages/c6/ad/974ec6263d7297d39748d2c7ac2e4584d04736e8c6b6e42d32a1f1d730cc/schema_salad-2.6.20170630075932-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a17eb7d8897ef8f9e60b046f917dcd18", "sha256": "4c96c0c73ca7260307e09a8361317b1d3cfd54a33618edd70e6afb8c0759d604" }, "downloads": -1, "filename": "schema-salad-2.6.20170630075932.tar.gz", "has_sig": false, "md5_digest": "a17eb7d8897ef8f9e60b046f917dcd18", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 295691, "upload_time": "2017-06-30T08:03:36", "upload_time_iso_8601": "2017-06-30T08:03:36.047035Z", "url": "https://files.pythonhosted.org/packages/d4/5f/b0b1498e318b6eeb096fbbdbeff3890b32691e2673f196732fe0fb126c4c/schema-salad-2.6.20170630075932.tar.gz", "yanked": false, "yanked_reason": null } ], "2.6.20170712194300": [ { "comment_text": "", "digests": { "md5": "07f4a2de0fa92966fd7a7f3a2acfe419", "sha256": "7745a03edf4d541023d2072c5df599605b2734abc4ce4462f31c86ec343cdd69" }, "downloads": -1, "filename": "schema_salad-2.6.20170712194300-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "07f4a2de0fa92966fd7a7f3a2acfe419", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 323287, "upload_time": "2017-07-12T21:02:44", "upload_time_iso_8601": "2017-07-12T21:02:44.934908Z", "url": "https://files.pythonhosted.org/packages/b2/7d/230346381ee2edafc62cdd07318fc40f792070bb51640d2cb96f944c943c/schema_salad-2.6.20170712194300-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ea61ad8fc890203614c26ed6c7051e1b", "sha256": "78edc48bca37fb81faecefc75297900ad93fb917470c8d8fa50e3d3e906230e9" }, "downloads": -1, "filename": "schema-salad-2.6.20170712194300.tar.gz", "has_sig": false, "md5_digest": "ea61ad8fc890203614c26ed6c7051e1b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 296446, "upload_time": "2017-07-12T21:02:43", "upload_time_iso_8601": "2017-07-12T21:02:43.110259Z", "url": "https://files.pythonhosted.org/packages/7d/63/12cbe7dc03bb83a4e2e3e6e61f9dd970419aca8e1714e19cf71707cd1e67/schema-salad-2.6.20170712194300.tar.gz", "yanked": false, "yanked_reason": null } ], "2.6.20170806163416": [ { "comment_text": "", "digests": { "md5": "759e811be52913702e40aa40e9852608", "sha256": "aa235d17235981ee2636a967df146e41aba115c332c6eacb2cab1adb19f4f404" }, "downloads": -1, "filename": "schema_salad-2.6.20170806163416-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "759e811be52913702e40aa40e9852608", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 323539, "upload_time": "2017-08-07T10:35:38", "upload_time_iso_8601": "2017-08-07T10:35:38.547629Z", "url": "https://files.pythonhosted.org/packages/1f/20/707b2b6d760e2b2d0ce334a7882e714f6c230723cb5200ac3b68079d9a40/schema_salad-2.6.20170806163416-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f45cd87c34a90ccedae2d00278a9c0af", "sha256": "af414fd5f89cf452e3581cda9fd403278db72256a6ed6bc13f62a19bb38fae46" }, "downloads": -1, "filename": "schema-salad-2.6.20170806163416.tar.gz", "has_sig": false, "md5_digest": "f45cd87c34a90ccedae2d00278a9c0af", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 296713, "upload_time": "2017-08-07T10:35:40", "upload_time_iso_8601": "2017-08-07T10:35:40.319771Z", "url": "https://files.pythonhosted.org/packages/fa/cb/707b7624e786e3a90d9fd3bb312612f1cc0ee2e7dcad79e26d4493ea9bf9/schema-salad-2.6.20170806163416.tar.gz", "yanked": false, "yanked_reason": null } ], "2.6.20170927145003": [ { "comment_text": "", "digests": { "md5": "b1c73fc71e723ce63480abd3a3495c55", "sha256": "d41eff44e365fcab4254f3954b0610dbec69dd1c41e81f95258d90f92c73968e" }, "downloads": -1, "filename": "schema-salad-2.6.20170927145003.tar.gz", "has_sig": false, "md5_digest": "b1c73fc71e723ce63480abd3a3495c55", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 311794, "upload_time": "2017-09-27T14:50:50", "upload_time_iso_8601": "2017-09-27T14:50:50.692641Z", "url": "https://files.pythonhosted.org/packages/56/92/b66662a1492e15eab8d6749f5305a21d6367a6ccb9f97d8adae1869cb6c3/schema-salad-2.6.20170927145003.tar.gz", "yanked": false, "yanked_reason": null } ], "2.6.20171031091636": [ { "comment_text": "", "digests": { "md5": "10575f172dc951cf256b8ac8dadac45f", "sha256": "e14c18a928003ea1f36735f1fb8779a9dc876d9c71a945c6ea22cd813db7bcef" }, "downloads": -1, "filename": "schema_salad-2.6.20171031091636-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "10575f172dc951cf256b8ac8dadac45f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 379850, "upload_time": "2017-10-31T09:26:53", "upload_time_iso_8601": "2017-10-31T09:26:53.049831Z", "url": "https://files.pythonhosted.org/packages/4a/4f/789dcff82f01a6d5afb2ab8a321b6aded4c6d424f382203fe8f2b9e97154/schema_salad-2.6.20171031091636-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "671facf074975969d9e272d37c9e2153", "sha256": "d307123f5c8b37eec5d4bc292f7e47f4df76233530146663f03cf24c92ebb654" }, "downloads": -1, "filename": "schema-salad-2.6.20171031091636.tar.gz", "has_sig": false, "md5_digest": "671facf074975969d9e272d37c9e2153", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 363226, "upload_time": "2017-10-31T09:26:55", "upload_time_iso_8601": "2017-10-31T09:26:55.369978Z", "url": "https://files.pythonhosted.org/packages/e9/dc/d6dd7a42c45f4d777dadff8b7154b84d0815c9b582d9fc047277a4855e95/schema-salad-2.6.20171031091636.tar.gz", "yanked": false, "yanked_reason": null } ], "2.6.20171101113912": [ { "comment_text": "", "digests": { "md5": "d9682ffe35f276cacef5d2fd7c9c2e1a", "sha256": "d33f445c4bdb804aea4986675c3f953ccca824871841ee45c3ba51b31ac9fae5" }, "downloads": -1, "filename": "schema_salad-2.6.20171101113912-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "d9682ffe35f276cacef5d2fd7c9c2e1a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 380297, "upload_time": "2017-11-01T11:45:37", "upload_time_iso_8601": "2017-11-01T11:45:37.924926Z", "url": "https://files.pythonhosted.org/packages/25/95/27c476161486d967891ccad9377046290953df2ee9c13dcb5c60e8a57b9e/schema_salad-2.6.20171101113912-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3f8aadaa2bf5be295811ee640a6c6a06", "sha256": "13b999f5c1dbc88dda41e0035944ff54576d9dc161cbcc71099e971d99f5993d" }, "downloads": -1, "filename": "schema-salad-2.6.20171101113912.tar.gz", "has_sig": false, "md5_digest": "3f8aadaa2bf5be295811ee640a6c6a06", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 345042, "upload_time": "2017-11-01T11:45:39", "upload_time_iso_8601": "2017-11-01T11:45:39.420897Z", "url": "https://files.pythonhosted.org/packages/ee/5b/659b749b1b12557456712a6a8a45f9cf80386c1a41e6f682f000b69046a1/schema-salad-2.6.20171101113912.tar.gz", "yanked": false, "yanked_reason": null } ], "2.6.20171102064032": [ { "comment_text": "", "digests": { "md5": "aa2092521ffc7145bccb7740e5431236", "sha256": "e5665c6c2890e6a0fee4e5ffc2d12030b5fde83efc8e7c995e7dc281d4b204a1" }, "downloads": -1, "filename": "schema_salad-2.6.20171102064032-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "aa2092521ffc7145bccb7740e5431236", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 380298, "upload_time": "2017-11-02T13:18:31", "upload_time_iso_8601": "2017-11-02T13:18:31.148704Z", "url": "https://files.pythonhosted.org/packages/56/d1/a87e206eab9b24df4dbed73827cec7a96478ce977c28a79df453f13b47c5/schema_salad-2.6.20171102064032-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "eceb61a6a76f0604279d96dc2b370e76", "sha256": "e5afcc23c29345b5616e91f16581ecba52a2c98bab03310be79c982d1133a387" }, "downloads": -1, "filename": "schema-salad-2.6.20171102064032.tar.gz", "has_sig": false, "md5_digest": "eceb61a6a76f0604279d96dc2b370e76", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 345062, "upload_time": "2017-11-02T13:18:33", "upload_time_iso_8601": "2017-11-02T13:18:33.174871Z", "url": "https://files.pythonhosted.org/packages/57/b3/b010d74eb0480e760da3c84d129ece813d861267dd479315ec891d0d0e9c/schema-salad-2.6.20171102064032.tar.gz", "yanked": false, "yanked_reason": null } ], "2.6.20171116190026": [ { "comment_text": "", "digests": { "md5": "a8909652bf4f764880e7a3275a2596e4", "sha256": "2011d1f7fae5174755b10d4d733b1c3e8a79203883ef6639bdb6276eb0aacdc5" }, "downloads": -1, "filename": "schema-salad-2.6.20171116190026.tar.gz", "has_sig": false, "md5_digest": "a8909652bf4f764880e7a3275a2596e4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 367038, "upload_time": "2017-11-16T19:01:39", "upload_time_iso_8601": "2017-11-16T19:01:39.728397Z", "url": "https://files.pythonhosted.org/packages/ff/fb/d447423241b9341ddd05f8c6a01851d334bc5e7264b118b7f398358b250e/schema-salad-2.6.20171116190026.tar.gz", "yanked": false, "yanked_reason": null } ], "2.6.20171201034858": [ { "comment_text": "", "digests": { "md5": "937ce8e3702101e6c0f3711297e6163a", "sha256": "a78744fbd749222eb935d2152578f0f82c6491bf7a362c6ecd6a8e04c8592f28" }, "downloads": -1, "filename": "schema-salad-2.6.20171201034858.tar.gz", "has_sig": false, "md5_digest": "937ce8e3702101e6c0f3711297e6163a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 367144, "upload_time": "2017-12-05T19:43:12", "upload_time_iso_8601": "2017-12-05T19:43:12.903032Z", "url": "https://files.pythonhosted.org/packages/18/1f/24ee364cb2133f78fde4c64d58e62b81faed163deca186554b6ffa8324fc/schema-salad-2.6.20171201034858.tar.gz", "yanked": false, "yanked_reason": null } ], "2.6.20180214144209": [ { "comment_text": "", "digests": { "md5": "533479ec90a4990004c9fcec16e4ac02", "sha256": "536ab365707cb47bf7fff0536665bdeb094d8a7230e406cd8ae128ab47e92733" }, "downloads": -1, "filename": "schema_salad-2.6.20180214144209-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "533479ec90a4990004c9fcec16e4ac02", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 381144, "upload_time": "2018-02-14T14:52:10", "upload_time_iso_8601": "2018-02-14T14:52:10.295066Z", "url": "https://files.pythonhosted.org/packages/04/b3/adaddda96ef8e68554f922d1090e29f58860f166dfc430421d3683b790b4/schema_salad-2.6.20180214144209-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "2.7.20180302220026": [ { "comment_text": "", "digests": { "md5": "ace2d0c2bd17f4610e00ddfc4c79b4fc", "sha256": "b213f11af4e3624f18bf6e16696cfcd9eecdfcb0e4520bd6644594f783b17d70" }, "downloads": -1, "filename": "schema_salad-2.7.20180302220026-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ace2d0c2bd17f4610e00ddfc4c79b4fc", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 382653, "upload_time": "2018-03-19T14:24:54", "upload_time_iso_8601": "2018-03-19T14:24:54.545905Z", "url": "https://files.pythonhosted.org/packages/01/82/2e746fc926350f0b5b7981a11615d01e08799eba32e860f7add85e0696c0/schema_salad-2.7.20180302220026-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5a14da877d651bb61f1a535f728ab1d7", "sha256": "2bd1b7ee27613394d8f2c044d5bc304cfaa0e06385b7c0d657604835d2aa0c30" }, "downloads": -1, "filename": "schema-salad-2.7.20180302220026.tar.gz", "has_sig": false, "md5_digest": "5a14da877d651bb61f1a535f728ab1d7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 347523, "upload_time": "2018-03-19T14:24:56", "upload_time_iso_8601": "2018-03-19T14:24:56.494946Z", "url": "https://files.pythonhosted.org/packages/42/5b/22cf2d48d134a32a2032764d978c16cab576fb820236a549bc7a0291c375/schema-salad-2.7.20180302220026.tar.gz", "yanked": false, "yanked_reason": null } ], "2.7.20180322174040": [ { "comment_text": "", "digests": { "md5": "ae25f34aaf92a3c0479e16295dbc6981", "sha256": "923b080ba378c3d5b692f7c890b541740d1a3a1d282317142498bc9450b02fdc" }, "downloads": -1, "filename": "schema_salad-2.7.20180322174040-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ae25f34aaf92a3c0479e16295dbc6981", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 382685, "upload_time": "2018-03-22T17:51:21", "upload_time_iso_8601": "2018-03-22T17:51:21.650183Z", "url": "https://files.pythonhosted.org/packages/88/b6/ed7c26bdf9aafac9e88e8bc1dbed7faeb323487fac2f48d033776f74f7e7/schema_salad-2.7.20180322174040-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d1f8cb2f11098d9d0eeb6e265f703f08", "sha256": "a6e411383b344ecdbdedb5b8b8d6738fd9423eabd10250b0dc58c340b3aed100" }, "downloads": -1, "filename": "schema-salad-2.7.20180322174040.tar.gz", "has_sig": false, "md5_digest": "d1f8cb2f11098d9d0eeb6e265f703f08", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 347552, "upload_time": "2018-03-22T17:51:23", "upload_time_iso_8601": "2018-03-22T17:51:23.599107Z", "url": "https://files.pythonhosted.org/packages/82/1a/6a443a6a452d1f81ad8bece6ea9004905317fdca6619d4819c26d6621418/schema-salad-2.7.20180322174040.tar.gz", "yanked": false, "yanked_reason": null } ], "2.7.20180501211602": [ { "comment_text": "", "digests": { "md5": "4eb3daaf1ed7825857cda9253a708fae", "sha256": "d7524d3461a6d6aae827aad517cf1c4c7cdb4963a3738a5c7a2d097a763d9460" }, "downloads": -1, "filename": "schema_salad-2.7.20180501211602-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "4eb3daaf1ed7825857cda9253a708fae", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 379721, "upload_time": "2018-05-01T21:36:41", "upload_time_iso_8601": "2018-05-01T21:36:41.997397Z", "url": "https://files.pythonhosted.org/packages/b1/c1/fa6a44b7fe7516281cbeb1de557c50a0c58fe87a495c8f46bec238dbfffc/schema_salad-2.7.20180501211602-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "141c2a56bf6e5e10edb01acfbd327eda", "sha256": "30ecc07a80f63b9876f6e1487261375c1f56326d99950ced7c2a23ef51e2e47b" }, "downloads": -1, "filename": "schema-salad-2.7.20180501211602.tar.gz", "has_sig": false, "md5_digest": "141c2a56bf6e5e10edb01acfbd327eda", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 345249, "upload_time": "2018-05-01T21:36:43", "upload_time_iso_8601": "2018-05-01T21:36:43.844883Z", "url": "https://files.pythonhosted.org/packages/ae/62/8c5d0b16b49df6f5015520abd25e58c6b66b272209799969c44758c755b5/schema-salad-2.7.20180501211602.tar.gz", "yanked": false, "yanked_reason": null } ], "2.7.20180514111532": [ { "comment_text": "", "digests": { "md5": "82ae1d1eec4eea737549ac2003d2eabe", "sha256": "fa54f522166fe595011f9e40bdea6abe06fe37816c100952c57a04ab58dd7b11" }, "downloads": -1, "filename": "schema_salad-2.7.20180514111532-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "82ae1d1eec4eea737549ac2003d2eabe", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 379892, "upload_time": "2018-05-14T11:32:09", "upload_time_iso_8601": "2018-05-14T11:32:09.379549Z", "url": "https://files.pythonhosted.org/packages/d4/e3/2c2041a089108a4c790b6b276489d4bc3e15ddaa7bff61cddb0cab981177/schema_salad-2.7.20180514111532-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c3dcf68602d3b104fae40f355bab2faa", "sha256": "e9fe64723ee2f542358bc0d061e8118dd840693dcd98e4de561b7264b17cafea" }, "downloads": -1, "filename": "schema-salad-2.7.20180514111532.tar.gz", "has_sig": false, "md5_digest": "c3dcf68602d3b104fae40f355bab2faa", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 347731, "upload_time": "2018-05-14T11:32:11", "upload_time_iso_8601": "2018-05-14T11:32:11.358388Z", "url": "https://files.pythonhosted.org/packages/fa/77/9dcb73aec3db6a21d454972c195ffe99afcdc0d70e72bebe1583f1e5b33b/schema-salad-2.7.20180514111532.tar.gz", "yanked": false, "yanked_reason": null } ], "2.7.20180514132321": [ { "comment_text": "", "digests": { "md5": "b5d0db9eab2e36e75853b3114f45ae52", "sha256": "c734e2b5d680fbff22977e2733eb08c8724cc9a461b21d93b84952f77461ed3f" }, "downloads": -1, "filename": "schema_salad-2.7.20180514132321-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b5d0db9eab2e36e75853b3114f45ae52", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 379964, "upload_time": "2018-05-14T13:31:00", "upload_time_iso_8601": "2018-05-14T13:31:00.749618Z", "url": "https://files.pythonhosted.org/packages/32/8c/856e3bd0ab5beec4477fc93c2dfbcd5980fe66080d6ff9e3a340b13be5b3/schema_salad-2.7.20180514132321-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6ed581393f98f75c05e4bab6d59b11d8", "sha256": "f000025272468625fc4768716ac87474bb7c9250fd746dd53a7f248f6a53df01" }, "downloads": -1, "filename": "schema-salad-2.7.20180514132321.tar.gz", "has_sig": false, "md5_digest": "6ed581393f98f75c05e4bab6d59b11d8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 347790, "upload_time": "2018-05-14T13:31:02", "upload_time_iso_8601": "2018-05-14T13:31:02.576695Z", "url": "https://files.pythonhosted.org/packages/54/54/3d2d9733d30c0fc91cc54b9cc47a6a221ba1aa615b157901104f61c13e39/schema-salad-2.7.20180514132321.tar.gz", "yanked": false, "yanked_reason": null } ], "2.7.20180611133406": [ { "comment_text": "", "digests": { "md5": "e2415b5666906c3c9cdb7fd132fd65b7", "sha256": "cc3e865dada234cab49fdff4fda0c8f71076d4dc864a499e86a73a2876319912" }, "downloads": -1, "filename": "schema_salad-2.7.20180611133406-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e2415b5666906c3c9cdb7fd132fd65b7", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 380151, "upload_time": "2018-06-11T13:42:40", "upload_time_iso_8601": "2018-06-11T13:42:40.382919Z", "url": "https://files.pythonhosted.org/packages/37/eb/9ed3748d0cc19acb4ac4d17893a647d70103cb37668aa5182fe2ee3f54ba/schema_salad-2.7.20180611133406-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9c1793284cc8f3269abcfc8089390a8f", "sha256": "094e8d8dcf04ff695397d455e3f17cff37df15c36b1cdf5ce8974a42015f8b59" }, "downloads": -1, "filename": "schema-salad-2.7.20180611133406.tar.gz", "has_sig": false, "md5_digest": "9c1793284cc8f3269abcfc8089390a8f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 347996, "upload_time": "2018-06-11T13:42:41", "upload_time_iso_8601": "2018-06-11T13:42:41.786898Z", "url": "https://files.pythonhosted.org/packages/af/fb/645a2c7ad327cf6da550bcc5887cada6194c81b744737ab00e050ecb39a9/schema-salad-2.7.20180611133406.tar.gz", "yanked": false, "yanked_reason": null } ], "2.7.20180717111941": [ { "comment_text": "", "digests": { "md5": "42a56561f5cdbccbef19f44c67fceef8", "sha256": "3c4d2d5d6c05cd3d9070acd611b340594d7b78b7384dfa9f13d6db1aefdad037" }, "downloads": -1, "filename": "schema_salad-2.7.20180717111941-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "42a56561f5cdbccbef19f44c67fceef8", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 382105, "upload_time": "2018-07-17T11:33:24", "upload_time_iso_8601": "2018-07-17T11:33:24.521589Z", "url": "https://files.pythonhosted.org/packages/e9/22/6015a341525fb6c8409e86a22a6f8176a26ac38107f989dd29197c1edce0/schema_salad-2.7.20180717111941-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7e26600e278d0ca49a81ec548da7f49c", "sha256": "b045d4331b5e3b712aea703ddbac0d8c120d6d359ac1a2bc35e3ad9af5d5a894" }, "downloads": -1, "filename": "schema-salad-2.7.20180717111941.tar.gz", "has_sig": false, "md5_digest": "7e26600e278d0ca49a81ec548da7f49c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 350062, "upload_time": "2018-07-17T11:33:26", "upload_time_iso_8601": "2018-07-17T11:33:26.176565Z", "url": "https://files.pythonhosted.org/packages/aa/b2/959927dd8ae44b093faafdcb3283afec4d34a8e68bb77b35c4e8fca44f4b/schema-salad-2.7.20180717111941.tar.gz", "yanked": false, "yanked_reason": null } ], "2.7.20180719125426": [ { "comment_text": "", "digests": { "md5": "8e327934559b3f1ec1d4a113c6ceb93b", "sha256": "1db38851292fde76ce7700f2e47037b37912485c623d9fdf60b47cdfcdf90935" }, "downloads": -1, "filename": "schema_salad-2.7.20180719125426-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "8e327934559b3f1ec1d4a113c6ceb93b", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 382108, "upload_time": "2018-07-19T13:03:46", "upload_time_iso_8601": "2018-07-19T13:03:46.888851Z", "url": "https://files.pythonhosted.org/packages/a3/a9/809fc5e8683c7fa88feb56e9bf7fdc704d2cc6c4c116b3ef393ab7f171cf/schema_salad-2.7.20180719125426-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "dce9d8f7d0073ca16ff0712698ca7034", "sha256": "905551d7e7e0db66eeebba20edde67afa31b9feb019a42d16a71a10f53bb5407" }, "downloads": -1, "filename": "schema-salad-2.7.20180719125426.tar.gz", "has_sig": false, "md5_digest": "dce9d8f7d0073ca16ff0712698ca7034", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 350068, "upload_time": "2018-07-19T13:03:48", "upload_time_iso_8601": "2018-07-19T13:03:48.635994Z", "url": "https://files.pythonhosted.org/packages/8d/9f/ca8a766bf0f9dc7500a81758d49180a2a78649330bc1e9db72fc5c249e09/schema-salad-2.7.20180719125426.tar.gz", "yanked": false, "yanked_reason": null } ], "2.7.20180724081820": [ { "comment_text": "", "digests": { "md5": "7c6361f6256b0541394fed7869f3b280", "sha256": "7587d8b0d1205c5814dfa1f7a7d694786aefd75aa5daab09b9b0d9a0fe085071" }, "downloads": -1, "filename": "schema_salad-2.7.20180724081820-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "7c6361f6256b0541394fed7869f3b280", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 382324, "upload_time": "2018-07-24T09:17:11", "upload_time_iso_8601": "2018-07-24T09:17:11.724169Z", "url": "https://files.pythonhosted.org/packages/30/c3/36b56b7290157ec50eb92f2f30fd378f2bc8aa5a9bff739c03115810b655/schema_salad-2.7.20180724081820-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c31e376001900a42c1fcd01bea75381b", "sha256": "bfba365b063c26db2eaa250d35ed48441bb4f4d846fa95f1fd8c24b2531a07bf" }, "downloads": -1, "filename": "schema-salad-2.7.20180724081820.tar.gz", "has_sig": false, "md5_digest": "c31e376001900a42c1fcd01bea75381b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 350272, "upload_time": "2018-07-24T09:17:13", "upload_time_iso_8601": "2018-07-24T09:17:13.406961Z", "url": "https://files.pythonhosted.org/packages/e6/f2/733798d0375ba4cf677fcb13cb6783deab90637fe7a869e545476348e633/schema-salad-2.7.20180724081820.tar.gz", "yanked": false, "yanked_reason": null } ], "2.7.20180731120629": [ { "comment_text": "", "digests": { "md5": "4dc2ff7e5bc56900b98fd4cdc6417d39", "sha256": "c2cf21348a3a62148bc1bc97bb37750030af5e42d36f231271d1a5a99d832eab" }, "downloads": -1, "filename": "schema_salad-2.7.20180731120629-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "4dc2ff7e5bc56900b98fd4cdc6417d39", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 382334, "upload_time": "2018-07-31T12:25:09", "upload_time_iso_8601": "2018-07-31T12:25:09.530813Z", "url": "https://files.pythonhosted.org/packages/c3/5d/2b47b7ff31d62ca3ea2c83f9fb70f136ec1593b8dadfce71e08b5f27e1bb/schema_salad-2.7.20180731120629-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f0b19b1ae29e8619f412a4a57afc813d", "sha256": "695ebd644f782395c55c3e917926a8198614a2911dc97bf3e2a16ecc026ccb22" }, "downloads": -1, "filename": "schema-salad-2.7.20180731120629.tar.gz", "has_sig": false, "md5_digest": "f0b19b1ae29e8619f412a4a57afc813d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 350310, "upload_time": "2018-07-31T12:25:10", "upload_time_iso_8601": "2018-07-31T12:25:10.904120Z", "url": "https://files.pythonhosted.org/packages/9f/ff/935d59038ef98c6cfa07d1c0bed897a76f529c5d7aa9ca439ea554eda2fa/schema-salad-2.7.20180731120629.tar.gz", "yanked": false, "yanked_reason": null } ], "2.7.20180809223002": [ { "comment_text": "", "digests": { "md5": "8e41507160ebed3ebb4910adbaccffa4", "sha256": "0f18f2c246aab921032096d1812768cf61d276a2a31230b360af2c003a7eb285" }, "downloads": -1, "filename": "schema_salad-2.7.20180809223002-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "8e41507160ebed3ebb4910adbaccffa4", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 382339, "upload_time": "2018-08-09T22:37:57", "upload_time_iso_8601": "2018-08-09T22:37:57.514452Z", "url": "https://files.pythonhosted.org/packages/18/dc/95adeef0fec60018921ae0f2af2fce7f8f02dfa0d896418d91c2dddba7b3/schema_salad-2.7.20180809223002-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e707d2694bdc6047437540bd73df7ee4", "sha256": "f5e20c2892c55bb5fb0d62745181dc7675087b46ff091c5fea998bbe4d54ae39" }, "downloads": -1, "filename": "schema-salad-2.7.20180809223002.tar.gz", "has_sig": false, "md5_digest": "e707d2694bdc6047437540bd73df7ee4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 347801, "upload_time": "2018-08-09T22:37:59", "upload_time_iso_8601": "2018-08-09T22:37:59.435097Z", "url": "https://files.pythonhosted.org/packages/a9/f2/074837bf2eaa949dcf64bf06e040e1393d458e82fe160e45bfbacf9fd59e/schema-salad-2.7.20180809223002.tar.gz", "yanked": false, "yanked_reason": null } ], "2.7.20180905124720": [ { "comment_text": "", "digests": { "md5": "031a395c8248f9637e6c0652481d183d", "sha256": "cce7ce1383cc0baa81ed6195b227e7da07b51e0fcd6ed697e693fbecf6ce0d5a" }, "downloads": -1, "filename": "schema_salad-2.7.20180905124720-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "031a395c8248f9637e6c0652481d183d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 385016, "upload_time": "2018-09-05T13:06:04", "upload_time_iso_8601": "2018-09-05T13:06:04.030556Z", "url": "https://files.pythonhosted.org/packages/01/f9/129aff1b731998d8a35cd562e419719c8d95d3820f28accee088b9bcac63/schema_salad-2.7.20180905124720-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7451f6c58f6d23297124e17d06996156", "sha256": "7bf995a5a34aac49adb2e2f6b1b926afcb21507481371f4227538ebd463d80b1" }, "downloads": -1, "filename": "schema-salad-2.7.20180905124720.tar.gz", "has_sig": false, "md5_digest": "7451f6c58f6d23297124e17d06996156", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 371703, "upload_time": "2018-09-05T13:06:05", "upload_time_iso_8601": "2018-09-05T13:06:05.627365Z", "url": "https://files.pythonhosted.org/packages/98/b2/13a3dd69e97e304b1246abe0c75c269b0d6d12d8f9decdd6b15bd6ff56b6/schema-salad-2.7.20180905124720.tar.gz", "yanked": false, "yanked_reason": null } ], "2.7.20181012180226": [ { "comment_text": "", "digests": { "md5": "3b09299cfc30ad1deb6743e48f031f30", "sha256": "066366ab869fb83cc1f2c10f19ccb8238ad085d1976e27d1e36afd8dbd3fc8a9" }, "downloads": -1, "filename": "schema_salad-2.7.20181012180226-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "3b09299cfc30ad1deb6743e48f031f30", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 389178, "upload_time": "2018-10-12T18:35:14", "upload_time_iso_8601": "2018-10-12T18:35:14.852872Z", "url": "https://files.pythonhosted.org/packages/80/e1/0517bb8def60f8253b97317e07ebbd3342fa3b44367f4911401233af4acd/schema_salad-2.7.20181012180226-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b3ff2a000eae29bdc021e6fdf05ec52d", "sha256": "6b269e9415aed4251ebb3ece6082850e8e74d053417d1207116f80303ac64be3" }, "downloads": -1, "filename": "schema-salad-2.7.20181012180226.tar.gz", "has_sig": false, "md5_digest": "b3ff2a000eae29bdc021e6fdf05ec52d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 350597, "upload_time": "2018-10-12T18:35:17", "upload_time_iso_8601": "2018-10-12T18:35:17.711622Z", "url": "https://files.pythonhosted.org/packages/b2/85/5805ba6c5dbb5c33dfde7c1719fa8868e88ba5b52258834fc76cfb355045/schema-salad-2.7.20181012180226.tar.gz", "yanked": false, "yanked_reason": null } ], "2.7.20181017120439": [ { "comment_text": "", "digests": { "md5": "01edbba188507dc04f4151b5ed9912c8", "sha256": "4c63930d0fc222e1bc16d6d0c735648fe4bf1d11135bd37ed13395d1fd09b8c8" }, "downloads": -1, "filename": "schema_salad-2.7.20181017120439-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "01edbba188507dc04f4151b5ed9912c8", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 389176, "upload_time": "2018-10-17T12:20:52", "upload_time_iso_8601": "2018-10-17T12:20:52.527923Z", "url": "https://files.pythonhosted.org/packages/58/d3/e0cf96138bee11e0ff1a405f42a462784f3e65c0f1849d8a69a7608bc64d/schema_salad-2.7.20181017120439-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c8031d082668deaef5d604258014f68f", "sha256": "a7f50aa39f2e37e942bb9bd6ae778f036dd68c4f7720f5850216d43d260cff01" }, "downloads": -1, "filename": "schema-salad-2.7.20181017120439.tar.gz", "has_sig": false, "md5_digest": "c8031d082668deaef5d604258014f68f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 352247, "upload_time": "2018-10-17T12:20:54", "upload_time_iso_8601": "2018-10-17T12:20:54.585969Z", "url": "https://files.pythonhosted.org/packages/ef/56/f8ff886acf4301df8eb3e787b0dc7fa4f099e553a300497c43298f8c05b1/schema-salad-2.7.20181017120439.tar.gz", "yanked": false, "yanked_reason": null } ], "2.7.20181116024232": [ { "comment_text": "", "digests": { "md5": "0a119759ebe4b05f7d4bc82184e04e32", "sha256": "c924a6905f77be53e3ba2577f8eb82bcf3f8956c2e5f0ed2c6dbf5c0c0911326" }, "downloads": -1, "filename": "schema_salad-2.7.20181116024232-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "0a119759ebe4b05f7d4bc82184e04e32", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 404408, "upload_time": "2018-11-16T02:50:40", "upload_time_iso_8601": "2018-11-16T02:50:40.399003Z", "url": "https://files.pythonhosted.org/packages/ad/01/67e8e36cb7bdcd7b17a0d0408c6b505b22c1ae42d5c0a7591838d1ce51f1/schema_salad-2.7.20181116024232-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "60f65341484b44664ed31c46840a9708", "sha256": "479277b9c3b0cd7f42610fa8381fe1dc317992c03217ff6f62b7427ce924d7b6" }, "downloads": -1, "filename": "schema-salad-2.7.20181116024232.tar.gz", "has_sig": false, "md5_digest": "60f65341484b44664ed31c46840a9708", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 359081, "upload_time": "2018-11-16T02:50:43", "upload_time_iso_8601": "2018-11-16T02:50:43.424834Z", "url": "https://files.pythonhosted.org/packages/4c/43/018874937212f6094f0cda1a55d437d83e3bcc5202b436010c1ecabff480/schema-salad-2.7.20181116024232.tar.gz", "yanked": false, "yanked_reason": null } ], "2.7.20181126142424": [ { "comment_text": "", "digests": { "md5": "309b953f1b2fc76eb265bc13631f74d4", "sha256": "e6750e18f571bb41fd617fd58f2f5651a30b5ce14bb03c2da815a63c7107162a" }, "downloads": -1, "filename": "schema_salad-2.7.20181126142424-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "309b953f1b2fc76eb265bc13631f74d4", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 404415, "upload_time": "2018-11-26T14:41:42", "upload_time_iso_8601": "2018-11-26T14:41:42.730155Z", "url": "https://files.pythonhosted.org/packages/35/e5/713a84c9954a1b628c03dfd20c03da2ecd9fdfd07beccf1c2718331399e3/schema_salad-2.7.20181126142424-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "efc1cf8dcb40eb915484a603b5115214", "sha256": "9c4dc0bb38830e8c324575ee11a2c28a1409361790a5ccabcbf3690475c27c8d" }, "downloads": -1, "filename": "schema-salad-2.7.20181126142424.tar.gz", "has_sig": false, "md5_digest": "efc1cf8dcb40eb915484a603b5115214", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 365837, "upload_time": "2018-11-26T14:41:44", "upload_time_iso_8601": "2018-11-26T14:41:44.912112Z", "url": "https://files.pythonhosted.org/packages/91/9c/fedc1e6b9fe9322a7d6ee4efac7b06bc26ff740ff91c1d0455e818c0d37c/schema-salad-2.7.20181126142424.tar.gz", "yanked": false, "yanked_reason": null } ], "3.0.20181129082112": [ { "comment_text": "", "digests": { "md5": "9961c8ae08ba4358d6226b9911d9ac0b", "sha256": "ae2521bc21d950fb42836a506a42ad99997eb072c1994631a6d7aad0739d50b4" }, "downloads": -1, "filename": "schema_salad-3.0.20181129082112-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "9961c8ae08ba4358d6226b9911d9ac0b", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 414333, "upload_time": "2018-11-29T08:36:59", "upload_time_iso_8601": "2018-11-29T08:36:59.428919Z", "url": "https://files.pythonhosted.org/packages/33/2a/033ef560cebaed438aba4b2c4c6e5a361993f14b556919c464b89a34c41c/schema_salad-3.0.20181129082112-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "459416355e1c3a9a561d5a5b8a56d5fd", "sha256": "274d7dcc09f4d9fa364ac6f002e614354f4b554a4ca3a7c3dfa3002cd006e7f5" }, "downloads": -1, "filename": "schema-salad-3.0.20181129082112.tar.gz", "has_sig": false, "md5_digest": "459416355e1c3a9a561d5a5b8a56d5fd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 374530, "upload_time": "2018-11-29T08:37:01", "upload_time_iso_8601": "2018-11-29T08:37:01.299474Z", "url": "https://files.pythonhosted.org/packages/cd/bf/aaa77d44d7d9a0c0c8065561398e7553e4922ddd1d8b9bbcd1140113ccf5/schema-salad-3.0.20181129082112.tar.gz", "yanked": false, "yanked_reason": null } ], "3.0.20181206233650": [ { "comment_text": "", "digests": { "md5": "35ce53416878b6bc1289610f70fbe2fc", "sha256": "24683d65496bb266302e01b00b93c573d4487b656c4cac09b2f1cf869bb64ea3" }, "downloads": -1, "filename": "schema_salad-3.0.20181206233650-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "35ce53416878b6bc1289610f70fbe2fc", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 415105, "upload_time": "2018-12-24T15:55:50", "upload_time_iso_8601": "2018-12-24T15:55:50.655666Z", "url": "https://files.pythonhosted.org/packages/81/1e/f7b171f6008aacfded6c1a8e6de77d6a0d029ce12fc92383f418f9b6a8dc/schema_salad-3.0.20181206233650-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c1b5931b2c5a31b403f86b46fa4d14ac", "sha256": "aafda6ed02beac20abc3ae22f0873155acaa1a487478b2bf929d5437b837ee37" }, "downloads": -1, "filename": "schema-salad-3.0.20181206233650.tar.gz", "has_sig": false, "md5_digest": "c1b5931b2c5a31b403f86b46fa4d14ac", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 375140, "upload_time": "2018-12-24T15:55:52", "upload_time_iso_8601": "2018-12-24T15:55:52.974764Z", "url": "https://files.pythonhosted.org/packages/00/d5/c27bb9c7c3f1cffcc9c011b62f29356be9f71b59b4382e8ed1affd063d72/schema-salad-3.0.20181206233650.tar.gz", "yanked": false, "yanked_reason": null } ], "3.1.20190125161400": [ { "comment_text": "", "digests": { "md5": "f7debe72989a999932e8d4f263c27823", "sha256": "605a49740eb230e818814758b6fe078cb489d0550bf314614e00d20b31a87047" }, "downloads": -1, "filename": "schema_salad-3.1.20190125161400-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f7debe72989a999932e8d4f263c27823", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 416081, "upload_time": "2019-01-25T16:41:43", "upload_time_iso_8601": "2019-01-25T16:41:43.538114Z", "url": "https://files.pythonhosted.org/packages/4a/1e/f4f39e14691b63835c661aee22d2c12d8f6641e25063a1d278754a633e70/schema_salad-3.1.20190125161400-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5f0d3e54e046adf3b82ee57dd335e8b7", "sha256": "2d54c5cea72dce51457711d1a3ea2000ee3c70c6ea09e6b01c95512d89e40592" }, "downloads": -1, "filename": "schema-salad-3.1.20190125161400.tar.gz", "has_sig": false, "md5_digest": "5f0d3e54e046adf3b82ee57dd335e8b7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 372528, "upload_time": "2019-01-25T16:41:45", "upload_time_iso_8601": "2019-01-25T16:41:45.628312Z", "url": "https://files.pythonhosted.org/packages/d2/01/74db006f0287c0631f4e13a0286468226039cdcee3b4d4fcabe0298df8a6/schema-salad-3.1.20190125161400.tar.gz", "yanked": false, "yanked_reason": null } ], "4.0.20190130225346": [ { "comment_text": "", "digests": { "md5": "cb5deffb0913f20c0a937a6edf0a4a7d", "sha256": "63a552a9a550379f50b3eb138586c28da6e07c4e4eff6e81c35c6832e81e2755" }, "downloads": -1, "filename": "schema_salad-4.0.20190130225346-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "cb5deffb0913f20c0a937a6edf0a4a7d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 416076, "upload_time": "2019-01-30T23:48:20", "upload_time_iso_8601": "2019-01-30T23:48:20.318692Z", "url": "https://files.pythonhosted.org/packages/d3/a4/6b1aab5c494adf637066ed7d1b35c80da63b31c4f0a0ad93d2f9c842a07a/schema_salad-4.0.20190130225346-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "39d51c41dd614297216d2137d7b6e795", "sha256": "695c2825dc3d246a63a82228a521a0dcaef48491a20d62ce3028e90fd6ccaaa6" }, "downloads": -1, "filename": "schema-salad-4.0.20190130225346.tar.gz", "has_sig": false, "md5_digest": "39d51c41dd614297216d2137d7b6e795", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 372524, "upload_time": "2019-01-30T23:48:22", "upload_time_iso_8601": "2019-01-30T23:48:22.208903Z", "url": "https://files.pythonhosted.org/packages/85/b7/452d228511fb53c23684b8f6bdfe2e5ed3f43aa3554db59d202e701b0138/schema-salad-4.0.20190130225346.tar.gz", "yanked": false, "yanked_reason": null } ], "4.1.20190221213919": [ { "comment_text": "", "digests": { "md5": "aefa7ee7877f40618ccb8190410eca5c", "sha256": "410efeb9393aafe5938fa95d5793463f6eb41ad46d9c74f343cea95dce2c6178" }, "downloads": -1, "filename": "schema_salad-4.1.20190221213919-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "aefa7ee7877f40618ccb8190410eca5c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 417496, "upload_time": "2019-02-22T14:29:48", "upload_time_iso_8601": "2019-02-22T14:29:48.982879Z", "url": "https://files.pythonhosted.org/packages/f7/4d/4187a1c9da0a91fe7bc3a5c68e8501c94cf7875c7f9d004d13d90c6ca882/schema_salad-4.1.20190221213919-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "08c2bc36f0c8db1daa094b4b53d3d2a8", "sha256": "d12c07599c6f44afc6a5387da30cfcf50113e15615796a52edd7d556f91522d2" }, "downloads": -1, "filename": "schema-salad-4.1.20190221213919.tar.gz", "has_sig": false, "md5_digest": "08c2bc36f0c8db1daa094b4b53d3d2a8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 373726, "upload_time": "2019-02-22T14:29:51", "upload_time_iso_8601": "2019-02-22T14:29:51.453549Z", "url": "https://files.pythonhosted.org/packages/11/4c/a7aabb5cfcec1dedf616a1aade48f3a5c4faa5da0bfd569eb9d0b7460de8/schema-salad-4.1.20190221213919.tar.gz", "yanked": false, "yanked_reason": null } ], "4.1.20190227145202": [ { "comment_text": "", "digests": { "md5": "5a3605a13b55018270d16f05e4780c73", "sha256": "c6246cdd478cf52a59d2c66301f8125dd653c916eb2103cc195d3efc280f7a28" }, "downloads": -1, "filename": "schema_salad-4.1.20190227145202-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "5a3605a13b55018270d16f05e4780c73", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 417509, "upload_time": "2019-02-27T15:14:51", "upload_time_iso_8601": "2019-02-27T15:14:51.989781Z", "url": "https://files.pythonhosted.org/packages/b0/2d/ee89fdab0ef2cdac2953ce2758ae9098bb18176e0add79522ce0392ec718/schema_salad-4.1.20190227145202-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d4fe2616df53773b9dd7c193cd5902fa", "sha256": "f0d678a657641a7be23385eee09c994ff2ed134a1b591366ee73ba831f9ebff7" }, "downloads": -1, "filename": "schema-salad-4.1.20190227145202.tar.gz", "has_sig": false, "md5_digest": "d4fe2616df53773b9dd7c193cd5902fa", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 377682, "upload_time": "2019-02-27T15:14:54", "upload_time_iso_8601": "2019-02-27T15:14:54.793032Z", "url": "https://files.pythonhosted.org/packages/fa/36/54cd0ce0bee46816482f9cf95f767fea61b4bcc9b167339b39a1cd730bd0/schema-salad-4.1.20190227145202.tar.gz", "yanked": false, "yanked_reason": null } ], "4.1.20190305210046": [ { "comment_text": "", "digests": { "md5": "fa823405655aaf884d41df391a850650", "sha256": "731cc2214be4f40e922fe18b9d439d216b25936387932703e0d4d0096854e47b" }, "downloads": -1, "filename": "schema_salad-4.1.20190305210046-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "fa823405655aaf884d41df391a850650", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 417928, "upload_time": "2019-03-05T21:34:10", "upload_time_iso_8601": "2019-03-05T21:34:10.475606Z", "url": "https://files.pythonhosted.org/packages/0b/3e/f98d788397dfe81a4d1e479acaee7d5ab4e3776f4618f17a4be5a4d38873/schema_salad-4.1.20190305210046-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5d7a0916d359e0c3b2236d23a9c1131d", "sha256": "dec809626f215ded7bde4c186f7683062dc586b93572852c289ebdd5667fe86d" }, "downloads": -1, "filename": "schema-salad-4.1.20190305210046.tar.gz", "has_sig": false, "md5_digest": "5d7a0916d359e0c3b2236d23a9c1131d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 376100, "upload_time": "2019-03-05T21:34:12", "upload_time_iso_8601": "2019-03-05T21:34:12.278732Z", "url": "https://files.pythonhosted.org/packages/46/d4/2f3dda1ee7de5203c61c597a9c9214ae2accdef893861b2022529e10f632/schema-salad-4.1.20190305210046.tar.gz", "yanked": false, "yanked_reason": null } ], "4.2.20190417121603": [ { "comment_text": "", "digests": { "md5": "25458989b93fbd5824633685a00138bb", "sha256": "06010647f7dbf29274a3741e6de0c4ee93ec59ad2268ed320d2a84bce8ff4214" }, "downloads": -1, "filename": "schema_salad-4.2.20190417121603-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "25458989b93fbd5824633685a00138bb", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 418369, "upload_time": "2019-04-17T13:03:41", "upload_time_iso_8601": "2019-04-17T13:03:41.636885Z", "url": "https://files.pythonhosted.org/packages/52/43/45d088c050b203a30c6c3d0f24a33c50aa1cd57e8ca9982a173144239f8f/schema_salad-4.2.20190417121603-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2090c83cbbd2fcb6aba9f00a2fac9b17", "sha256": "5242fd7d029172e26a4fa74ecaa04dee434f44f3fa3e99ecff959483dd2c9147" }, "downloads": -1, "filename": "schema-salad-4.2.20190417121603.tar.gz", "has_sig": false, "md5_digest": "2090c83cbbd2fcb6aba9f00a2fac9b17", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 378645, "upload_time": "2019-04-17T13:03:44", "upload_time_iso_8601": "2019-04-17T13:03:44.793951Z", "url": "https://files.pythonhosted.org/packages/dd/ae/b84eb24b166a23d186b499f1bac0fae647ac827db1165691ec516bfbd425/schema-salad-4.2.20190417121603.tar.gz", "yanked": false, "yanked_reason": null } ], "4.3.20190603183756": [ { "comment_text": "", "digests": { "md5": "b940ed39a456240b46feb8aefed3f1b3", "sha256": "0335e3886fc664a760cb0c3ee5b5e790742a7873a7b6f3234f51667c767a860d" }, "downloads": -1, "filename": "schema_salad-4.3.20190603183756-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b940ed39a456240b46feb8aefed3f1b3", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 418733, "upload_time": "2019-06-03T18:47:18", "upload_time_iso_8601": "2019-06-03T18:47:18.544214Z", "url": "https://files.pythonhosted.org/packages/3c/61/365b210daa776d9b1d57ed2dcc23aa1bd0ccfd6c78bb1b0edf6c4628f4b0/schema_salad-4.3.20190603183756-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "76f6af087443251dadeceac2303d19ee", "sha256": "b0a27f93c6dc1ae1cbdb5eff8cf3782be32c64998386e887c4b72488cff73ca3" }, "downloads": -1, "filename": "schema-salad-4.3.20190603183756.tar.gz", "has_sig": false, "md5_digest": "76f6af087443251dadeceac2303d19ee", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 378537, "upload_time": "2019-06-03T18:47:21", "upload_time_iso_8601": "2019-06-03T18:47:21.500030Z", "url": "https://files.pythonhosted.org/packages/74/79/47adaba4f76de66746fb77fe427b92e1a7b29c9a01ee6814259fbf45bbdf/schema-salad-4.3.20190603183756.tar.gz", "yanked": false, "yanked_reason": null } ], "4.3.20190604170443": [ { "comment_text": "", "digests": { "md5": "86a71b3703f126ce7c607bc54f02c083", "sha256": "aa1b4d26a94b562d2175bcd6d352f182336018bcca27df2edb036d2d6e90f074" }, "downloads": -1, "filename": "schema_salad-4.3.20190604170443-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "86a71b3703f126ce7c607bc54f02c083", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 424432, "upload_time": "2019-06-04T17:22:27", "upload_time_iso_8601": "2019-06-04T17:22:27.315613Z", "url": "https://files.pythonhosted.org/packages/41/53/04f3bc4903206d0095d8bfc19d6b24e59da2f4ba6d6b1a61d5c3270c0d8d/schema_salad-4.3.20190604170443-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "713a58d4904a405072d18e32dcd7a718", "sha256": "f481824a3ccc168bf2a431c0a8f822707b2bbbdcfc265b0348890cc4ca04bf35" }, "downloads": -1, "filename": "schema-salad-4.3.20190604170443.tar.gz", "has_sig": false, "md5_digest": "713a58d4904a405072d18e32dcd7a718", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 379531, "upload_time": "2019-06-04T17:22:29", "upload_time_iso_8601": "2019-06-04T17:22:29.703032Z", "url": "https://files.pythonhosted.org/packages/62/12/da7900fd0e4ee2480302362d7429602400f7de8dd9d115c6305a600fe25d/schema-salad-4.3.20190604170443.tar.gz", "yanked": false, "yanked_reason": null } ], "4.4.20190620173027": [ { "comment_text": "", "digests": { "md5": "8c3e651f7cbcd811a49e28b4f93a2192", "sha256": "3b503e9f9af1d1147405fd9502fe63abc3ee406448e14bb3933fe46cceb52dea" }, "downloads": -1, "filename": "schema_salad-4.4.20190620173027-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "8c3e651f7cbcd811a49e28b4f93a2192", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 424592, "upload_time": "2019-06-20T17:41:42", "upload_time_iso_8601": "2019-06-20T17:41:42.931581Z", "url": "https://files.pythonhosted.org/packages/b6/8e/826b5e23a24d819e31dd145790a5004299b9e87f9548f425c9d562767c4b/schema_salad-4.4.20190620173027-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "016c1a917b0528c00cb8e72f5da886d2", "sha256": "02305f448d9f54b6113531fa8a05f2ef63ed4c677d52713d465396f471f4db5c" }, "downloads": -1, "filename": "schema-salad-4.4.20190620173027.tar.gz", "has_sig": false, "md5_digest": "016c1a917b0528c00cb8e72f5da886d2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 379778, "upload_time": "2019-06-20T17:41:45", "upload_time_iso_8601": "2019-06-20T17:41:45.431217Z", "url": "https://files.pythonhosted.org/packages/9b/63/79e97bcafd5094799f5274fee7c6ebf0e7b420d39aecf3669ed207671ae4/schema-salad-4.4.20190620173027.tar.gz", "yanked": false, "yanked_reason": null } ], "4.5.20190621200723": [ { "comment_text": "", "digests": { "md5": "24b070a190aaa6785bb0297f2954c87a", "sha256": "7bf395caa39e75c91bdb749c645052224a1aff9bbff3c63d954a812b8998210c" }, "downloads": -1, "filename": "schema_salad-4.5.20190621200723-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "24b070a190aaa6785bb0297f2954c87a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 426006, "upload_time": "2019-06-21T20:16:59", "upload_time_iso_8601": "2019-06-21T20:16:59.190699Z", "url": "https://files.pythonhosted.org/packages/81/53/9818e47e80f0932e148982fe020ff212316ab9e38fa9d7ba6b0389aedbe4/schema_salad-4.5.20190621200723-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "057e9bc04464e423dcb3cad50a08f0ee", "sha256": "9597cffc48a335f32209d6948b232688ede3f704f3342d89591425eae9f95a98" }, "downloads": -1, "filename": "schema-salad-4.5.20190621200723.tar.gz", "has_sig": false, "md5_digest": "057e9bc04464e423dcb3cad50a08f0ee", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 380521, "upload_time": "2019-06-21T20:17:01", "upload_time_iso_8601": "2019-06-21T20:17:01.610784Z", "url": "https://files.pythonhosted.org/packages/95/28/ccb537276b2d9122a017c0f8e409e67ef877eee2ea6364c5a4df4f646b9f/schema-salad-4.5.20190621200723.tar.gz", "yanked": false, "yanked_reason": null } ], "4.5.20190729164411": [ { "comment_text": "", "digests": { "md5": "9dd7184879d748ca9d5f463f1fdc4878", "sha256": "5dca84609c477c287dca054db6a307bc5098f85a64ca3c0d3a8b69390688961f" }, "downloads": -1, "filename": "schema_salad-4.5.20190729164411-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "9dd7184879d748ca9d5f463f1fdc4878", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 428152, "upload_time": "2019-08-13T16:50:11", "upload_time_iso_8601": "2019-08-13T16:50:11.337543Z", "url": "https://files.pythonhosted.org/packages/f9/d9/9065de2d01389d29be72a035160579cde5277167a87f00cb5d35b1a1f8b4/schema_salad-4.5.20190729164411-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8f1b96fef6c13897ed54c115e57367ae", "sha256": "84c6764462c17cbd9ac6404b0422640083fe96ece3e290d3477f9147ed4b721b" }, "downloads": -1, "filename": "schema-salad-4.5.20190729164411.tar.gz", "has_sig": false, "md5_digest": "8f1b96fef6c13897ed54c115e57367ae", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 387029, "upload_time": "2019-08-13T16:50:14", "upload_time_iso_8601": "2019-08-13T16:50:14.655704Z", "url": "https://files.pythonhosted.org/packages/31/b7/2478c2aa2dd57696f0a6c220b9144afaa9ad3e5bec363958cff8a47f93a6/schema-salad-4.5.20190729164411.tar.gz", "yanked": false, "yanked_reason": null } ], "4.5.20190815125611": [ { "comment_text": "", "digests": { "md5": "22362de3d8eecd9561d092f5ce597e6d", "sha256": "28be25feb5f1292b2322588799dd7daf2feb889429611a9dc0a1128ef9f25251" }, "downloads": -1, "filename": "schema_salad-4.5.20190815125611-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "22362de3d8eecd9561d092f5ce597e6d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 428526, "upload_time": "2019-08-15T13:11:34", "upload_time_iso_8601": "2019-08-15T13:11:34.636404Z", "url": "https://files.pythonhosted.org/packages/f6/c6/53b55e824b586958ea0bea3c5e8553ceb8921aa9f54446c83a0b22f923c1/schema_salad-4.5.20190815125611-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3fccf9098bfd4e76621e36a823d69a4d", "sha256": "4af2c0cb6e473784d42ab76068392ae0397ee3c68cb8a68fa1f4a15c8f36bd89" }, "downloads": -1, "filename": "schema-salad-4.5.20190815125611.tar.gz", "has_sig": false, "md5_digest": "3fccf9098bfd4e76621e36a823d69a4d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 387407, "upload_time": "2019-08-15T13:11:37", "upload_time_iso_8601": "2019-08-15T13:11:37.937651Z", "url": "https://files.pythonhosted.org/packages/9c/01/fdf98af5ed4c5d84e4bdb9bd8578992ddcca0f704eae384101f6dde38c2c/schema-salad-4.5.20190815125611.tar.gz", "yanked": false, "yanked_reason": null } ], "4.5.20190906201758": [ { "comment_text": "", "digests": { "md5": "19d061fba2bff010f36e057856b5a6c0", "sha256": "93c6ddbf130d82aab1f9b0cca8e8822b003aa534b791f64bcc34d4968126588f" }, "downloads": -1, "filename": "schema_salad-4.5.20190906201758-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "19d061fba2bff010f36e057856b5a6c0", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 428310, "upload_time": "2019-09-06T20:34:23", "upload_time_iso_8601": "2019-09-06T20:34:23.209949Z", "url": "https://files.pythonhosted.org/packages/a2/14/8d3ac644028c62d7f9b823f06b617c2f42deb58846eb1fc672ec6545effe/schema_salad-4.5.20190906201758-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f11b5c828537c0bc3669cc4d8dc082e9", "sha256": "273207632654d70bfb9488cad45649d6895a6314bd27c68a13a048325a40495a" }, "downloads": -1, "filename": "schema-salad-4.5.20190906201758.tar.gz", "has_sig": false, "md5_digest": "f11b5c828537c0bc3669cc4d8dc082e9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 382604, "upload_time": "2019-09-06T20:34:25", "upload_time_iso_8601": "2019-09-06T20:34:25.333860Z", "url": "https://files.pythonhosted.org/packages/4e/02/da006cedc17d538bdba3f884d01b2b29590964ce2065e7351a32da0628d4/schema-salad-4.5.20190906201758.tar.gz", "yanked": false, "yanked_reason": null } ], "4.5.20191017101802": [ { "comment_text": "", "digests": { "md5": "212db8a4b7b3995ea155a8aa41724ce5", "sha256": "7315ae1d631c988061eb02cf79a0d80078e1ebead95298bbdda34468d202db07" }, "downloads": -1, "filename": "schema_salad-4.5.20191017101802-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "212db8a4b7b3995ea155a8aa41724ce5", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 428782, "upload_time": "2019-10-22T15:40:28", "upload_time_iso_8601": "2019-10-22T15:40:28.389618Z", "url": "https://files.pythonhosted.org/packages/8f/bf/76c649ba1690d7ddbdfeac0ee24a9286e1fb2cbaba882fcee7fe70884e6e/schema_salad-4.5.20191017101802-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f835a3dfc432689f55820f0bc64ed734", "sha256": "2f5f3d4fb647c89b7f958cfb2b31875c0e2cbc3482dccde5e6aecd16e1481280" }, "downloads": -1, "filename": "schema-salad-4.5.20191017101802.tar.gz", "has_sig": false, "md5_digest": "f835a3dfc432689f55820f0bc64ed734", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 387406, "upload_time": "2019-10-22T15:40:32", "upload_time_iso_8601": "2019-10-22T15:40:32.144868Z", "url": "https://files.pythonhosted.org/packages/5b/28/6058058067407edf16df489d2ed329a76a20bbd468ef848ba701ddf672e0/schema-salad-4.5.20191017101802.tar.gz", "yanked": false, "yanked_reason": null } ], "4.5.20191023134839": [ { "comment_text": "", "digests": { "md5": "80d4decb637fc9cbab32a11d2a9946af", "sha256": "fe7b3e25a412910ec6ee9d09dbac2c16094e186a1940b55d6d9ec0169d98fc75" }, "downloads": -1, "filename": "schema_salad-4.5.20191023134839-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "80d4decb637fc9cbab32a11d2a9946af", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 428780, "upload_time": "2019-10-23T14:12:12", "upload_time_iso_8601": "2019-10-23T14:12:12.133161Z", "url": "https://files.pythonhosted.org/packages/74/6d/d61a4bd141b849e42bd6a4fe57d63098a3357f1602f9efe405111db85b73/schema_salad-4.5.20191023134839-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1b404056d107be4ce87122362277d5dd", "sha256": "8ccd649c0431bef071812548186e22d5512ef570863e950edeeee76aa12fa4e3" }, "downloads": -1, "filename": "schema-salad-4.5.20191023134839.tar.gz", "has_sig": false, "md5_digest": "1b404056d107be4ce87122362277d5dd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 387396, "upload_time": "2019-10-23T14:12:16", "upload_time_iso_8601": "2019-10-23T14:12:16.124983Z", "url": "https://files.pythonhosted.org/packages/0b/eb/8fd0c7a0e6066cb7c4b9f22791a74f85e60df663dfc7c13545f8905c412b/schema-salad-4.5.20191023134839.tar.gz", "yanked": false, "yanked_reason": null } ], "4.5.20191203162929": [ { "comment_text": "", "digests": { "md5": "cb0f89290db22ce36d8465d800cf9470", "sha256": "764b5cb6f1290fde93cee09b2da47a48a32e784f966d9d4f600c2cae25805d98" }, "downloads": -1, "filename": "schema_salad-4.5.20191203162929-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "cb0f89290db22ce36d8465d800cf9470", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 458330, "upload_time": "2019-12-03T16:52:28", "upload_time_iso_8601": "2019-12-03T16:52:28.393886Z", "url": "https://files.pythonhosted.org/packages/92/a8/8ed20c5eac12674ddc630060a864e42f5c4e10eb766dcfeded45fcef1fed/schema_salad-4.5.20191203162929-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a4b07b32693defa710f36c4162ca2e4b", "sha256": "64c2dbb2a2b59bf5b1c342cd11e8b4e2da00aedcb77e57db870c1054fa59306b" }, "downloads": -1, "filename": "schema-salad-4.5.20191203162929.tar.gz", "has_sig": false, "md5_digest": "a4b07b32693defa710f36c4162ca2e4b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 404890, "upload_time": "2019-12-03T16:52:31", "upload_time_iso_8601": "2019-12-03T16:52:31.290136Z", "url": "https://files.pythonhosted.org/packages/aa/b8/b055caf9506ca290014772e36ebad6043b9905a65f3041a90b94745afca1/schema-salad-4.5.20191203162929.tar.gz", "yanked": false, "yanked_reason": null } ], "4.5.20191204060541": [ { "comment_text": "", "digests": { "md5": "0e0e833df06d3940f4fd01798b2288bd", "sha256": "838db80cc72f6da02affbcaa0fcfac41fb6012133f9fc34b9ab08e59d7880f98" }, "downloads": -1, "filename": "schema_salad-4.5.20191204060541-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "0e0e833df06d3940f4fd01798b2288bd", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 458316, "upload_time": "2019-12-04T08:01:47", "upload_time_iso_8601": "2019-12-04T08:01:47.050384Z", "url": "https://files.pythonhosted.org/packages/ae/a5/3c51b232a37aec7fe3fe7d6d32c2fdf972abe30bea5129629940d7902fdb/schema_salad-4.5.20191204060541-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a2947eb9663d13785f6291207195a941", "sha256": "650bde48e62f5c9a886b77c661fe7089420a4845e9929d2e738d4582f3d95e25" }, "downloads": -1, "filename": "schema-salad-4.5.20191204060541.tar.gz", "has_sig": false, "md5_digest": "a2947eb9663d13785f6291207195a941", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 404920, "upload_time": "2019-12-04T08:01:50", "upload_time_iso_8601": "2019-12-04T08:01:50.650785Z", "url": "https://files.pythonhosted.org/packages/e7/a8/62fe4a2c480d9143a5a8365ce31ac1b0feb7b17da2f69aa72c7b3cf4aa65/schema-salad-4.5.20191204060541.tar.gz", "yanked": false, "yanked_reason": null } ], "4.5.20191229160203": [ { "comment_text": "", "digests": { "md5": "056c60c1593676e51e27cfeff61d5672", "sha256": "222bad3746554b8c544dd203ffae4cff2e69575736fbab910c1c2f2fa605b8eb" }, "downloads": -1, "filename": "schema_salad-4.5.20191229160203-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "056c60c1593676e51e27cfeff61d5672", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 459019, "upload_time": "2019-12-29T16:15:44", "upload_time_iso_8601": "2019-12-29T16:15:44.729338Z", "url": "https://files.pythonhosted.org/packages/c6/99/8388626abcac2a026d2c32045526e190bb4a7d69791500ea55d1968d591f/schema_salad-4.5.20191229160203-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3b50d36a19c5b3a1ccaa92051ec0ff35", "sha256": "fce45d4f4575c0783c18694fdaf5fde5193768829c2d211baa75fa0fa22a6933" }, "downloads": -1, "filename": "schema-salad-4.5.20191229160203.tar.gz", "has_sig": false, "md5_digest": "3b50d36a19c5b3a1ccaa92051ec0ff35", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 405196, "upload_time": "2019-12-29T16:15:47", "upload_time_iso_8601": "2019-12-29T16:15:47.817780Z", "url": "https://files.pythonhosted.org/packages/bd/12/2665c77c405925ab1751b0868750e8c8ea3a02346dfe1673fbf96c5f1945/schema-salad-4.5.20191229160203.tar.gz", "yanked": false, "yanked_reason": null } ], "5.0.20200105154004": [ { "comment_text": "", "digests": { "md5": "f087011f7f2f538f4c4185020eb14dd6", "sha256": "569cdcd4f167e34edee69f835fc78a9b75930df95e7bb3be4e52e59c09e4cee8" }, "downloads": -1, "filename": "schema_salad-5.0.20200105154004-py3-none-any.whl", "has_sig": false, "md5_digest": "f087011f7f2f538f4c4185020eb14dd6", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 456857, "upload_time": "2020-01-05T15:47:12", "upload_time_iso_8601": "2020-01-05T15:47:12.241619Z", "url": "https://files.pythonhosted.org/packages/43/4c/87fe25504283ee5febbb0ec11f416429526b9cdd18ae405d4f18d48594a9/schema_salad-5.0.20200105154004-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "31638c5696b75895787540bafc27f861", "sha256": "cdcef470a36eb047fc98bcebb08ba5f93f64ba0b2e27bad009f98ebc3810ac12" }, "downloads": -1, "filename": "schema-salad-5.0.20200105154004.tar.gz", "has_sig": false, "md5_digest": "31638c5696b75895787540bafc27f861", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 402145, "upload_time": "2020-01-05T15:47:15", "upload_time_iso_8601": "2020-01-05T15:47:15.253831Z", "url": "https://files.pythonhosted.org/packages/36/46/b7047b7dad12a8c74c54c414048cd693de33d4ac336731d93bc7a3bd2c63/schema-salad-5.0.20200105154004.tar.gz", "yanked": false, "yanked_reason": null } ], "5.0.20200122085940": [ { "comment_text": "", "digests": { "md5": "279bd7eea2e2d918f0d9e8ba32b8ec4c", "sha256": "b55f3042f83ebc2d114e892f6bf2641d463bf47cba1bf8a25533f79c6f1c6a0c" }, "downloads": -1, "filename": "schema_salad-5.0.20200122085940-py3-none-any.whl", "has_sig": false, "md5_digest": "279bd7eea2e2d918f0d9e8ba32b8ec4c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 456857, "upload_time": "2020-01-22T09:06:07", "upload_time_iso_8601": "2020-01-22T09:06:07.034607Z", "url": "https://files.pythonhosted.org/packages/aa/4f/e9a57201e016cb1923bf68a8061e1c707c9b4570824f026149a327f2d13e/schema_salad-5.0.20200122085940-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8067ede7c342fe283bdd3e441b17b473", "sha256": "7efd2c536c356c903eee63e0e846858fae2add71d7db253b10043404bf408798" }, "downloads": -1, "filename": "schema-salad-5.0.20200122085940.tar.gz", "has_sig": false, "md5_digest": "8067ede7c342fe283bdd3e441b17b473", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 402168, "upload_time": "2020-01-22T09:06:09", "upload_time_iso_8601": "2020-01-22T09:06:09.707185Z", "url": "https://files.pythonhosted.org/packages/25/59/9d4cf3dec9c8b44b529e9ffa1519cd73d3d452263ffda1ec71e617ac7969/schema-salad-5.0.20200122085940.tar.gz", "yanked": false, "yanked_reason": null } ], "5.0.20200126033820": [ { "comment_text": "", "digests": { "md5": "1acb03f1717d32f690baec57761ef681", "sha256": "927b161ee68047d9aa81f993d385e8343db71fc4d75602ec91953c8f48481c91" }, "downloads": -1, "filename": "schema_salad-5.0.20200126033820-py3-none-any.whl", "has_sig": false, "md5_digest": "1acb03f1717d32f690baec57761ef681", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 456945, "upload_time": "2020-01-26T05:19:19", "upload_time_iso_8601": "2020-01-26T05:19:19.721951Z", "url": "https://files.pythonhosted.org/packages/d2/f8/ae5b9ebab17f25e419095802148036365b998714e0724aa2d5b0a3e8c1b3/schema_salad-5.0.20200126033820-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "073357a721052fb46ab4f80f9895fe67", "sha256": "a6ad801d3350c26dfd6da89745ae2dbbac3606074c750984bf4bd0fccab2750f" }, "downloads": -1, "filename": "schema-salad-5.0.20200126033820.tar.gz", "has_sig": false, "md5_digest": "073357a721052fb46ab4f80f9895fe67", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 402296, "upload_time": "2020-01-26T05:19:22", "upload_time_iso_8601": "2020-01-26T05:19:22.094858Z", "url": "https://files.pythonhosted.org/packages/47/7f/96db2de70be09370d91cc00acb945b8fb177aab0edd12745ba94f34e9d27/schema-salad-5.0.20200126033820.tar.gz", "yanked": false, "yanked_reason": null } ], "5.0.20200220195218": [ { "comment_text": "", "digests": { "md5": "7bb56146df18543bae05cea1254e63bc", "sha256": "e707fc849e19c48ff3d06c0fed3dcba7b7c5b5e763d2d3377de225351b1fcb26" }, "downloads": -1, "filename": "schema_salad-5.0.20200220195218-py3-none-any.whl", "has_sig": false, "md5_digest": "7bb56146df18543bae05cea1254e63bc", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 457536, "upload_time": "2020-02-20T21:07:12", "upload_time_iso_8601": "2020-02-20T21:07:12.559664Z", "url": "https://files.pythonhosted.org/packages/56/c3/c9333fab06698ae4bd5c40b3d4e75287fe25e57ccfd4b6c01bb077050423/schema_salad-5.0.20200220195218-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3736c1c20bccf9f465e71b1c6dacc32a", "sha256": "1c916cfeec2156c60b775a14e3cd91225fe4aa0e34fea33012e23db246e0be9d" }, "downloads": -1, "filename": "schema-salad-5.0.20200220195218.tar.gz", "has_sig": false, "md5_digest": "3736c1c20bccf9f465e71b1c6dacc32a", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 402543, "upload_time": "2020-02-20T21:07:14", "upload_time_iso_8601": "2020-02-20T21:07:14.850470Z", "url": "https://files.pythonhosted.org/packages/fc/c3/e540575da0db117e51f007a6e4797fdbf8114d5d3412d7cbcf547d91b6ad/schema-salad-5.0.20200220195218.tar.gz", "yanked": false, "yanked_reason": null } ], "5.0.20200302192450": [ { "comment_text": "", "digests": { "md5": "84d92e978acf5a5b834629b7312e2cba", "sha256": "f5944760684dac1dbb8adbb8d6116f6dd50184894dfc9bae3e4827b6e78d28ae" }, "downloads": -1, "filename": "schema_salad-5.0.20200302192450-py3-none-any.whl", "has_sig": false, "md5_digest": "84d92e978acf5a5b834629b7312e2cba", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 457585, "upload_time": "2020-03-02T19:55:24", "upload_time_iso_8601": "2020-03-02T19:55:24.634184Z", "url": "https://files.pythonhosted.org/packages/a5/63/b9fd23b236eed04fd8fddee046fed6b582861e8e570623fcf534418d07f2/schema_salad-5.0.20200302192450-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5e5cd0c83b2944f994fb75dcb88276f3", "sha256": "6347d694b5127f31f91cbdf811dfaac293dea57f297e2ed5c5aadd6dadab7893" }, "downloads": -1, "filename": "schema-salad-5.0.20200302192450.tar.gz", "has_sig": false, "md5_digest": "5e5cd0c83b2944f994fb75dcb88276f3", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 402712, "upload_time": "2020-03-02T19:56:07", "upload_time_iso_8601": "2020-03-02T19:56:07.203254Z", "url": "https://files.pythonhosted.org/packages/be/2a/f6532007865add2879d6abd147c1a0bf493b92e2fbfe390bfc43df964e8e/schema-salad-5.0.20200302192450.tar.gz", "yanked": false, "yanked_reason": null } ], "5.0.20200416112825": [ { "comment_text": "", "digests": { "md5": "dc8004b79a8305763f0213307dd38b8a", "sha256": "f86cb0ddf815ee0ec010cf816d7643730a8e74b9709a5cd71f02d771ef8700c8" }, "downloads": -1, "filename": "schema_salad-5.0.20200416112825-py3-none-any.whl", "has_sig": false, "md5_digest": "dc8004b79a8305763f0213307dd38b8a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 457584, "upload_time": "2020-04-16T11:34:29", "upload_time_iso_8601": "2020-04-16T11:34:29.342354Z", "url": "https://files.pythonhosted.org/packages/a1/40/e5151aafbb8f7d2bf393ad54d57d27d285958510f49a27bca66f4b29b09d/schema_salad-5.0.20200416112825-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cfef8a4e9db16f65bbbf2dcb81ba8eac", "sha256": "5fd7b959d5f23ec8554aafc360f0584896f9f0d6f0db0d38c884676c8cc0a6de" }, "downloads": -1, "filename": "schema-salad-5.0.20200416112825.tar.gz", "has_sig": false, "md5_digest": "cfef8a4e9db16f65bbbf2dcb81ba8eac", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 402597, "upload_time": "2020-04-16T11:34:31", "upload_time_iso_8601": "2020-04-16T11:34:31.610780Z", "url": "https://files.pythonhosted.org/packages/93/84/1180ccba38ac3aa0a2799cbadd251e46254598cc04c1981435675aaad9ee/schema-salad-5.0.20200416112825.tar.gz", "yanked": false, "yanked_reason": null } ], "6.0.20200523200656": [ { "comment_text": "", "digests": { "md5": "9266f0d94ccf137b1bac13c32a3e8d64", "sha256": "abbe9472ff4e208d6ddbda29624de75178897de0fa8da9d50c4abc2089b4263c" }, "downloads": -1, "filename": "schema_salad-6.0.20200523200656-py3-none-any.whl", "has_sig": false, "md5_digest": "9266f0d94ccf137b1bac13c32a3e8d64", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 458893, "upload_time": "2020-05-23T20:36:58", "upload_time_iso_8601": "2020-05-23T20:36:58.775067Z", "url": "https://files.pythonhosted.org/packages/38/cf/a95685851c0c6fd2c7fed76097b6283b4af8aa50832c5256ad43d9569732/schema_salad-6.0.20200523200656-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "75811269867573b00bfc8c6eea7c9aa3", "sha256": "28f7075889930518008ac87bc645aee88d74377f96e51f5566abc7b8367b1e25" }, "downloads": -1, "filename": "schema-salad-6.0.20200523200656.tar.gz", "has_sig": false, "md5_digest": "75811269867573b00bfc8c6eea7c9aa3", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 408490, "upload_time": "2020-05-23T20:37:00", "upload_time_iso_8601": "2020-05-23T20:37:00.671221Z", "url": "https://files.pythonhosted.org/packages/a3/5c/a91b60f51ae136ee0b52fedf0bedd2a7c29cbbb270c6fac495a9188ff410/schema-salad-6.0.20200523200656.tar.gz", "yanked": false, "yanked_reason": null } ], "6.0.20200601095207": [ { "comment_text": "", "digests": { "md5": "1df0554baefb67c80bbb8576bfd34870", "sha256": "11928805f04d24902463912ad03ffb54f18219910b55e0c064886dcc3313596b" }, "downloads": -1, "filename": "schema_salad-6.0.20200601095207-py3-none-any.whl", "has_sig": false, "md5_digest": "1df0554baefb67c80bbb8576bfd34870", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 458973, "upload_time": "2020-06-01T09:58:29", "upload_time_iso_8601": "2020-06-01T09:58:29.454911Z", "url": "https://files.pythonhosted.org/packages/0d/87/6d05639b39219f9512b1746a0e9f3f8e86d074d2c8db01772c19cc8651ef/schema_salad-6.0.20200601095207-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bb42072be056f7e2acc799abb14859d0", "sha256": "3d59ab3e08a83ff97ea0cf40ceed19e4e48f7cfece6c66d9376b8b59e2337602" }, "downloads": -1, "filename": "schema-salad-6.0.20200601095207.tar.gz", "has_sig": false, "md5_digest": "bb42072be056f7e2acc799abb14859d0", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 404094, "upload_time": "2020-06-01T09:58:31", "upload_time_iso_8601": "2020-06-01T09:58:31.845400Z", "url": "https://files.pythonhosted.org/packages/db/de/b3dfcb4d84d181a2f4d9c1da1fef73f869e4fd3f63af7b0596a1d124f0aa/schema-salad-6.0.20200601095207.tar.gz", "yanked": false, "yanked_reason": null } ], "7.0.20200612160654": [ { "comment_text": "", "digests": { "md5": "f08f52f2672c0e56625c7806677c7c3c", "sha256": "097930860105b0e401f123b349942691626e7fa0c77311f3f64850721d3ae357" }, "downloads": -1, "filename": "schema_salad-7.0.20200612160654-py3-none-any.whl", "has_sig": false, "md5_digest": "f08f52f2672c0e56625c7806677c7c3c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 459425, "upload_time": "2020-06-12T16:16:24", "upload_time_iso_8601": "2020-06-12T16:16:24.754589Z", "url": "https://files.pythonhosted.org/packages/1d/cf/6c8ceb5fc778e5dc8ea4b5dbbcfb692a506941854d1a256954c7c490fa3c/schema_salad-7.0.20200612160654-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1cd7b90662f85da69323616a11bb329e", "sha256": "3a0d26c5658db4766909ddd3ec0bbb032329c1abd5c272a436cc4d67161daa96" }, "downloads": -1, "filename": "schema-salad-7.0.20200612160654.tar.gz", "has_sig": false, "md5_digest": "1cd7b90662f85da69323616a11bb329e", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 408710, "upload_time": "2020-06-12T16:16:26", "upload_time_iso_8601": "2020-06-12T16:16:26.637271Z", "url": "https://files.pythonhosted.org/packages/5c/8c/52799abba358bf0c2bea735c356eb7b2000c844f028dab7b16d047b26470/schema-salad-7.0.20200612160654.tar.gz", "yanked": false, "yanked_reason": null } ], "7.0.20200811075006": [ { "comment_text": "", "digests": { "md5": "127bab3ddfc621c2cece86cfd63b4a1b", "sha256": "9d4e99e6024eda2e84355f0641e3f08ba060e5cdfb2dc519cf8f775462e11f0f" }, "downloads": -1, "filename": "schema_salad-7.0.20200811075006-py3-none-any.whl", "has_sig": false, "md5_digest": "127bab3ddfc621c2cece86cfd63b4a1b", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 460867, "upload_time": "2020-08-11T07:58:32", "upload_time_iso_8601": "2020-08-11T07:58:32.654804Z", "url": "https://files.pythonhosted.org/packages/0b/d2/044b8fab391b169c9bcc6ea687e9ae32ebb6386be48b8a01357e951a5156/schema_salad-7.0.20200811075006-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8f8e8fd62b0b1107fd456521b7182d9c", "sha256": "6f0124bd2112e9deff8ecfda8917cf286bb7e38596a90d6ae80985852b5f5671" }, "downloads": -1, "filename": "schema-salad-7.0.20200811075006.tar.gz", "has_sig": false, "md5_digest": "8f8e8fd62b0b1107fd456521b7182d9c", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 409685, "upload_time": "2020-08-11T07:58:34", "upload_time_iso_8601": "2020-08-11T07:58:34.800021Z", "url": "https://files.pythonhosted.org/packages/5c/f9/c5f3295bdf0d19ae727549a28c0910b2cac12bbb21eeb592315ad1f12939/schema-salad-7.0.20200811075006.tar.gz", "yanked": false, "yanked_reason": null } ], "7.0.20201119201711": [ { "comment_text": "", "digests": { "md5": "bbcf771a84821e7f0a07e1720ce6a008", "sha256": "a80ed85a74a5e5c5b9d6c14531dea9217ede6e83756f77e8940c87761c309423" }, "downloads": -1, "filename": "schema_salad-7.0.20201119201711-py3-none-any.whl", "has_sig": false, "md5_digest": "bbcf771a84821e7f0a07e1720ce6a008", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 468261, "upload_time": "2020-12-02T09:33:26", "upload_time_iso_8601": "2020-12-02T09:33:26.869951Z", "url": "https://files.pythonhosted.org/packages/8c/94/325b045355386efc6344ed6f2e766c078cb687344f2414a604b3ab65ee28/schema_salad-7.0.20201119201711-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "84d9aa526760fb2bc590fa401d30e86e", "sha256": "a40730275190b4eb892ccf164d07155a63ff1a3cddb43172ef930254742fc5bc" }, "downloads": -1, "filename": "schema-salad-7.0.20201119201711.tar.gz", "has_sig": false, "md5_digest": "84d9aa526760fb2bc590fa401d30e86e", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 415167, "upload_time": "2020-12-02T09:33:28", "upload_time_iso_8601": "2020-12-02T09:33:28.661625Z", "url": "https://files.pythonhosted.org/packages/53/06/1cfdfe0bfdb9f28eed8bca2306cdc972a49c8438ad4a6c846e73556e2fc5/schema-salad-7.0.20201119201711.tar.gz", "yanked": false, "yanked_reason": null } ], "7.0.20210124093443": [ { "comment_text": "", "digests": { "md5": "a9a033df99adb404284ebd5a919a19b8", "sha256": "fed287837e28fbdb61b78899f0c422bf44a9177d44dc70487e031f0a76a16c09" }, "downloads": -1, "filename": "schema_salad-7.0.20210124093443-py3-none-any.whl", "has_sig": false, "md5_digest": "a9a033df99adb404284ebd5a919a19b8", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 469245, "upload_time": "2021-01-24T10:07:23", "upload_time_iso_8601": "2021-01-24T10:07:23.275293Z", "url": "https://files.pythonhosted.org/packages/2a/b4/c70c1967ebe47961aaa684458fda2ef19f345143b2e523bbffcec32dbac9/schema_salad-7.0.20210124093443-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f7be0d528e67ba8be8aaf4f23cbe5518", "sha256": "a73f936210aac0a8ab8cb5050b38bf1c8323fe296f7b7c8c01fb3fe5b0090600" }, "downloads": -1, "filename": "schema-salad-7.0.20210124093443.tar.gz", "has_sig": false, "md5_digest": "f7be0d528e67ba8be8aaf4f23cbe5518", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 412696, "upload_time": "2021-01-24T10:07:25", "upload_time_iso_8601": "2021-01-24T10:07:25.410723Z", "url": "https://files.pythonhosted.org/packages/e2/23/fb187b0f19615e2627a2cf4fa12d38bd013a35941448610a932ddab2edeb/schema-salad-7.0.20210124093443.tar.gz", "yanked": false, "yanked_reason": null } ], "7.1.20210309094900": [ { "comment_text": "", "digests": { "md5": "dbc9b8963f9aaedcde1d940ff2a306d3", "sha256": "cd476fcf773096ebfa73ebe4bcd92eacd0eed2b29e4a5a3408412deecdde582e" }, "downloads": -1, "filename": "schema_salad-7.1.20210309094900-py3-none-any.whl", "has_sig": false, "md5_digest": "dbc9b8963f9aaedcde1d940ff2a306d3", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 471797, "upload_time": "2021-03-09T09:53:14", "upload_time_iso_8601": "2021-03-09T09:53:14.458340Z", "url": "https://files.pythonhosted.org/packages/be/5f/aedd083d1bdff7b0662da1bf463c32a9e4949d334faf6ab2d140e6b08191/schema_salad-7.1.20210309094900-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f71b5b221d0b2f602b3f27d02e27b816", "sha256": "2593129052324bb1406c039d36e84ed01447d610748193bbe8de4d61ff4d9d97" }, "downloads": -1, "filename": "schema-salad-7.1.20210309094900.tar.gz", "has_sig": false, "md5_digest": "f71b5b221d0b2f602b3f27d02e27b816", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 418445, "upload_time": "2021-03-09T09:53:16", "upload_time_iso_8601": "2021-03-09T09:53:16.626787Z", "url": "https://files.pythonhosted.org/packages/3b/4f/634d43da52c8b1cbc5c553382ea58c7544d925220f43a3f79bd653ab3635/schema-salad-7.1.20210309094900.tar.gz", "yanked": false, "yanked_reason": null } ], "7.1.20210316164414": [ { "comment_text": "", "digests": { "md5": "2ad227e25c71cde86d583ea513eb78ca", "sha256": "4384f75d6649f38cef406c522ee2b0d800ccbe85deda1d1f19bbf5ac3f3eaa3c" }, "downloads": -1, "filename": "schema_salad-7.1.20210316164414-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "2ad227e25c71cde86d583ea513eb78ca", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 2255898, "upload_time": "2021-03-17T11:27:22", "upload_time_iso_8601": "2021-03-17T11:27:22.363136Z", "url": "https://files.pythonhosted.org/packages/4b/ab/2679f3e9e1ef3f2931b2160b44d1b6f64fd0cbe0e08d33ee5435a4434cf9/schema_salad-7.1.20210316164414-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a5e29209a788b5e88e62dc8ec203b198", "sha256": "6c2de83ee47ec0de26f7f6fe79d2a015abf3cfb7c1eaa214290d5d4dace093ca" }, "downloads": -1, "filename": "schema_salad-7.1.20210316164414-cp36-cp36m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "a5e29209a788b5e88e62dc8ec203b198", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 2255902, "upload_time": "2021-03-17T11:27:23", "upload_time_iso_8601": "2021-03-17T11:27:23.491546Z", "url": "https://files.pythonhosted.org/packages/6e/09/8f75ff0c75f591b59b4686990ab85c6c61be5adb6de1ec57c261e098e661/schema_salad-7.1.20210316164414-cp36-cp36m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d3d99a40abe970aacff723b7acb7cdda", "sha256": "53e6bb1565b2be9c2e6e60e82811eba4c523f7142a9ad806113d00dfd84b22b2" }, "downloads": -1, "filename": "schema_salad-7.1.20210316164414-cp36-cp36m-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "d3d99a40abe970aacff723b7acb7cdda", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 2252716, "upload_time": "2021-03-17T11:27:24", "upload_time_iso_8601": "2021-03-17T11:27:24.838624Z", "url": "https://files.pythonhosted.org/packages/48/fb/45721d0dee927983a836b69ac71bc9f1b8de7d6b116294638bc768459495/schema_salad-7.1.20210316164414-cp36-cp36m-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "615b55ed5d98dec67c32279c82fe4783", "sha256": "081b1413a662d391508c2ddfce2890f8af4e4f7a85345ed423f27b0e1c3a79d8" }, "downloads": -1, "filename": "schema_salad-7.1.20210316164414-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "615b55ed5d98dec67c32279c82fe4783", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 2271472, "upload_time": "2021-03-17T11:27:26", "upload_time_iso_8601": "2021-03-17T11:27:26.050786Z", "url": "https://files.pythonhosted.org/packages/34/44/36261c3b2e54ec5095162d7cd696dacaafa0617a741004a7210367bc3848/schema_salad-7.1.20210316164414-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "93b64cd92101c4a184ebfe631f6ea5c6", "sha256": "9e2ba0710c90449f2bf653a98e97db92f864e0128dfea77c4d26a201a8ad0353" }, "downloads": -1, "filename": "schema_salad-7.1.20210316164414-cp37-cp37m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "93b64cd92101c4a184ebfe631f6ea5c6", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 2271475, "upload_time": "2021-03-17T11:27:27", "upload_time_iso_8601": "2021-03-17T11:27:27.009947Z", "url": "https://files.pythonhosted.org/packages/d1/78/123a118627b77583d42f60f70c670444b947b3243a886b89f6909b3f7e61/schema_salad-7.1.20210316164414-cp37-cp37m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7650291f78572709ea16e0ecddc47f51", "sha256": "7a362eae65cbde8f2aa1bd6d856406a0079adb518c731c92ff1e17f6f29270b1" }, "downloads": -1, "filename": "schema_salad-7.1.20210316164414-cp37-cp37m-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "7650291f78572709ea16e0ecddc47f51", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 2269106, "upload_time": "2021-03-17T11:27:28", "upload_time_iso_8601": "2021-03-17T11:27:28.297768Z", "url": "https://files.pythonhosted.org/packages/a8/23/38520414d61b2e8e40d0b2fd275dc94d271af4ab3511f24a4fb74c3e48fc/schema_salad-7.1.20210316164414-cp37-cp37m-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "75039ce7f7316763e942c7c4383cea86", "sha256": "f0cb6de96e5fbc997ae1a1d89ace39e54bd297823b165f6dc908e568f0e42f0e" }, "downloads": -1, "filename": "schema_salad-7.1.20210316164414-cp38-cp38-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "75039ce7f7316763e942c7c4383cea86", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 2389744, "upload_time": "2021-03-17T11:27:29", "upload_time_iso_8601": "2021-03-17T11:27:29.579441Z", "url": "https://files.pythonhosted.org/packages/57/fe/b578bfb526995b2d5007efbd761a6f95290607dcd2b62ae2047fa28cf9a9/schema_salad-7.1.20210316164414-cp38-cp38-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ff0e6d0bab6446156b3914c76a43de4b", "sha256": "f712cf40fd185eae6c0ddcea6d8de7a0674e5e148ed928548e471fa3df3040fe" }, "downloads": -1, "filename": "schema_salad-7.1.20210316164414-cp38-cp38-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "ff0e6d0bab6446156b3914c76a43de4b", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 2389748, "upload_time": "2021-03-17T11:27:30", "upload_time_iso_8601": "2021-03-17T11:27:30.934672Z", "url": "https://files.pythonhosted.org/packages/04/6b/73715905d3d058629f751ebe3a2116bd2bfaeff67f979113a14715a423e4/schema_salad-7.1.20210316164414-cp38-cp38-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5d3435fdfa821e8cfe50f80f581c391c", "sha256": "d302c803229f526ee3ae241d53ecea77050263d2ebe6c1167b372c0c0679c514" }, "downloads": -1, "filename": "schema_salad-7.1.20210316164414-cp38-cp38-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "5d3435fdfa821e8cfe50f80f581c391c", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 2392268, "upload_time": "2021-03-17T11:27:32", "upload_time_iso_8601": "2021-03-17T11:27:32.007160Z", "url": "https://files.pythonhosted.org/packages/e9/11/f4c149161f606d7bbfde0848b7e4ddbdd4ddb7840ac83b2042abc558de87/schema_salad-7.1.20210316164414-cp38-cp38-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "69063795d351edbb95627d20d5f16065", "sha256": "828e412f12059d04fda101aeeb28abfaf7068f3e1e59c3da94df226776d916e7" }, "downloads": -1, "filename": "schema_salad-7.1.20210316164414-py3-none-any.whl", "has_sig": false, "md5_digest": "69063795d351edbb95627d20d5f16065", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 471711, "upload_time": "2021-03-17T07:54:28", "upload_time_iso_8601": "2021-03-17T07:54:28.272358Z", "url": "https://files.pythonhosted.org/packages/3c/8e/017aa84fd74726e015ee0d7d6f32e017b6f8cde2d0c5a436a3be49847d1e/schema_salad-7.1.20210316164414-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "75a78dd76e206cd2ecc48f1c19691cce", "sha256": "33ef9e67d5923a0605f98b54250852cb9f8b7fe7ba44bae1cbd3ba77dbf44a12" }, "downloads": -1, "filename": "schema-salad-7.1.20210316164414.tar.gz", "has_sig": false, "md5_digest": "75a78dd76e206cd2ecc48f1c19691cce", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 418258, "upload_time": "2021-03-17T07:54:30", "upload_time_iso_8601": "2021-03-17T07:54:30.937770Z", "url": "https://files.pythonhosted.org/packages/67/cf/97ccfade46cbd36f687ec6c4233142eb879398ab3311debddbccf8f341de/schema-salad-7.1.20210316164414.tar.gz", "yanked": false, "yanked_reason": null } ], "7.1.20210518142926": [ { "comment_text": "", "digests": { "md5": "aa61619f6be09aca0682e2ce17f9f8ef", "sha256": "d392c37d3a2b9a7834e4e1b5bf71babb7f584a395031c831c9f3e46a99077faa" }, "downloads": -1, "filename": "schema_salad-7.1.20210518142926-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "aa61619f6be09aca0682e2ce17f9f8ef", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 2249900, "upload_time": "2021-05-21T10:30:29", "upload_time_iso_8601": "2021-05-21T10:30:29.614789Z", "url": "https://files.pythonhosted.org/packages/23/73/fadcb9e5f1d78aaa9289c4042f16e2e68f0ea0a2548060be12ce299894c2/schema_salad-7.1.20210518142926-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e2b83fea470bacb9e3f7406ac1504d8f", "sha256": "4b6114b2c66dfaaf359aca07c162ca2f98a80550af5f9e6ed2f07803d4bcda17" }, "downloads": -1, "filename": "schema_salad-7.1.20210518142926-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "e2b83fea470bacb9e3f7406ac1504d8f", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 2252825, "upload_time": "2021-05-21T10:30:31", "upload_time_iso_8601": "2021-05-21T10:30:31.094757Z", "url": "https://files.pythonhosted.org/packages/05/c3/a6957a3020efd456d68a60041e9a1f96299e3b1a42f300cd4ea16d29bcb1/schema_salad-7.1.20210518142926-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "528a16af78ede56b38dd71d5603afaf1", "sha256": "bd094455b8e7da534de9325b2f2568678b513e50c102950e853f8cb7cd85d317" }, "downloads": -1, "filename": "schema_salad-7.1.20210518142926-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "528a16af78ede56b38dd71d5603afaf1", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 2266003, "upload_time": "2021-05-21T10:30:32", "upload_time_iso_8601": "2021-05-21T10:30:32.692533Z", "url": "https://files.pythonhosted.org/packages/fd/79/daa44f6687843c63ca7f77a2ea282f61f88ccf91838851054c8287610cd1/schema_salad-7.1.20210518142926-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6493c0256500f66744368d33a510b59e", "sha256": "28073cac14bdddd1bf9e8282850a46a22183fa4b1772c95dffc4c73bc3e47c92" }, "downloads": -1, "filename": "schema_salad-7.1.20210518142926-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "6493c0256500f66744368d33a510b59e", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 2268355, "upload_time": "2021-05-21T10:30:34", "upload_time_iso_8601": "2021-05-21T10:30:34.155188Z", "url": "https://files.pythonhosted.org/packages/78/29/467266c4fe9941ac220c2c61f8213102108ac4eebbd79c073f22c4800982/schema_salad-7.1.20210518142926-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5b12caa7485b987349c7417bef61134e", "sha256": "258d016a31dcfd79547fb2b24db020a97eb62c510e82b00e017e95ee7de20a6d" }, "downloads": -1, "filename": "schema_salad-7.1.20210518142926-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "5b12caa7485b987349c7417bef61134e", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 2390510, "upload_time": "2021-05-21T10:30:35", "upload_time_iso_8601": "2021-05-21T10:30:35.981803Z", "url": "https://files.pythonhosted.org/packages/82/72/34acf31c8c000a224a08e137a37011e9dc8e68452c1c148aecac8f354982/schema_salad-7.1.20210518142926-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7d4687fc5bab9fb54446ae24c755b329", "sha256": "cb184d929086206213f25bd5123d7d1d902e77b313ce66c5f0b8baa2f856a62c" }, "downloads": -1, "filename": "schema_salad-7.1.20210518142926-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "7d4687fc5bab9fb54446ae24c755b329", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 2388314, "upload_time": "2021-05-21T10:30:37", "upload_time_iso_8601": "2021-05-21T10:30:37.583638Z", "url": "https://files.pythonhosted.org/packages/32/b0/c081817b6daaa9c6b6bc37ec9d95e465515fabc36d55789322d7e330d646/schema_salad-7.1.20210518142926-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b5935940d2c17167570caa317648f6aa", "sha256": "5f35cebb518a6dd9d9bb8203d9fcf5bd927e0c3cc166dd7dde86c61e44b806e5" }, "downloads": -1, "filename": "schema_salad-7.1.20210518142926-py3-none-any.whl", "has_sig": false, "md5_digest": "b5935940d2c17167570caa317648f6aa", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 471716, "upload_time": "2021-05-19T15:24:24", "upload_time_iso_8601": "2021-05-19T15:24:24.401771Z", "url": "https://files.pythonhosted.org/packages/37/b0/ee096e805f39ad14c11cd3fd015ff1185dc2f2f8f8ed4bf8b536146eea5d/schema_salad-7.1.20210518142926-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f5861354d1bd9c5a0c78c4dd84b42c40", "sha256": "ead223dab61187ac091d44baa0101edc726bb49cb80123180443a3a06969f5d6" }, "downloads": -1, "filename": "schema-salad-7.1.20210518142926.tar.gz", "has_sig": false, "md5_digest": "f5861354d1bd9c5a0c78c4dd84b42c40", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 418274, "upload_time": "2021-05-19T15:24:27", "upload_time_iso_8601": "2021-05-19T15:24:27.300507Z", "url": "https://files.pythonhosted.org/packages/12/70/585f72a1ac4d006c60e14d4f4cf8e44415b24c3131f44938a8cb710193e2/schema-salad-7.1.20210518142926.tar.gz", "yanked": false, "yanked_reason": null } ], "7.1.20210611090601": [ { "comment_text": "", "digests": { "md5": "d10455ee4b4dada4c4e2105d46693f99", "sha256": "8119ad8e9292b029d40dfc522f53e4b572107f5875ab297a20fab5cec5e5f825" }, "downloads": -1, "filename": "schema_salad-7.1.20210611090601-py3-none-any.whl", "has_sig": false, "md5_digest": "d10455ee4b4dada4c4e2105d46693f99", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 471848, "upload_time": "2021-06-16T14:18:36", "upload_time_iso_8601": "2021-06-16T14:18:36.009340Z", "url": "https://files.pythonhosted.org/packages/fc/49/0b6fc60bac46eac84b87a8653952156b67f39bf382212349e221dbc4fd17/schema_salad-7.1.20210611090601-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9ef6894d9bd1addb6b96309a58077039", "sha256": "090f2680d90c4f3cfd212738eda241f360f98137d3bc1ddb6c52bdcebe89424f" }, "downloads": -1, "filename": "schema-salad-7.1.20210611090601.tar.gz", "has_sig": false, "md5_digest": "9ef6894d9bd1addb6b96309a58077039", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 418361, "upload_time": "2021-06-16T14:18:38", "upload_time_iso_8601": "2021-06-16T14:18:38.437730Z", "url": "https://files.pythonhosted.org/packages/2c/bd/dbabd5fed6cb8d39eab9f89a4c63df6258fb9942025c2680a47561dd289e/schema-salad-7.1.20210611090601.tar.gz", "yanked": false, "yanked_reason": null } ], "8.0.20210624094941": [ { "comment_text": "", "digests": { "md5": "2829f303cc5bdde0daff35c4c10607ad", "sha256": "9015775f88adc4d79fccb8da21e65a480a415832dd92e191a4bc30f701eb3e76" }, "downloads": -1, "filename": "schema_salad-8.0.20210624094941-py3-none-any.whl", "has_sig": false, "md5_digest": "2829f303cc5bdde0daff35c4c10607ad", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 473432, "upload_time": "2021-06-24T09:53:23", "upload_time_iso_8601": "2021-06-24T09:53:23.939426Z", "url": "https://files.pythonhosted.org/packages/4a/5d/ae04f438baab5ae3b330f5415e032da20764abd7a51d994a0f99a804ba73/schema_salad-8.0.20210624094941-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0c5e3d42502c3dd2475931c3cd68478e", "sha256": "56126c6804fc71f127f24b808accc8c96daf97dc8436017598a55a7215a2ca54" }, "downloads": -1, "filename": "schema-salad-8.0.20210624094941.tar.gz", "has_sig": false, "md5_digest": "0c5e3d42502c3dd2475931c3cd68478e", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 419046, "upload_time": "2021-06-24T09:53:26", "upload_time_iso_8601": "2021-06-24T09:53:26.356961Z", "url": "https://files.pythonhosted.org/packages/6c/e2/03d8e33381463831b149bacc86a58bd4ea7201e907f9de3b638868b9cbee/schema-salad-8.0.20210624094941.tar.gz", "yanked": false, "yanked_reason": null } ], "8.0.20210624101613": [ { "comment_text": "", "digests": { "md5": "272edaef5638aacb057e05359136ebf4", "sha256": "6c265a0daec9ca1e78cf26006781c15ad3a12f616e591b8f5e940139bccba83f" }, "downloads": -1, "filename": "schema_salad-8.0.20210624101613-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "272edaef5638aacb057e05359136ebf4", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 2185591, "upload_time": "2021-06-24T10:30:52", "upload_time_iso_8601": "2021-06-24T10:30:52.209108Z", "url": "https://files.pythonhosted.org/packages/7e/78/6d6e98f62b02482e1821366d4dc3d8fe172f5b7ff1a3dcacea89e8c39aaa/schema_salad-8.0.20210624101613-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2f524a2a8063183ad072c57432fd8611", "sha256": "ccd78128c98e26bb4157e8996fb301b54e31cb937fb4462e1ae358b955aa7a13" }, "downloads": -1, "filename": "schema_salad-8.0.20210624101613-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "2f524a2a8063183ad072c57432fd8611", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 2187546, "upload_time": "2021-06-24T10:30:53", "upload_time_iso_8601": "2021-06-24T10:30:53.656251Z", "url": "https://files.pythonhosted.org/packages/51/c4/2d4f205827764f94c86dee2a96151d6ce1dd0f31b810181087455bec66f6/schema_salad-8.0.20210624101613-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "02361fb8d22319e75e876effd7415e7b", "sha256": "a41f69a93e85db215a07cdc7b801426b3438d8ec335245b17e34161a42778cdf" }, "downloads": -1, "filename": "schema_salad-8.0.20210624101613-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "02361fb8d22319e75e876effd7415e7b", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 2218698, "upload_time": "2021-06-24T10:30:55", "upload_time_iso_8601": "2021-06-24T10:30:55.618799Z", "url": "https://files.pythonhosted.org/packages/69/4c/a7c3bd884188fcef5168c1b06ee6c179d6682712d77cd67cdbe4fb78bdc0/schema_salad-8.0.20210624101613-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8c789ee883654a9b9b47ca859952af1d", "sha256": "cd81f6af984e73b174ae64d52797613b2ec0a15bfcb35622655a245ba61d1e38" }, "downloads": -1, "filename": "schema_salad-8.0.20210624101613-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "8c789ee883654a9b9b47ca859952af1d", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 2220110, "upload_time": "2021-06-24T10:30:57", "upload_time_iso_8601": "2021-06-24T10:30:57.400882Z", "url": "https://files.pythonhosted.org/packages/78/63/819c02b9af3a2052f37f0faf4eaeceeb013324e2f179e42b7f77088141bc/schema_salad-8.0.20210624101613-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "847b4c597a417150925cdf915cc7084b", "sha256": "56bc0df36817aba2c28d4aff6e496164e32916ed3c2510cff7fed165393f420b" }, "downloads": -1, "filename": "schema_salad-8.0.20210624101613-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "847b4c597a417150925cdf915cc7084b", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 2455915, "upload_time": "2021-06-24T10:30:59", "upload_time_iso_8601": "2021-06-24T10:30:59.025579Z", "url": "https://files.pythonhosted.org/packages/08/66/56316cebe3de32d57303cdd93028ce195c7075f28349260d68fa09f3de96/schema_salad-8.0.20210624101613-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5bb65a501b272b801f6e4e7458b59a97", "sha256": "b791cc27969d780f52e9f7d9d1c5bce1967f68292d7ad0e3496aeabfa3b75415" }, "downloads": -1, "filename": "schema_salad-8.0.20210624101613-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "5bb65a501b272b801f6e4e7458b59a97", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 2462101, "upload_time": "2021-06-24T10:31:00", "upload_time_iso_8601": "2021-06-24T10:31:00.928812Z", "url": "https://files.pythonhosted.org/packages/8b/1a/dd6724556beffe898d2739e04ff273189c7adebad83d9f7100dedff15c2f/schema_salad-8.0.20210624101613-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "997b056f73b16e2631f3e64046a3f15c", "sha256": "d2e90bb13c1f25be6585035b88da7549d7aed130d93cfb3f3c7664da9967d92a" }, "downloads": -1, "filename": "schema_salad-8.0.20210624101613-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "997b056f73b16e2631f3e64046a3f15c", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 2679910, "upload_time": "2021-06-24T10:31:02", "upload_time_iso_8601": "2021-06-24T10:31:02.515524Z", "url": "https://files.pythonhosted.org/packages/6a/a3/f718abf629b6c1c152f40f6a557be8c20ed7020c5b2866dd05b29bba90dc/schema_salad-8.0.20210624101613-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "84289c0335387e30553ddf273f29747a", "sha256": "5f2f7062354fbe68f18b5d295795b4c4d75ac848ff42529b963c3f0b0bb0f283" }, "downloads": -1, "filename": "schema_salad-8.0.20210624101613-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "84289c0335387e30553ddf273f29747a", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 2676670, "upload_time": "2021-06-24T10:31:03", "upload_time_iso_8601": "2021-06-24T10:31:03.996322Z", "url": "https://files.pythonhosted.org/packages/30/8f/28fc46941480a4f939d7c3513f84ab3106cf6d31493dea2e7a2656c054e9/schema_salad-8.0.20210624101613-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0ec2da4d75f50d8071c0ad71fc18af22", "sha256": "55b7ea1d6697f85fa3dda524fb9e85a535406a470e866aa0176c86626e57f6d6" }, "downloads": -1, "filename": "schema_salad-8.0.20210624101613-py3-none-any.whl", "has_sig": false, "md5_digest": "0ec2da4d75f50d8071c0ad71fc18af22", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 473432, "upload_time": "2021-06-24T10:21:02", "upload_time_iso_8601": "2021-06-24T10:21:02.109770Z", "url": "https://files.pythonhosted.org/packages/32/b1/aa99135979832f3af32ac8a74faf64a4aff8e65442442c62a9a06ed7722e/schema_salad-8.0.20210624101613-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3af70bc6c8643da1bdbb29bba23593b7", "sha256": "44bd2c43a3981c015b119cdbe3385d1b6f62a444f15677690bc861ea8eaca9bb" }, "downloads": -1, "filename": "schema-salad-8.0.20210624101613.tar.gz", "has_sig": false, "md5_digest": "3af70bc6c8643da1bdbb29bba23593b7", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 419057, "upload_time": "2021-06-24T10:21:03", "upload_time_iso_8601": "2021-06-24T10:21:03.887995Z", "url": "https://files.pythonhosted.org/packages/7c/61/97c6859ce38afd4b4c12ee8a361bb77f633f4a6f6ec69f84faa492c26478/schema-salad-8.0.20210624101613.tar.gz", "yanked": false, "yanked_reason": null } ], "8.0.20210624154013": [ { "comment_text": "", "digests": { "md5": "c83321438e62811e4d016e2d1dfb88a6", "sha256": "e842db6d9c856cf5d9ae68e9d782d2275ca5488fb06004aea95ce4593ebdf7b9" }, "downloads": -1, "filename": "schema_salad-8.0.20210624154013-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "c83321438e62811e4d016e2d1dfb88a6", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 2185617, "upload_time": "2021-06-24T16:02:34", "upload_time_iso_8601": "2021-06-24T16:02:34.642874Z", "url": "https://files.pythonhosted.org/packages/f1/73/0f84c51c466839da714798d59a553cb92de5d571ceb33e28f29d8fa43204/schema_salad-8.0.20210624154013-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e1327b594de4f438da61e7eccf64c3af", "sha256": "2b107f51df0b7bed167b708985664f90baf44700ffac91e3bda8f80e1d6b9c63" }, "downloads": -1, "filename": "schema_salad-8.0.20210624154013-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "e1327b594de4f438da61e7eccf64c3af", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 2187542, "upload_time": "2021-06-24T16:02:36", "upload_time_iso_8601": "2021-06-24T16:02:36.638727Z", "url": "https://files.pythonhosted.org/packages/a9/4d/ff31532a56ab109935a60a24e2d651ead72cb3132ad8e594b150675dbed8/schema_salad-8.0.20210624154013-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e8979d3940884c004b0dec028c322cf9", "sha256": "079cb689f2535811ed74516e950d886048a48f44083d9a0a4006382afb384d55" }, "downloads": -1, "filename": "schema_salad-8.0.20210624154013-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "e8979d3940884c004b0dec028c322cf9", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 2218568, "upload_time": "2021-06-24T16:02:38", "upload_time_iso_8601": "2021-06-24T16:02:38.778784Z", "url": "https://files.pythonhosted.org/packages/b3/0c/5837bb110c99a30ba15bdf946e6345c1c2969f376b16bb8dc9ef560cdf92/schema_salad-8.0.20210624154013-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "31cfb4303b8d138ddaeac7db33053a27", "sha256": "2f8fbd65d8c636e927119517a09978485a5a8eb2279892a27a63447891f1fcf1" }, "downloads": -1, "filename": "schema_salad-8.0.20210624154013-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "31cfb4303b8d138ddaeac7db33053a27", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 2219966, "upload_time": "2021-06-24T16:02:41", "upload_time_iso_8601": "2021-06-24T16:02:41.066770Z", "url": "https://files.pythonhosted.org/packages/eb/78/500ae8ee6346a890afe029b152a957c1147c02837e06ed24fda322d9bd87/schema_salad-8.0.20210624154013-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d66bbf2678ad3ac3bbd8c35ca79e3d64", "sha256": "8561104a08516df5c986a27964c147dea4efa89948e692559bf5cd8f9c4c5bb7" }, "downloads": -1, "filename": "schema_salad-8.0.20210624154013-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "d66bbf2678ad3ac3bbd8c35ca79e3d64", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 2455988, "upload_time": "2021-06-24T16:02:43", "upload_time_iso_8601": "2021-06-24T16:02:43.218802Z", "url": "https://files.pythonhosted.org/packages/7e/fc/f7e29727b2a552843ea456ab2174a9862efb0cd4a6823fd6e3558bfd83c7/schema_salad-8.0.20210624154013-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9b2dc4ef224d6112c55598e299a9d0ad", "sha256": "80ea78505d4f4720a1aa3c119f7faa974cb9ec28ad9f940a5b69df8a94914f04" }, "downloads": -1, "filename": "schema_salad-8.0.20210624154013-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "9b2dc4ef224d6112c55598e299a9d0ad", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 2461902, "upload_time": "2021-06-24T16:02:44", "upload_time_iso_8601": "2021-06-24T16:02:44.832028Z", "url": "https://files.pythonhosted.org/packages/fc/ac/ae4b7ba85191ddb7ffb06a2f0595d0744d423f55608587324b38d85aa13c/schema_salad-8.0.20210624154013-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e14fb4afa74e2fff7f3f8440fd340558", "sha256": "d15a6c1955a31e2bdcf9011ceb478eee4ac59acbdaf017eddbfbd4f2e21b4fa1" }, "downloads": -1, "filename": "schema_salad-8.0.20210624154013-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "e14fb4afa74e2fff7f3f8440fd340558", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 2679829, "upload_time": "2021-06-24T16:02:46", "upload_time_iso_8601": "2021-06-24T16:02:46.351094Z", "url": "https://files.pythonhosted.org/packages/18/a3/521155472da4f8373b09f8aee5255ebef5cb6befad416e7b8c60218d2f3d/schema_salad-8.0.20210624154013-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e778c0bd3bd22dcc8fb273448b864086", "sha256": "713b08f15ceb0a90e42fa73c4819fa3b6b2b180d9c7b23bc427b78fd0b617ca0" }, "downloads": -1, "filename": "schema_salad-8.0.20210624154013-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "e778c0bd3bd22dcc8fb273448b864086", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 2676725, "upload_time": "2021-06-24T16:02:47", "upload_time_iso_8601": "2021-06-24T16:02:47.974784Z", "url": "https://files.pythonhosted.org/packages/7a/61/98e6c8082bc8e0577e75f0b605174badff8c155635adfd60940a88394d66/schema_salad-8.0.20210624154013-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a19ae6c01281ce3564cd455b4afdbcc6", "sha256": "ff699d0f0539f096096cc60a700a060ab333dde05fe0dfa49b3594e4417f5f01" }, "downloads": -1, "filename": "schema_salad-8.0.20210624154013-py3-none-any.whl", "has_sig": false, "md5_digest": "a19ae6c01281ce3564cd455b4afdbcc6", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 473434, "upload_time": "2021-06-24T15:51:44", "upload_time_iso_8601": "2021-06-24T15:51:44.320222Z", "url": "https://files.pythonhosted.org/packages/ef/c5/5b9ec3d1069eb61f5b66d770164f26d1501dd9088a139b4fcf9517060867/schema_salad-8.0.20210624154013-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3f9cba34861538600cada5d4d9aaa1ae", "sha256": "a4f3044ad979dd850418fbd826257bcd6201a6a8c1f93e20402218d6adaf3814" }, "downloads": -1, "filename": "schema-salad-8.0.20210624154013.tar.gz", "has_sig": false, "md5_digest": "3f9cba34861538600cada5d4d9aaa1ae", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 433915, "upload_time": "2021-06-24T15:51:46", "upload_time_iso_8601": "2021-06-24T15:51:46.491642Z", "url": "https://files.pythonhosted.org/packages/ac/df/3b86cea68a7a102a1ebe03b82de71275033148f8e2370cc3985e23442efa/schema-salad-8.0.20210624154013.tar.gz", "yanked": false, "yanked_reason": null } ], "8.1.20210627200047": [ { "comment_text": "", "digests": { "md5": "509deec3fbfb52f9a1f6750bf195842d", "sha256": "768a2df33d6427e3f70093acdf566a2da27559a45b66d6531262ef3f38bb96f8" }, "downloads": -1, "filename": "schema_salad-8.1.20210627200047-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "509deec3fbfb52f9a1f6750bf195842d", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 2201073, "upload_time": "2021-06-27T20:18:38", "upload_time_iso_8601": "2021-06-27T20:18:38.102484Z", "url": "https://files.pythonhosted.org/packages/fc/32/43aacd9d42367809e41c2414d195c174dc79174c01a13a96765bc978c90d/schema_salad-8.1.20210627200047-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "124f5ee2d1626d8b4484eeca6586bb69", "sha256": "65205730686d410c44884b1324d0a4761ebfac81e0d4175e75faa86da413f60e" }, "downloads": -1, "filename": "schema_salad-8.1.20210627200047-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "124f5ee2d1626d8b4484eeca6586bb69", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 2203277, "upload_time": "2021-06-27T20:18:39", "upload_time_iso_8601": "2021-06-27T20:18:39.571987Z", "url": "https://files.pythonhosted.org/packages/bf/35/825048d17b582f2e8c4a68668006326c023e2e1d9b641788a656ed6ec469/schema_salad-8.1.20210627200047-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "92b724588d34d2fb5819593a249b5d6e", "sha256": "c09235a3645b98907287a29376a6d1966c68d6036a885ada1b6a9a56c1a0bd96" }, "downloads": -1, "filename": "schema_salad-8.1.20210627200047-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "92b724588d34d2fb5819593a249b5d6e", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 2233364, "upload_time": "2021-06-27T20:18:41", "upload_time_iso_8601": "2021-06-27T20:18:41.409822Z", "url": "https://files.pythonhosted.org/packages/b0/d0/03fbf4423123977a520bbaaa740c4e4bb809c6575afc95ba9e3b6d95d5b0/schema_salad-8.1.20210627200047-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5e8026f3594a424b3ca6558df3df398f", "sha256": "f1f360949196627c44c36af8323aad2f97f30f663516de9987f5f236f82bef01" }, "downloads": -1, "filename": "schema_salad-8.1.20210627200047-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "5e8026f3594a424b3ca6558df3df398f", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 2236190, "upload_time": "2021-06-27T20:18:43", "upload_time_iso_8601": "2021-06-27T20:18:43.179536Z", "url": "https://files.pythonhosted.org/packages/f8/6a/f64da783d2da6db209acd6e5358b1b0de5f1d9ad4a98341018f1f214ed0b/schema_salad-8.1.20210627200047-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a36a04ad333c2b3f4dcbdaff103b5fde", "sha256": "333b1f3a44efbb5053e6158688f0422b6355d9b1655fe1e4d06c878d3f6dd786" }, "downloads": -1, "filename": "schema_salad-8.1.20210627200047-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "a36a04ad333c2b3f4dcbdaff103b5fde", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 2476181, "upload_time": "2021-06-27T20:18:44", "upload_time_iso_8601": "2021-06-27T20:18:44.510929Z", "url": "https://files.pythonhosted.org/packages/6c/fd/1baeb4b641113d2710c9918c2e3ba82b4c3bdb4b6d4dc0dbd2027aaf2034/schema_salad-8.1.20210627200047-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7804233c10fc353fb312b6466930ecaa", "sha256": "8c4152ac88d5a6146742412485453ed47da4461c4fc2ff935fe63291297d8cc2" }, "downloads": -1, "filename": "schema_salad-8.1.20210627200047-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "7804233c10fc353fb312b6466930ecaa", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 2484216, "upload_time": "2021-06-27T20:18:46", "upload_time_iso_8601": "2021-06-27T20:18:46.337198Z", "url": "https://files.pythonhosted.org/packages/fd/d2/8e67072ef9e2c1689d05e31b1dbd3f37bd4a6e2f922bb42fe0f91ef2129c/schema_salad-8.1.20210627200047-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a2b44a6d76fcda8b9c3e128585e971bb", "sha256": "c67649a9d048c60274b11bfb02dc1679dd5394f6ccf1bfa58653526f9c2e4631" }, "downloads": -1, "filename": "schema_salad-8.1.20210627200047-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "a2b44a6d76fcda8b9c3e128585e971bb", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 2702621, "upload_time": "2021-06-27T20:18:48", "upload_time_iso_8601": "2021-06-27T20:18:48.120049Z", "url": "https://files.pythonhosted.org/packages/3e/2e/74e96234a5492c0f420ca3969745ef3cea5e4bc929e4db86d402e58e1f8a/schema_salad-8.1.20210627200047-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2f22b31b13c396ae0c0f0214cd45c992", "sha256": "51f44e81b974f28900429051142ae26011123addf659dc81f093f4afd765d92d" }, "downloads": -1, "filename": "schema_salad-8.1.20210627200047-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "2f22b31b13c396ae0c0f0214cd45c992", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 2698374, "upload_time": "2021-06-27T20:18:49", "upload_time_iso_8601": "2021-06-27T20:18:49.436805Z", "url": "https://files.pythonhosted.org/packages/ed/c6/797fbc32626451f8d3f73d8d45387fe6f83ae6cc1b3528c376ca0edd2a70/schema_salad-8.1.20210627200047-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "299aabc92288cf73c6a7e01abb87d3ae", "sha256": "baa151af9fe824e3981ec20de23a9b66e6fccedebe72c475e03f91af71a930f6" }, "downloads": -1, "filename": "schema_salad-8.1.20210627200047-py3-none-any.whl", "has_sig": false, "md5_digest": "299aabc92288cf73c6a7e01abb87d3ae", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 473865, "upload_time": "2021-06-27T20:05:38", "upload_time_iso_8601": "2021-06-27T20:05:38.283085Z", "url": "https://files.pythonhosted.org/packages/c4/be/3ed81521434a3a8c3b0eac1e0c25d4eb6de6ec97861197f17bbd74317889/schema_salad-8.1.20210627200047-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7745bb208e4a86c6449011212c9759fd", "sha256": "e2f4d6eadb060f3d88372bb4bdefb7c22eb4b191c2657a8a82183d100148fac5" }, "downloads": -1, "filename": "schema-salad-8.1.20210627200047.tar.gz", "has_sig": false, "md5_digest": "7745bb208e4a86c6449011212c9759fd", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 434279, "upload_time": "2021-06-27T20:05:40", "upload_time_iso_8601": "2021-06-27T20:05:40.726797Z", "url": "https://files.pythonhosted.org/packages/3f/56/426b88e72b322cd5f83004f6ed1ead6ac90412f2110585eb7effc7cb85cf/schema-salad-8.1.20210627200047.tar.gz", "yanked": false, "yanked_reason": null } ], "8.1.20210716111910": [ { "comment_text": "", "digests": { "md5": "e4556f5e8d5fd849ed14c88204adc322", "sha256": "e2d1d2a0b70de988185ec18b8cb3b7fb1b28d005d6e50582e4652db7c7c09477" }, "downloads": -1, "filename": "schema_salad-8.1.20210716111910-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "e4556f5e8d5fd849ed14c88204adc322", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 2201641, "upload_time": "2021-07-16T11:51:24", "upload_time_iso_8601": "2021-07-16T11:51:24.725234Z", "url": "https://files.pythonhosted.org/packages/f2/75/47fd544a38ebc617c5b412e24197b4ce8c8afbabc96006c18e027ceed40e/schema_salad-8.1.20210716111910-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ab49405f654d0e89b3f5af5ff31d9350", "sha256": "c7d5166f5738ef48c189289f011e55dfb6600d759c02169a854a46685c5030f4" }, "downloads": -1, "filename": "schema_salad-8.1.20210716111910-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "ab49405f654d0e89b3f5af5ff31d9350", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 2202850, "upload_time": "2021-07-16T11:51:27", "upload_time_iso_8601": "2021-07-16T11:51:27.118770Z", "url": "https://files.pythonhosted.org/packages/80/3f/7ebd0f8a600e8a44752fe89eee9267b5ce56f847b2e24083b9be3fafe556/schema_salad-8.1.20210716111910-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e3c17edf5bf0c1a35c0d9b7a98f221ba", "sha256": "9d58f804032fd93e9cfc703c79ae7d85b544d42dd424953a71d7416cf7c25a0b" }, "downloads": -1, "filename": "schema_salad-8.1.20210716111910-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "e3c17edf5bf0c1a35c0d9b7a98f221ba", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 2234060, "upload_time": "2021-07-16T11:51:29", "upload_time_iso_8601": "2021-07-16T11:51:29.303156Z", "url": "https://files.pythonhosted.org/packages/fb/fa/8508fd56cc35a4c3489d384fd883b08e73f704e6187cdcad29056845fc43/schema_salad-8.1.20210716111910-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1f948549685fe4e21daf9b1e0e8f260e", "sha256": "1f7bd64e551eece24be454628bca1f034e72616a0a6db8b6899655ee4cb8c473" }, "downloads": -1, "filename": "schema_salad-8.1.20210716111910-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "1f948549685fe4e21daf9b1e0e8f260e", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 2235694, "upload_time": "2021-07-16T11:51:31", "upload_time_iso_8601": "2021-07-16T11:51:31.573138Z", "url": "https://files.pythonhosted.org/packages/29/ec/9850dcb465686eeb1882dfbd9a9334ad399314ba35123fd0c9e8637783c5/schema_salad-8.1.20210716111910-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "450c576ee4a7bf52a94d2f1bf0efc82d", "sha256": "6012fb8538d1e562baabc7346adc28eb6af8a0888854a491e1c91c84ee71a431" }, "downloads": -1, "filename": "schema_salad-8.1.20210716111910-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "450c576ee4a7bf52a94d2f1bf0efc82d", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 2475791, "upload_time": "2021-07-16T11:51:33", "upload_time_iso_8601": "2021-07-16T11:51:33.857288Z", "url": "https://files.pythonhosted.org/packages/b7/68/1d1fa59a9d209b0ebeedacb226b6b4223aa6113a2b46acc7c3642b63f802/schema_salad-8.1.20210716111910-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4af82986abe03c182ba9522dba24fcb9", "sha256": "65fa60595193fe79729eb66a199dcb6d3b37bbc27b9094d59de3845ef0a17ba8" }, "downloads": -1, "filename": "schema_salad-8.1.20210716111910-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "4af82986abe03c182ba9522dba24fcb9", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 2483971, "upload_time": "2021-07-16T11:51:35", "upload_time_iso_8601": "2021-07-16T11:51:35.505074Z", "url": "https://files.pythonhosted.org/packages/af/ff/3ff20903d640f749e0fcb6921c612d152e87cb68478570fc5b055e71192a/schema_salad-8.1.20210716111910-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0ae7306c91168c13c84b816308db5ce8", "sha256": "48d46452ca4e704e2ea14dfbd9466ba2cdd451dc88393af4966ed64b6201e550" }, "downloads": -1, "filename": "schema_salad-8.1.20210716111910-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "0ae7306c91168c13c84b816308db5ce8", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 2701409, "upload_time": "2021-07-16T11:51:37", "upload_time_iso_8601": "2021-07-16T11:51:37.153709Z", "url": "https://files.pythonhosted.org/packages/20/aa/be5153aa8e5ec0b28e48d680209edfb473d4d364b3d7c9187b198c3ace9c/schema_salad-8.1.20210716111910-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "859c7d733ff348aaca72128b3987ea20", "sha256": "9a3cf77a3b8c3ecd392bb46e9e5570f5c7f3d8a9d9e9fd41a9fcbd04cb01f54f" }, "downloads": -1, "filename": "schema_salad-8.1.20210716111910-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "859c7d733ff348aaca72128b3987ea20", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 2696574, "upload_time": "2021-07-16T11:51:38", "upload_time_iso_8601": "2021-07-16T11:51:38.683750Z", "url": "https://files.pythonhosted.org/packages/c7/25/776b3856a2ecba61fcb17e74f8f096f2448a3e86e0ec8bfd3922923135c2/schema_salad-8.1.20210716111910-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "116837a81bcebee41bb32e09f0ab8305", "sha256": "6b206110e47d83c2c40865ebf9e8443e24b92716840aee52cc37c17d201c487e" }, "downloads": -1, "filename": "schema_salad-8.1.20210716111910-py3-none-any.whl", "has_sig": false, "md5_digest": "116837a81bcebee41bb32e09f0ab8305", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 473938, "upload_time": "2021-07-16T11:30:54", "upload_time_iso_8601": "2021-07-16T11:30:54.560203Z", "url": "https://files.pythonhosted.org/packages/3a/8a/92dcbd3c120bf94022290a62a207e453ad6822024cc526c3eb97ae401d2b/schema_salad-8.1.20210716111910-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9e65ff958a8ec003ac60811d65de6923", "sha256": "3f851b385d044c58d359285ba471298b6199478a4978f892a83b15cbfb282f25" }, "downloads": -1, "filename": "schema-salad-8.1.20210716111910.tar.gz", "has_sig": false, "md5_digest": "9e65ff958a8ec003ac60811d65de6923", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 434306, "upload_time": "2021-07-16T11:30:56", "upload_time_iso_8601": "2021-07-16T11:30:56.309530Z", "url": "https://files.pythonhosted.org/packages/3d/a4/401d8ad4fec9654c26b3417b314be10684acd062c1630549920df622ed3c/schema-salad-8.1.20210716111910.tar.gz", "yanked": false, "yanked_reason": null } ], "8.1.20210721123742": [ { "comment_text": "", "digests": { "md5": "3468c0fe0007089969bf36086c195e10", "sha256": "31ed1b027fa3fa9b08863ac57c20b620cda9411ea836c41786c13c25fa6b464c" }, "downloads": -1, "filename": "schema_salad-8.1.20210721123742-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "3468c0fe0007089969bf36086c195e10", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 2214469, "upload_time": "2021-07-26T12:47:40", "upload_time_iso_8601": "2021-07-26T12:47:40.134285Z", "url": "https://files.pythonhosted.org/packages/59/52/6a8d5bd8215b9dc4fe57c0826e6243ae1bd72c8040109416f71299f2c72f/schema_salad-8.1.20210721123742-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3014ffebedf9b5b8ebacf8500b71f372", "sha256": "f755b7af9bb95ca6a36f98bf4da5bc72cf5c9b6326ae2d33af4fd99cafe874bd" }, "downloads": -1, "filename": "schema_salad-8.1.20210721123742-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "3014ffebedf9b5b8ebacf8500b71f372", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 2215510, "upload_time": "2021-07-26T12:47:42", "upload_time_iso_8601": "2021-07-26T12:47:42.521473Z", "url": "https://files.pythonhosted.org/packages/bf/51/58396d2e5a4d204e511f401b7df3fa9ea393d8a2d041373a9be198f629b0/schema_salad-8.1.20210721123742-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bee217cfa220582c21c01cc9373781a4", "sha256": "405bdbf0e08d8da98f20a39e2cb4b70c634192a14f64197bf6223b615f0e2110" }, "downloads": -1, "filename": "schema_salad-8.1.20210721123742-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "bee217cfa220582c21c01cc9373781a4", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 2248112, "upload_time": "2021-07-26T12:47:44", "upload_time_iso_8601": "2021-07-26T12:47:44.830237Z", "url": "https://files.pythonhosted.org/packages/00/fc/7900b9eb844e57d95e19f577d7e8becfcacf7fb6b370edc152a458fc03d6/schema_salad-8.1.20210721123742-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "306f933f82790cd5b8db9e518055eee4", "sha256": "f1624695228af24de97670753ec8d60b4d97ba7d6ec0433b46039afb0aac4dac" }, "downloads": -1, "filename": "schema_salad-8.1.20210721123742-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "306f933f82790cd5b8db9e518055eee4", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 2249854, "upload_time": "2021-07-26T12:47:47", "upload_time_iso_8601": "2021-07-26T12:47:47.017991Z", "url": "https://files.pythonhosted.org/packages/61/c8/dd922a93da0e63ee2ee7b16fe275c0279a4e3f295d7a2c87cfdbe8054cec/schema_salad-8.1.20210721123742-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1442df1f117c26ce3661552f818d192e", "sha256": "723baaf579742fd4882e6bdfe3bf7dbb149f9e5c90ee47898a83f4dde26dc499" }, "downloads": -1, "filename": "schema_salad-8.1.20210721123742-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "1442df1f117c26ce3661552f818d192e", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 2488815, "upload_time": "2021-07-26T12:47:49", "upload_time_iso_8601": "2021-07-26T12:47:49.118736Z", "url": "https://files.pythonhosted.org/packages/82/14/b3e61122533803851dc42adb4d5649a5c3172c18442fe2990ba56596e9ca/schema_salad-8.1.20210721123742-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f68cf7762c385329dcee588346714ddb", "sha256": "2fc9abceeadaa649e1ed13f78234c1c3d78c124f1e0fc4bce4ca888eb295e321" }, "downloads": -1, "filename": "schema_salad-8.1.20210721123742-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "f68cf7762c385329dcee588346714ddb", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 2496787, "upload_time": "2021-07-26T12:47:50", "upload_time_iso_8601": "2021-07-26T12:47:50.803907Z", "url": "https://files.pythonhosted.org/packages/52/2b/79299927fd7d2471a4041051bb7ffaa202b89c14a58d449c4ae4f58479f6/schema_salad-8.1.20210721123742-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0e34bf94dcd7c64352db5c31ebc6c3b4", "sha256": "14f432fd84f6eb9804e616d47a985bc5dcb57f02cd9742a94e1b1194f6601c27" }, "downloads": -1, "filename": "schema_salad-8.1.20210721123742-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "0e34bf94dcd7c64352db5c31ebc6c3b4", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 2716122, "upload_time": "2021-07-26T12:47:52", "upload_time_iso_8601": "2021-07-26T12:47:52.494810Z", "url": "https://files.pythonhosted.org/packages/fa/40/f83228a98945fbb1424ad013b182a936cc09d808d4240d28a39cfcac0ae2/schema_salad-8.1.20210721123742-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2151195757f07123eac3b91a9e1f2052", "sha256": "23f7add7d880f0941617206c4ca51f8a25228ea580453c45ede9e6bf939dc24e" }, "downloads": -1, "filename": "schema_salad-8.1.20210721123742-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "2151195757f07123eac3b91a9e1f2052", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 2711878, "upload_time": "2021-07-26T12:47:54", "upload_time_iso_8601": "2021-07-26T12:47:54.003013Z", "url": "https://files.pythonhosted.org/packages/82/15/de3340a5d4718334d65cc3b4ab36afe458210e7ea1cf4cb49fdb3c714a4b/schema_salad-8.1.20210721123742-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5e5aab9c11cd407e566ec0480468b9ae", "sha256": "b2605f74deb84d1556ff1c87aa1177844bbb75534d0263ad7b67f96929cddc10" }, "downloads": -1, "filename": "schema_salad-8.1.20210721123742-py3-none-any.whl", "has_sig": false, "md5_digest": "5e5aab9c11cd407e566ec0480468b9ae", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 474291, "upload_time": "2021-07-26T11:54:17", "upload_time_iso_8601": "2021-07-26T11:54:17.090596Z", "url": "https://files.pythonhosted.org/packages/21/bf/e8767d1b81821e6cadd2b52f327b89362d6e6f6edc7fe95561904c518d2a/schema_salad-8.1.20210721123742-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bfa0707cd472ba8f4bf43b9e1c3322be", "sha256": "1549555b9b5656cfc690716f04fb76b9fa002feb278638c446522f030632b450" }, "downloads": -1, "filename": "schema-salad-8.1.20210721123742.tar.gz", "has_sig": false, "md5_digest": "bfa0707cd472ba8f4bf43b9e1c3322be", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 434688, "upload_time": "2021-07-26T11:54:19", "upload_time_iso_8601": "2021-07-26T11:54:19.429442Z", "url": "https://files.pythonhosted.org/packages/54/f3/9990b337e42222af22c2c05240c409b4875dbeadcc6d472c89709adc72f1/schema-salad-8.1.20210721123742.tar.gz", "yanked": false, "yanked_reason": null } ], "8.2.20210902094147": [ { "comment_text": "", "digests": { "md5": "aa61e22ce151771ea21019d78eb56dad", "sha256": "51603d9367e0e4b54107a66b438b523d4b3620624e7fb396aaa9bb386fa06ace" }, "downloads": -1, "filename": "schema_salad-8.2.20210902094147-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "aa61e22ce151771ea21019d78eb56dad", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 2131447, "upload_time": "2021-09-02T11:10:48", "upload_time_iso_8601": "2021-09-02T11:10:48.427788Z", "url": "https://files.pythonhosted.org/packages/d8/17/b77017609700d1935444fe6a776965ea3d6d68b659ee51ec9404c1a80f8a/schema_salad-8.2.20210902094147-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0f699c8b25485197fcf0ae8aedc4238b", "sha256": "c2793fa77784aa08536478653b603549af6535c6733198b79a4de65606393cf6" }, "downloads": -1, "filename": "schema_salad-8.2.20210902094147-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "0f699c8b25485197fcf0ae8aedc4238b", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 2220013, "upload_time": "2021-09-02T10:02:26", "upload_time_iso_8601": "2021-09-02T10:02:26.447287Z", "url": "https://files.pythonhosted.org/packages/e1/7d/f294334b1c8dc0d9c3ddee4f3a81ced6e87127496c963f55c137cf87cb0a/schema_salad-8.2.20210902094147-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d3265cbcb4b9bc49d316dd4701e9b631", "sha256": "226caa91789e02f12785a11844875e816368b750bb78b7572061ae9f8d4a316f" }, "downloads": -1, "filename": "schema_salad-8.2.20210902094147-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "d3265cbcb4b9bc49d316dd4701e9b631", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 2151856, "upload_time": "2021-09-02T10:02:27", "upload_time_iso_8601": "2021-09-02T10:02:27.981786Z", "url": "https://files.pythonhosted.org/packages/5f/2d/dd1b8c6cab9c8c5f4d92aeaeb8a955eaa5547fe46fb8e23f4d3a441214a0/schema_salad-8.2.20210902094147-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b821952e407b4996cf095b806b60789e", "sha256": "12914f3b7341e4bad00b94a382628f267b715d91de7f0c2afe701f2ed1d79f00" }, "downloads": -1, "filename": "schema_salad-8.2.20210902094147-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "b821952e407b4996cf095b806b60789e", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 2152486, "upload_time": "2021-09-02T11:10:50", "upload_time_iso_8601": "2021-09-02T11:10:50.903984Z", "url": "https://files.pythonhosted.org/packages/2f/b1/48a5acade0f4db8fe8fa1669b7e15922394583540b6045866bb1525ff81c/schema_salad-8.2.20210902094147-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d7576cb1e73dbb304168389d21950679", "sha256": "8a794f2a5dbb55c2d43d547c4d27e286c8f373183fd373b4669b37470e493999" }, "downloads": -1, "filename": "schema_salad-8.2.20210902094147-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "d7576cb1e73dbb304168389d21950679", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 2255902, "upload_time": "2021-09-02T10:02:29", "upload_time_iso_8601": "2021-09-02T10:02:29.790783Z", "url": "https://files.pythonhosted.org/packages/a5/83/6178b87ca28b15a2b8e784e54f5648a69ff25f4d675e16290f30dc63d75a/schema_salad-8.2.20210902094147-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e8e26977854efe3ba67ed3ff79f6028f", "sha256": "e623456d29988778d845dad4100d72ae275073e3010408521949b1c963e539db" }, "downloads": -1, "filename": "schema_salad-8.2.20210902094147-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "e8e26977854efe3ba67ed3ff79f6028f", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 2172996, "upload_time": "2021-09-02T10:02:31", "upload_time_iso_8601": "2021-09-02T10:02:31.198519Z", "url": "https://files.pythonhosted.org/packages/b8/63/4aa2d58b54d67efabd61a3ecf7499535d5ba4fbcf46794358c98dee141dc/schema_salad-8.2.20210902094147-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "641f1ec5823b6135b9b285ff917fa2f0", "sha256": "49c1df2741f92f3fdfa67b603d9dea5a4554920c212f9f3bed26f7927b8122e5" }, "downloads": -1, "filename": "schema_salad-8.2.20210902094147-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "641f1ec5823b6135b9b285ff917fa2f0", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 2396106, "upload_time": "2021-09-02T11:10:52", "upload_time_iso_8601": "2021-09-02T11:10:52.658515Z", "url": "https://files.pythonhosted.org/packages/a8/4c/5144a723cf907db3d15812f6040ad956e0ccfc781c56ed40d4141d45e171/schema_salad-8.2.20210902094147-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "aeb5c8c8d76fbb7b4acb81fbd5265bb1", "sha256": "7e188ef1a492d70f7a06eefd7c77a1dd50716ff3adcb7d84f55bf0a888e3be6e" }, "downloads": -1, "filename": "schema_salad-8.2.20210902094147-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "aeb5c8c8d76fbb7b4acb81fbd5265bb1", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 2495994, "upload_time": "2021-09-02T10:02:32", "upload_time_iso_8601": "2021-09-02T10:02:32.609336Z", "url": "https://files.pythonhosted.org/packages/87/c7/a2ec0c7ca91b74a209fd7f79b2e5f62c219b2f9e002b9e43d0c28f28f3d0/schema_salad-8.2.20210902094147-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2c2b0e26491cb6dac092b21ce36d0a5e", "sha256": "e6e7d2ee5f851801569eb19f43257ff8a4902b6adbb78298d01629dd9d9f0380" }, "downloads": -1, "filename": "schema_salad-8.2.20210902094147-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "2c2b0e26491cb6dac092b21ce36d0a5e", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 2392083, "upload_time": "2021-09-02T10:02:33", "upload_time_iso_8601": "2021-09-02T10:02:33.849408Z", "url": "https://files.pythonhosted.org/packages/08/16/482bd13511359df290e9e02961c2b85596208bee09fcbf3c58847ebf9f06/schema_salad-8.2.20210902094147-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "04b90502d9cddd7b61ac2c9f7ea20c18", "sha256": "10e613fa6166294332f64e71a594b05e3a4ed5081254f4bcbb4befa81764ee6e" }, "downloads": -1, "filename": "schema_salad-8.2.20210902094147-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "04b90502d9cddd7b61ac2c9f7ea20c18", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 2564365, "upload_time": "2021-09-02T11:10:54", "upload_time_iso_8601": "2021-09-02T11:10:54.214800Z", "url": "https://files.pythonhosted.org/packages/2a/83/f79d15a76c5ce4b0d19867f8dc21b91b3c9978b4f4c1a93b5a700db22625/schema_salad-8.2.20210902094147-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5081b26432b787c6a4f473822be68bc5", "sha256": "59d53f996fa2fe667655a49b282e2c4c42c7556e18bb701020a9fc51d0a8a418" }, "downloads": -1, "filename": "schema_salad-8.2.20210902094147-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "5081b26432b787c6a4f473822be68bc5", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 2724814, "upload_time": "2021-09-02T10:02:35", "upload_time_iso_8601": "2021-09-02T10:02:35.771351Z", "url": "https://files.pythonhosted.org/packages/ac/16/7ef76a649fe7f54dda10c505231a038cb962816e2ca634110e99e09066cb/schema_salad-8.2.20210902094147-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d2a278fa8a026c1e2698e31abbe6ffb5", "sha256": "546466e141312b5ad41a58e96fa84f445822a4b0c96ed417afdd8180be6240b2" }, "downloads": -1, "filename": "schema_salad-8.2.20210902094147-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "d2a278fa8a026c1e2698e31abbe6ffb5", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 2561240, "upload_time": "2021-09-02T10:02:37", "upload_time_iso_8601": "2021-09-02T10:02:37.214308Z", "url": "https://files.pythonhosted.org/packages/fd/48/6797c8d203e723907edb9c6e109c205384008981d5711329846c51f9e0d1/schema_salad-8.2.20210902094147-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "67e19c88887d9fe122d4ee357e65721f", "sha256": "f31c674780240e2618236acef5f9750b8c4e8b78174f3a96c8d903e78981ac0c" }, "downloads": -1, "filename": "schema_salad-8.2.20210902094147-py3-none-any.whl", "has_sig": false, "md5_digest": "67e19c88887d9fe122d4ee357e65721f", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 474858, "upload_time": "2021-09-02T09:51:17", "upload_time_iso_8601": "2021-09-02T09:51:17.288213Z", "url": "https://files.pythonhosted.org/packages/fd/ff/da6857efe1ae79e770544284a4adca5e2ace88de18ebcfef00e55c35d288/schema_salad-8.2.20210902094147-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "43a5fd8e944cc12c0876b8a74fda02b1", "sha256": "0f82b805c92581458ed201db5b65495d5ced8db9848b4d06d30e9ffd3abefb99" }, "downloads": -1, "filename": "schema-salad-8.2.20210902094147.tar.gz", "has_sig": false, "md5_digest": "43a5fd8e944cc12c0876b8a74fda02b1", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 435145, "upload_time": "2021-09-02T09:51:18", "upload_time_iso_8601": "2021-09-02T09:51:18.919350Z", "url": "https://files.pythonhosted.org/packages/93/12/5d9df8a216cd03ee4dd51bb82613229f9a98372e41545f50b026ffd22e02/schema-salad-8.2.20210902094147.tar.gz", "yanked": false, "yanked_reason": null } ], "8.2.20210914115719": [ { "comment_text": "", "digests": { "md5": "0c160ae1e64b75360fb26ba3bb0cfdd4", "sha256": "51eb9cdb7e5ad286ed99c3784e9a5085f58be3d2e3f3395a7e8a5fc0dfa4b6f5" }, "downloads": -1, "filename": "schema_salad-8.2.20210914115719-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "0c160ae1e64b75360fb26ba3bb0cfdd4", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 2134233, "upload_time": "2021-09-14T13:34:49", "upload_time_iso_8601": "2021-09-14T13:34:49.871486Z", "url": "https://files.pythonhosted.org/packages/89/ed/807fc7623293d1b3f82fd8fe150d7bfa0f8075a46753307451986cd6e979/schema_salad-8.2.20210914115719-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "810fb288db617bfa2437ef2229cf7c36", "sha256": "2d17add932927ea715abf80a46fe65609cd77afa7e67d165477b5df94a796916" }, "downloads": -1, "filename": "schema_salad-8.2.20210914115719-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "810fb288db617bfa2437ef2229cf7c36", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 2221070, "upload_time": "2021-09-14T12:20:11", "upload_time_iso_8601": "2021-09-14T12:20:11.850785Z", "url": "https://files.pythonhosted.org/packages/68/ef/f1dd9feb92bfd5ebd73b116b1fc9a9909d7c0d4c11598a3e12e8dac243e3/schema_salad-8.2.20210914115719-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "34ffaf579306257e4c940d97c5ec276b", "sha256": "80c9bbf5a5425d0ebc3f87000d1b671d677416726d976df99fc7333710bb2cc6" }, "downloads": -1, "filename": "schema_salad-8.2.20210914115719-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "34ffaf579306257e4c940d97c5ec276b", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 2152534, "upload_time": "2021-09-14T12:20:13", "upload_time_iso_8601": "2021-09-14T12:20:13.481404Z", "url": "https://files.pythonhosted.org/packages/f9/91/cd558b3beffb3ae82afaedf96f64c54d80dc57d6b5342db169e16cfd461a/schema_salad-8.2.20210914115719-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5c86c1ddc7e75ed457d5da3386df13fb", "sha256": "9b0742be11058e515af8cdf29916ded2ddbe65609efcc6ace7650cc269dc6619" }, "downloads": -1, "filename": "schema_salad-8.2.20210914115719-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "5c86c1ddc7e75ed457d5da3386df13fb", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 2155238, "upload_time": "2021-09-14T13:34:51", "upload_time_iso_8601": "2021-09-14T13:34:51.490484Z", "url": "https://files.pythonhosted.org/packages/18/a3/baf6287f1470a81438df8f2d0b2d7c6303c1efb99270f9f97e7a61da3d15/schema_salad-8.2.20210914115719-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "24b0b4486a3b925b2f2b3134166ac7b5", "sha256": "89fc810a2039ff9956a6ca9b6bdc5c7a1cb5783cf3bb4c9ac0596aa71c3b85c0" }, "downloads": -1, "filename": "schema_salad-8.2.20210914115719-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "24b0b4486a3b925b2f2b3134166ac7b5", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 2256865, "upload_time": "2021-09-14T12:20:15", "upload_time_iso_8601": "2021-09-14T12:20:15.283836Z", "url": "https://files.pythonhosted.org/packages/26/46/fe84f828d88ab64a9890e66d6c71f5c5e2a1cb34dfa1e2decb2bf319d35a/schema_salad-8.2.20210914115719-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e92dd71667abff7e5655eda456b68c6a", "sha256": "872cff6a08a05c9597e56c0b4737b702a62bc6dcbde3c87a42cd973070437aab" }, "downloads": -1, "filename": "schema_salad-8.2.20210914115719-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "e92dd71667abff7e5655eda456b68c6a", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 2174019, "upload_time": "2021-09-14T12:20:17", "upload_time_iso_8601": "2021-09-14T12:20:17.154049Z", "url": "https://files.pythonhosted.org/packages/8f/79/63eb80f972f8f43390fd37abf89311a39868a3640925aac2ba0e7e36fb33/schema_salad-8.2.20210914115719-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7323bd876e7551dc6d7ed130d9eb7e8d", "sha256": "3e76e678c8190be4ef3267f2bfa9a50c5ba3ffc60ae13eff4cb9c46e2f3eac52" }, "downloads": -1, "filename": "schema_salad-8.2.20210914115719-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "7323bd876e7551dc6d7ed130d9eb7e8d", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 2398482, "upload_time": "2021-09-14T13:34:53", "upload_time_iso_8601": "2021-09-14T13:34:53.093348Z", "url": "https://files.pythonhosted.org/packages/96/bf/6b6e94257a509c794087f915ccd5e687abde4d148dedf8215732092914ed/schema_salad-8.2.20210914115719-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2d8ffb4988ccd4c51a6c886fcdc204d1", "sha256": "81d16556d99f70aaa057c5955dad31f3a7185a845c0fd12a899ad6f15a76e55b" }, "downloads": -1, "filename": "schema_salad-8.2.20210914115719-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "2d8ffb4988ccd4c51a6c886fcdc204d1", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 2496249, "upload_time": "2021-09-14T12:20:19", "upload_time_iso_8601": "2021-09-14T12:20:19.338977Z", "url": "https://files.pythonhosted.org/packages/db/2f/712e69fd8ba3a481876be2bfa2893fa86e100e2832d11df79d3a052942a3/schema_salad-8.2.20210914115719-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "56413644aa2f2787159b99ade9418c81", "sha256": "c8587b9f788015b6b3db51b7834ba1fa3cdf0ece9acaba5b70083ec9f8f85749" }, "downloads": -1, "filename": "schema_salad-8.2.20210914115719-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "56413644aa2f2787159b99ade9418c81", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 2392630, "upload_time": "2021-09-14T12:20:21", "upload_time_iso_8601": "2021-09-14T12:20:21.294928Z", "url": "https://files.pythonhosted.org/packages/9c/4a/e2c6959f6bdca6b21223718af8be79cf046b2255a2ab19d7a2e40b2a0b2b/schema_salad-8.2.20210914115719-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "69b561f958dad87dbe780ef1f587f98f", "sha256": "f305bfaec4eb8fa03cd32dc88637858382687db65ea8ebe4bd8c461f3407723f" }, "downloads": -1, "filename": "schema_salad-8.2.20210914115719-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "69b561f958dad87dbe780ef1f587f98f", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 2566579, "upload_time": "2021-09-14T13:34:54", "upload_time_iso_8601": "2021-09-14T13:34:54.752241Z", "url": "https://files.pythonhosted.org/packages/85/71/d59787b0fbd6aef6f4764405eeed8841d763a6a59147840540ceb46f2277/schema_salad-8.2.20210914115719-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0ab83d85a0ac1305c37fd00756d8d13f", "sha256": "8669e0bbd2a4ac4750a05bb0dc3f7038766eaddd1f40957979b1ee42a6543586" }, "downloads": -1, "filename": "schema_salad-8.2.20210914115719-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "0ab83d85a0ac1305c37fd00756d8d13f", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 2726308, "upload_time": "2021-09-14T12:20:23", "upload_time_iso_8601": "2021-09-14T12:20:23.271470Z", "url": "https://files.pythonhosted.org/packages/dc/bf/4d8c9c593bbfb484220d6135d1fea8e18d3ee3a300eb8fbedd3a60a8bb4b/schema_salad-8.2.20210914115719-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "afb1b3a05e993ada215222bb9c425764", "sha256": "91f4afb5abcdc2b545d4491794c558f5bf54e75cf1b8bc99436011f563a9d0cd" }, "downloads": -1, "filename": "schema_salad-8.2.20210914115719-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "afb1b3a05e993ada215222bb9c425764", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 2561355, "upload_time": "2021-09-14T12:20:25", "upload_time_iso_8601": "2021-09-14T12:20:25.361256Z", "url": "https://files.pythonhosted.org/packages/9e/a4/7d2bd780851a8c679f8eaa146f72fab54b21444d2530cf51a8d3973819ef/schema_salad-8.2.20210914115719-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "286100faa789e18edfa17b9d50f6ec6c", "sha256": "f7e719e988b09bbf297f14268ed79a0dcd76536624bace1483fbfa183d32505d" }, "downloads": -1, "filename": "schema_salad-8.2.20210914115719-py3-none-any.whl", "has_sig": false, "md5_digest": "286100faa789e18edfa17b9d50f6ec6c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 475700, "upload_time": "2021-09-14T12:04:08", "upload_time_iso_8601": "2021-09-14T12:04:08.586156Z", "url": "https://files.pythonhosted.org/packages/17/3f/f72216d6f63b21e3b246205189ab4e7b937e3dbe5ef7c861cc2e7cc61e0f/schema_salad-8.2.20210914115719-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "57032ad2ee338e830322dd0e458414bd", "sha256": "928a8fd96e30bcb9c364d79126f5537a64fee1ae491d4860308f3e03cb1d038b" }, "downloads": -1, "filename": "schema-salad-8.2.20210914115719.tar.gz", "has_sig": false, "md5_digest": "57032ad2ee338e830322dd0e458414bd", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 436037, "upload_time": "2021-09-14T12:04:10", "upload_time_iso_8601": "2021-09-14T12:04:10.173997Z", "url": "https://files.pythonhosted.org/packages/de/fe/6e9c1c94d5ece937b74adedfbbd6dd3d5b7f76fb1370c916e1587a36a122/schema-salad-8.2.20210914115719.tar.gz", "yanked": false, "yanked_reason": null } ], "8.2.20210918131710": [ { "comment_text": "", "digests": { "md5": "6b8f879c0b0c14e1f2aab832f4688664", "sha256": "0986b0d2a774fd880c4230fcca1776136a3c7ecc0e238eb92731223a2240734d" }, "downloads": -1, "filename": "schema_salad-8.2.20210918131710-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "6b8f879c0b0c14e1f2aab832f4688664", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 2141988, "upload_time": "2021-09-20T13:29:35", "upload_time_iso_8601": "2021-09-20T13:29:35.309144Z", "url": "https://files.pythonhosted.org/packages/1c/60/6dad7b38369d77d0e14d8922e2cca14a7c90be5d92cd2c7d0f1bad4d9e95/schema_salad-8.2.20210918131710-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "75118fabb3226ccab3a18bd8ab97b8ce", "sha256": "343f06000bc2ce66f9812b279f3455a809d827085db00c89457cca3b54e988dd" }, "downloads": -1, "filename": "schema_salad-8.2.20210918131710-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "75118fabb3226ccab3a18bd8ab97b8ce", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 2230736, "upload_time": "2021-09-20T12:00:27", "upload_time_iso_8601": "2021-09-20T12:00:27.262786Z", "url": "https://files.pythonhosted.org/packages/8e/02/d896bcd2ad09d38bb7bdf0a7b1d1cf0691c4d2f2f2c3f53f7f673f7106b7/schema_salad-8.2.20210918131710-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "50a87f2d8047f5508c437fd7b42d5efb", "sha256": "dc73f284a930e352e131c633c71df5a75ecd525538c8bb4310befdfbe31e6a3c" }, "downloads": -1, "filename": "schema_salad-8.2.20210918131710-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "50a87f2d8047f5508c437fd7b42d5efb", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 2159333, "upload_time": "2021-09-20T12:00:28", "upload_time_iso_8601": "2021-09-20T12:00:28.996014Z", "url": "https://files.pythonhosted.org/packages/5d/17/c9b22973f9ab892fd003fc938aba490e56ccf5d22893812a0871c32f75ec/schema_salad-8.2.20210918131710-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d04bfd14ed6db6b0e277cb431965991e", "sha256": "772cf819a3b818bcd9e4dcf480935fd9802895374dea28368d3d0c308b8be15b" }, "downloads": -1, "filename": "schema_salad-8.2.20210918131710-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "d04bfd14ed6db6b0e277cb431965991e", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 2163840, "upload_time": "2021-09-20T13:29:37", "upload_time_iso_8601": "2021-09-20T13:29:37.007064Z", "url": "https://files.pythonhosted.org/packages/47/42/a80d65278ebe05faa82510af64f6f62dcee429631f13e2f36cb422e668b4/schema_salad-8.2.20210918131710-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4dbed38ca913cde65086cdf6d8c9cc62", "sha256": "3df32abede39bd56cd27800216f199e6c37eeedf42d31aa9b5b776f9a5e7a86b" }, "downloads": -1, "filename": "schema_salad-8.2.20210918131710-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "4dbed38ca913cde65086cdf6d8c9cc62", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 2263699, "upload_time": "2021-09-20T12:00:30", "upload_time_iso_8601": "2021-09-20T12:00:30.544505Z", "url": "https://files.pythonhosted.org/packages/5b/f8/b6030c15f0f866bc0a9faed495a574e5c47a9b6f59ab2dfc4ec8b82df52b/schema_salad-8.2.20210918131710-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c3f1354c0210e3df776723bf8980ad19", "sha256": "bd70da20d103ca4495a38f47ec2b8bf4fa8d6160676a073661f649efe8ad48e4" }, "downloads": -1, "filename": "schema_salad-8.2.20210918131710-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "c3f1354c0210e3df776723bf8980ad19", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 2181867, "upload_time": "2021-09-20T12:00:32", "upload_time_iso_8601": "2021-09-20T12:00:32.262698Z", "url": "https://files.pythonhosted.org/packages/16/0e/b3f4c883caa89d44787e8bf60fe91eb3abd730dd661dcafe7e2544d482b7/schema_salad-8.2.20210918131710-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c675c65d2e32725dc900cdffac61d67d", "sha256": "19feb2e2168979c56a92a44038d33bbe3cc70d62b585b70049fcddcfd76ad9ad" }, "downloads": -1, "filename": "schema_salad-8.2.20210918131710-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "c675c65d2e32725dc900cdffac61d67d", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 2407332, "upload_time": "2021-09-20T13:29:38", "upload_time_iso_8601": "2021-09-20T13:29:38.613912Z", "url": "https://files.pythonhosted.org/packages/30/c5/35104ad323ebff3e86ad3f10cd6b804b07413d6f84e2f3fe96c592ed211a/schema_salad-8.2.20210918131710-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8df2a880748fae02ef52de596f774efd", "sha256": "b56a42df3bcfa8cadc88c8b6898ca2691602e702bd1ce7acb670d9f2a2d0001e" }, "downloads": -1, "filename": "schema_salad-8.2.20210918131710-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "8df2a880748fae02ef52de596f774efd", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 2505330, "upload_time": "2021-09-20T12:00:34", "upload_time_iso_8601": "2021-09-20T12:00:34.326295Z", "url": "https://files.pythonhosted.org/packages/16/ab/7c44fc142de79461cd3bacdc17f4feb5cda7bf6289878ef6cb666d659f11/schema_salad-8.2.20210918131710-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "99bf40ad077d1adab9fa53a5cbe025e4", "sha256": "58a8bfec05abdaf96be82306a6107789c9fdef79bf55c8d397d02c285f9beef3" }, "downloads": -1, "filename": "schema_salad-8.2.20210918131710-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "99bf40ad077d1adab9fa53a5cbe025e4", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 2401529, "upload_time": "2021-09-20T12:00:36", "upload_time_iso_8601": "2021-09-20T12:00:36.292784Z", "url": "https://files.pythonhosted.org/packages/f6/a7/fcca17e104b237ed7c70c83a13a62a1e811a807d67553c5f881251ee6a2a/schema_salad-8.2.20210918131710-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "14fcd763cd3ff995a3fedb8970a97ac5", "sha256": "7edd240b64d3d26bd5276c709e47f848612a5bd37c964962ecdf20edbd8a75be" }, "downloads": -1, "filename": "schema_salad-8.2.20210918131710-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "14fcd763cd3ff995a3fedb8970a97ac5", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 2575149, "upload_time": "2021-09-20T13:29:40", "upload_time_iso_8601": "2021-09-20T13:29:40.379223Z", "url": "https://files.pythonhosted.org/packages/7d/69/c9b45d0b8ef5e6271212c137d867bd57fc30bc5d915f2213cf5a3a50957b/schema_salad-8.2.20210918131710-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "da5d89c0cc031d620b528f9173f0e704", "sha256": "4f7cfe19a7864cb0fb3bbf367a8b430752b9d65c9b87e25eaee2773242a73f28" }, "downloads": -1, "filename": "schema_salad-8.2.20210918131710-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "da5d89c0cc031d620b528f9173f0e704", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 2735183, "upload_time": "2021-09-20T12:00:37", "upload_time_iso_8601": "2021-09-20T12:00:37.477020Z", "url": "https://files.pythonhosted.org/packages/73/f8/56ae8ca45e388cf979378fb4c930767885832f20d186856625b6de22778e/schema_salad-8.2.20210918131710-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "608f75150631b1e2237316504c01a231", "sha256": "ca2f4c0a97df7ddd24e9985a53850863ef1554be8cc4a413e427a8ae2d293a64" }, "downloads": -1, "filename": "schema_salad-8.2.20210918131710-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "608f75150631b1e2237316504c01a231", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 2569904, "upload_time": "2021-09-20T12:00:39", "upload_time_iso_8601": "2021-09-20T12:00:39.054778Z", "url": "https://files.pythonhosted.org/packages/50/c3/f937c37a478b3cfe58f9bdc4aad80b6961561cdfa85699118f838cffefd0/schema_salad-8.2.20210918131710-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b913e5b2736687a057dd39b36f40f253", "sha256": "c6eab5fd4c0fa5aabf95d5b7ee093e53bc2197dcf58d1d4967023cf3b3bae4e5" }, "downloads": -1, "filename": "schema_salad-8.2.20210918131710-py3-none-any.whl", "has_sig": false, "md5_digest": "b913e5b2736687a057dd39b36f40f253", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 476370, "upload_time": "2021-09-20T11:47:41", "upload_time_iso_8601": "2021-09-20T11:47:41.740371Z", "url": "https://files.pythonhosted.org/packages/1d/a2/9df0dfb7b19a8d788556f9d99d84d373f0f60fa595ad4466d64a9ea7367a/schema_salad-8.2.20210918131710-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a5866659ca0d1ba796373f3b9f37b5c0", "sha256": "464180407f49a3533cd5a5bc7db9254769bc77595ea00562bbe4a50493f7f445" }, "downloads": -1, "filename": "schema-salad-8.2.20210918131710.tar.gz", "has_sig": false, "md5_digest": "a5866659ca0d1ba796373f3b9f37b5c0", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 454633, "upload_time": "2021-09-20T11:47:43", "upload_time_iso_8601": "2021-09-20T11:47:43.521237Z", "url": "https://files.pythonhosted.org/packages/f8/a6/b17b537a857b35124da515f5844ee5c34aafcf29d8bc5b6ee29cbb4ba7e8/schema-salad-8.2.20210918131710.tar.gz", "yanked": false, "yanked_reason": null } ], "8.2.20211014142459": [ { "comment_text": "", "digests": { "md5": "de5a126736ed3da82165474cbd1a4056", "sha256": "b6ec64d705f0deae617247348fb4d4817c54c1768123513cd8283b2dd9bd294a" }, "downloads": -1, "filename": "schema_salad-8.2.20211014142459-py3-none-any.whl", "has_sig": false, "md5_digest": "de5a126736ed3da82165474cbd1a4056", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 477065, "upload_time": "2021-10-14T14:30:08", "upload_time_iso_8601": "2021-10-14T14:30:08.085135Z", "url": "https://files.pythonhosted.org/packages/60/bc/9a7b0a9fcece635e43921e6df43da6139f2157194301a57c1414fcb4b96b/schema_salad-8.2.20211014142459-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1a7ddf3bcb8bcc1672c9bee319d17d78", "sha256": "8df0fab52814a42734e9472f10a5c3b6a3ca400e5664eb449fda145947bcf964" }, "downloads": -1, "filename": "schema-salad-8.2.20211014142459.tar.gz", "has_sig": false, "md5_digest": "1a7ddf3bcb8bcc1672c9bee319d17d78", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 459194, "upload_time": "2021-10-14T14:30:12", "upload_time_iso_8601": "2021-10-14T14:30:12.038313Z", "url": "https://files.pythonhosted.org/packages/cb/d1/d94d99e8867eb7798268b6f24f990f03bcae30c67069e613384179218820/schema-salad-8.2.20211014142459.tar.gz", "yanked": false, "yanked_reason": null } ], "8.2.20211014150008": [ { "comment_text": "", "digests": { "md5": "e01e16edc951f33e3e48f163304950ca", "sha256": "f03df1e33312aa14435b34ec7f21b210447e530bded3390dc25dad13708f8063" }, "downloads": -1, "filename": "schema_salad-8.2.20211014150008-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "e01e16edc951f33e3e48f163304950ca", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 2582023, "upload_time": "2021-10-14T18:04:23", "upload_time_iso_8601": "2021-10-14T18:04:23.532911Z", "url": "https://files.pythonhosted.org/packages/90/f2/e757e4c30fc235771a05aa506618dcf7935528931760c0b22a5f56c46c98/schema_salad-8.2.20211014150008-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0a2b785cdd1f86e278b28b3d4aaab852", "sha256": "eeaacc26dbc7c49208574dfdcc9e6c18429e51d6d084f1b14e39f065ef8d715e" }, "downloads": -1, "filename": "schema_salad-8.2.20211014150008-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "0a2b785cdd1f86e278b28b3d4aaab852", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 2746874, "upload_time": "2021-10-14T15:59:16", "upload_time_iso_8601": "2021-10-14T15:59:16.313256Z", "url": "https://files.pythonhosted.org/packages/69/dd/77e43f3fd283ff5fa075782c32ff0b6807f2fd045bc5574c4d0dda726d4e/schema_salad-8.2.20211014150008-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ee97bb09189985ab90cdbacab6cdb2f0", "sha256": "56c384e405adbf6b66192526ab277b6da4921ceab579a7a197d0500088549790" }, "downloads": -1, "filename": "schema_salad-8.2.20211014150008-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "ee97bb09189985ab90cdbacab6cdb2f0", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 2648815, "upload_time": "2021-10-14T15:59:18", "upload_time_iso_8601": "2021-10-14T15:59:18.921740Z", "url": "https://files.pythonhosted.org/packages/34/02/7c2e6d51ff41c1634c135b9c3fedb416856b6529611f3a45e6bed07ec31a/schema_salad-8.2.20211014150008-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cb6267d1f7bc497b676e16b557cb2200", "sha256": "2c2c6d44b4d154620893192998b67c9b93464b33ba209020a3895c2805351165" }, "downloads": -1, "filename": "schema_salad-8.2.20211014150008-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "cb6267d1f7bc497b676e16b557cb2200", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 2142449, "upload_time": "2021-10-14T18:04:26", "upload_time_iso_8601": "2021-10-14T18:04:26.960881Z", "url": "https://files.pythonhosted.org/packages/1a/94/4d74061cd073fd38374cba3d769d5c46bdeee14e6469da14b7e2c57f0a65/schema_salad-8.2.20211014150008-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f7df704580cb1976f150786a308b3bb7", "sha256": "57b839a77e224314a688302a200363c6d634a8c3399c41d54329422515782403" }, "downloads": -1, "filename": "schema_salad-8.2.20211014150008-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "f7df704580cb1976f150786a308b3bb7", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 2231202, "upload_time": "2021-10-14T15:59:21", "upload_time_iso_8601": "2021-10-14T15:59:21.581544Z", "url": "https://files.pythonhosted.org/packages/9e/3a/bc6e282bea12d49700012d84ec7751b5b60e74a5079cd9205c079f8c1d44/schema_salad-8.2.20211014150008-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "45b1aa5c892a5977be59c20b89d0b07d", "sha256": "7da19901458cb1ff1409d8eab3e13b0f9d3ae6aa55d38ec1ae0210c20128966e" }, "downloads": -1, "filename": "schema_salad-8.2.20211014150008-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "45b1aa5c892a5977be59c20b89d0b07d", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 2227322, "upload_time": "2021-10-14T15:59:23", "upload_time_iso_8601": "2021-10-14T15:59:23.680884Z", "url": "https://files.pythonhosted.org/packages/5d/6b/e20ba8a2b14a7dc6893f8a333377bfda7080140533c694fa52edb397a1f9/schema_salad-8.2.20211014150008-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "dcf26d325bc5bff5a2ffc8df24bfb02f", "sha256": "a00bf223db321b69b92e36ddbf935af1bad59d983686904b5c6e68b3a4f3d13f" }, "downloads": -1, "filename": "schema_salad-8.2.20211014150008-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "dcf26d325bc5bff5a2ffc8df24bfb02f", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 2164538, "upload_time": "2021-10-14T18:04:29", "upload_time_iso_8601": "2021-10-14T18:04:29.802543Z", "url": "https://files.pythonhosted.org/packages/25/ab/dc920abd1445ea18dafb5b88f2298a3c3175a9c6e1bdc3bcd915d1ad70df/schema_salad-8.2.20211014150008-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "dd1de6a63643c850ca9c1e888b5476a6", "sha256": "109aa065bc172e4a9741cc6e666cad82be7124143cbf2d1d0e58be1d764a138b" }, "downloads": -1, "filename": "schema_salad-8.2.20211014150008-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "dd1de6a63643c850ca9c1e888b5476a6", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 2264338, "upload_time": "2021-10-14T15:59:25", "upload_time_iso_8601": "2021-10-14T15:59:25.960912Z", "url": "https://files.pythonhosted.org/packages/f4/2d/c1d49ff295ab2d22113f4f4e99d7b3a690660824e2353b6e3ee93e4dbd67/schema_salad-8.2.20211014150008-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "926a4cf0b68930d60b14d1e673eea394", "sha256": "d971059386833d1003af6c78967e15154b3ef9a8d4abf2ef988dd74a0f8b0488" }, "downloads": -1, "filename": "schema_salad-8.2.20211014150008-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "926a4cf0b68930d60b14d1e673eea394", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 2261816, "upload_time": "2021-10-14T15:59:27", "upload_time_iso_8601": "2021-10-14T15:59:27.989926Z", "url": "https://files.pythonhosted.org/packages/6a/22/173e9796b9d19e7a34992c3b83fe9f7f14337a0fdb64849d1fca2b32c6f3/schema_salad-8.2.20211014150008-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7703ec2b722118255c0366feb75d5327", "sha256": "425edafe606409eb5fadaf9f2a586482db40f7a3c5ba42b35f31aec08671a914" }, "downloads": -1, "filename": "schema_salad-8.2.20211014150008-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "7703ec2b722118255c0366feb75d5327", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 2407878, "upload_time": "2021-10-14T18:04:32", "upload_time_iso_8601": "2021-10-14T18:04:32.168936Z", "url": "https://files.pythonhosted.org/packages/8e/b0/faa15897af227d7ceb59a910f439ce2a63b7794d3258e5161715591da23f/schema_salad-8.2.20211014150008-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7254d4cd559790c653ecd267c9a932fd", "sha256": "f1faf4f35d3787c4a43b42b907e82063a206ce65811546fc8a1f54f124f823f0" }, "downloads": -1, "filename": "schema_salad-8.2.20211014150008-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "7254d4cd559790c653ecd267c9a932fd", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 2505905, "upload_time": "2021-10-14T15:59:29", "upload_time_iso_8601": "2021-10-14T15:59:29.941074Z", "url": "https://files.pythonhosted.org/packages/6e/2d/f1a495c99d4a9da30cf8e61c0a6cbc2cc6680667c7b512ffced242123bc4/schema_salad-8.2.20211014150008-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e966d67f5b76ac5efafad9c8362b7928", "sha256": "03871ca767183a4619ec4edc9c2b46be0b57b0ceb9c7accca2b41a9350655335" }, "downloads": -1, "filename": "schema_salad-8.2.20211014150008-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "e966d67f5b76ac5efafad9c8362b7928", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 2467541, "upload_time": "2021-10-14T15:59:32", "upload_time_iso_8601": "2021-10-14T15:59:32.720973Z", "url": "https://files.pythonhosted.org/packages/16/d9/1f0768eb4e3eb4443da94498d09e22f5c629fd36a315efe712c7631566c2/schema_salad-8.2.20211014150008-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c4dfe0907e6972aebe90a8d963306cee", "sha256": "f644b77e11221f352647876bfa2c8a8c9c893b3be59df445dccbccc6f59417aa" }, "downloads": -1, "filename": "schema_salad-8.2.20211014150008-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "c4dfe0907e6972aebe90a8d963306cee", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 2575645, "upload_time": "2021-10-14T18:04:34", "upload_time_iso_8601": "2021-10-14T18:04:34.318395Z", "url": "https://files.pythonhosted.org/packages/fd/38/232942f4ea1226fd39142913d22c2dfbe42efb321ee71bf69cd8a922a9b2/schema_salad-8.2.20211014150008-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5ac0a5f1305f8c4a01aa93b716117ccb", "sha256": "f92eec46ae8349d388c581b0930677d9e3644f740ff73b185a2f298d5418b98e" }, "downloads": -1, "filename": "schema_salad-8.2.20211014150008-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "5ac0a5f1305f8c4a01aa93b716117ccb", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 2735887, "upload_time": "2021-10-14T15:59:34", "upload_time_iso_8601": "2021-10-14T15:59:34.792884Z", "url": "https://files.pythonhosted.org/packages/cf/98/a746dacce31d7acd7e78fc5ea9eae4243aafeff9ebb50def77de7ddd4fd5/schema_salad-8.2.20211014150008-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "435ce4cded71cad71325045f76676c03", "sha256": "818e5aee75649c458ccb38e186b69b6a07b81c4dc5f4fcdd2bb13ae6a6a23e55" }, "downloads": -1, "filename": "schema_salad-8.2.20211014150008-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "435ce4cded71cad71325045f76676c03", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 2640911, "upload_time": "2021-10-14T15:59:36", "upload_time_iso_8601": "2021-10-14T15:59:36.544727Z", "url": "https://files.pythonhosted.org/packages/bd/6e/54f998b879555b0660e3936b95817e6de0bee42cdddc3ae6169d7a1ae57c/schema_salad-8.2.20211014150008-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "941b8fc05cef8eff522938f9643ab86c", "sha256": "d66e9ba3d9853ba067a6c9e5757bbee259443c6a7bab2a249dda2985e168e934" }, "downloads": -1, "filename": "schema_salad-8.2.20211014150008-py3-none-any.whl", "has_sig": false, "md5_digest": "941b8fc05cef8eff522938f9643ab86c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 477066, "upload_time": "2021-10-14T15:41:27", "upload_time_iso_8601": "2021-10-14T15:41:27.720620Z", "url": "https://files.pythonhosted.org/packages/c2/c3/5142deba30cefc21f962d802343c4658323675375c8df259d03f682f5eb8/schema_salad-8.2.20211014150008-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c5743ffdee198f6094dec4532d67692a", "sha256": "9d6340138c262530295a7927c6b75a2407a2d54b361b2f4437dd3be4a73aa2a1" }, "downloads": -1, "filename": "schema-salad-8.2.20211014150008.tar.gz", "has_sig": false, "md5_digest": "c5743ffdee198f6094dec4532d67692a", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 455943, "upload_time": "2021-10-14T15:41:31", "upload_time_iso_8601": "2021-10-14T15:41:31.160990Z", "url": "https://files.pythonhosted.org/packages/46/04/4bd93283487336106b67091388d603da5434bacb63f220c466b0f8b2709c/schema-salad-8.2.20211014150008.tar.gz", "yanked": false, "yanked_reason": null } ], "8.2.20211015115235": [ { "comment_text": "", "digests": { "md5": "eec401ec4aaa9f2b8bb401fba468cb46", "sha256": "05c5d6714d733c2e447c3a6331bed5f4c49c0ef41c65c6facdfdd3a52de89695" }, "downloads": -1, "filename": "schema_salad-8.2.20211015115235-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "eec401ec4aaa9f2b8bb401fba468cb46", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 2582276, "upload_time": "2021-10-15T14:23:16", "upload_time_iso_8601": "2021-10-15T14:23:16.429989Z", "url": "https://files.pythonhosted.org/packages/dc/c0/1389ebe5041f9f006384d0f9ab03f49f4b996ee5372559746892eb5a39ce/schema_salad-8.2.20211015115235-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "17a478b18a4e9db3cd5f11ab9a9b6b15", "sha256": "96a4aa5c374912add81a8ba4ed2923c9ef06346c22a4af2cb131416b63147a46" }, "downloads": -1, "filename": "schema_salad-8.2.20211015115235-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "17a478b18a4e9db3cd5f11ab9a9b6b15", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 2747124, "upload_time": "2021-10-15T12:28:24", "upload_time_iso_8601": "2021-10-15T12:28:24.719264Z", "url": "https://files.pythonhosted.org/packages/85/f0/1b4dc7f427c787448a01042b145d770941e794f8a3b74fda272f4400b5bb/schema_salad-8.2.20211015115235-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "28a16937450448d551ca6fa7412a74f9", "sha256": "fa48d923d03b38bc09ecfedbda1d012b6677a81b4cdf3964e74f600097722a90" }, "downloads": -1, "filename": "schema_salad-8.2.20211015115235-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "28a16937450448d551ca6fa7412a74f9", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 2649066, "upload_time": "2021-10-15T12:28:26", "upload_time_iso_8601": "2021-10-15T12:28:26.161051Z", "url": "https://files.pythonhosted.org/packages/05/ef/f14a7d3fe850d0886dc643eea80e2f33830d0b1d7e626aeda01a5adeac83/schema_salad-8.2.20211015115235-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8e4c41f6e7c97c99edb1a555ec0e867e", "sha256": "2a54e90e772341261c012d6efc4393e7ae5c35ffffc87df5a8063399679b429f" }, "downloads": -1, "filename": "schema_salad-8.2.20211015115235-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "8e4c41f6e7c97c99edb1a555ec0e867e", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 2142700, "upload_time": "2021-10-15T14:23:20", "upload_time_iso_8601": "2021-10-15T14:23:20.508964Z", "url": "https://files.pythonhosted.org/packages/54/8c/7a438f514a974ecb2c2d196ab6a20f7a6ea27c56aac1e2412b747b3c7bad/schema_salad-8.2.20211015115235-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "19409b51b4099e6f6f29e7d571e61262", "sha256": "3278dae8f86f99e44fed883c295ffc84716cfdd9d9ae96640fa9b9b1c27a6dfc" }, "downloads": -1, "filename": "schema_salad-8.2.20211015115235-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "19409b51b4099e6f6f29e7d571e61262", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 2231453, "upload_time": "2021-10-15T12:28:27", "upload_time_iso_8601": "2021-10-15T12:28:27.588835Z", "url": "https://files.pythonhosted.org/packages/ae/ea/fb779196d50fcf06f8cc03ba07f31f62bb260b1a5e1dda1942fcadc5afb3/schema_salad-8.2.20211015115235-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "15590c09f565063506fd1e5fbad48cff", "sha256": "ee69ce31d05fe5a881352d963756e7f0bf272502e50e7d88daffad7634cebbb0" }, "downloads": -1, "filename": "schema_salad-8.2.20211015115235-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "15590c09f565063506fd1e5fbad48cff", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 2227573, "upload_time": "2021-10-15T12:28:29", "upload_time_iso_8601": "2021-10-15T12:28:29.560887Z", "url": "https://files.pythonhosted.org/packages/c9/51/6907afc4d13e6fcfafd6e2a2a97e33335ecf4d8c830abf40e0c8e2300b1e/schema_salad-8.2.20211015115235-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6399fcbbe8825bfcc64cc293787de33b", "sha256": "70a51289f1ebeaf7ed1d5283e57b28ab749158564e326da5d175fbc86444e607" }, "downloads": -1, "filename": "schema_salad-8.2.20211015115235-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "6399fcbbe8825bfcc64cc293787de33b", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 2164789, "upload_time": "2021-10-15T14:23:23", "upload_time_iso_8601": "2021-10-15T14:23:23.128888Z", "url": "https://files.pythonhosted.org/packages/eb/b2/d6054ee9ff5134ef98215d73632f425668229c08097da578e5ba6beea95a/schema_salad-8.2.20211015115235-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bb7912ca745b0b69813ab26f9902f2d9", "sha256": "f6c511f6c5bfc6731fa93b8276a9b9b031d1957470308c702b71b8a9ac046d3c" }, "downloads": -1, "filename": "schema_salad-8.2.20211015115235-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "bb7912ca745b0b69813ab26f9902f2d9", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 2264594, "upload_time": "2021-10-15T12:28:31", "upload_time_iso_8601": "2021-10-15T12:28:31.686825Z", "url": "https://files.pythonhosted.org/packages/1b/94/2fe50347ee08ce9d22e4fb3a41f0665456c17b51ed92527327246557f433/schema_salad-8.2.20211015115235-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f13b05cc9814b112b0ba28edf900a7a6", "sha256": "81027a74ca9f3a60fd8493c33dc9d1c75fb59f16410a0cee40f69192f6d4bf4a" }, "downloads": -1, "filename": "schema_salad-8.2.20211015115235-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "f13b05cc9814b112b0ba28edf900a7a6", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 2262070, "upload_time": "2021-10-15T12:28:33", "upload_time_iso_8601": "2021-10-15T12:28:33.269115Z", "url": "https://files.pythonhosted.org/packages/1b/b3/bf17e1c114a64b2d2a4851a59262e7e387bdfd76a9597c33fb7bc8a0cb5d/schema_salad-8.2.20211015115235-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4d039117e820635612c47bc71c4f97fc", "sha256": "67c45130184426ffeea4d5d5c806a3adc1ff1ee511276200eeb09e7fc402c6ae" }, "downloads": -1, "filename": "schema_salad-8.2.20211015115235-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "4d039117e820635612c47bc71c4f97fc", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 2408128, "upload_time": "2021-10-15T14:23:25", "upload_time_iso_8601": "2021-10-15T14:23:25.680736Z", "url": "https://files.pythonhosted.org/packages/88/e7/206e6736e2da18d0740ff964b2fb3b89fc75abd6e79f91203c8543fb28b8/schema_salad-8.2.20211015115235-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "56e3a8aad0547ef1ca76b78378089c73", "sha256": "96ef79137ff1334d119434726c1290ee903a5c77e778b7b48dfc85f0f56ca183" }, "downloads": -1, "filename": "schema_salad-8.2.20211015115235-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "56e3a8aad0547ef1ca76b78378089c73", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 2506159, "upload_time": "2021-10-15T12:28:35", "upload_time_iso_8601": "2021-10-15T12:28:35.065547Z", "url": "https://files.pythonhosted.org/packages/7c/95/c13ffd22150e80b193925dd6cab309e2cc6156e665845dd07473bb3c1b0b/schema_salad-8.2.20211015115235-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f0554bd78a45417e54335ce4f4b4074b", "sha256": "07a1bc2f5e8448c80e78eb189a9087518c5719ad9c169b25717d4e141477482a" }, "downloads": -1, "filename": "schema_salad-8.2.20211015115235-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "f0554bd78a45417e54335ce4f4b4074b", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 2467797, "upload_time": "2021-10-15T12:28:36", "upload_time_iso_8601": "2021-10-15T12:28:36.917149Z", "url": "https://files.pythonhosted.org/packages/87/6d/37530c6cd7c262529fcde79503a1944c57598f6109b9643bcc15ef3e515b/schema_salad-8.2.20211015115235-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b5ce1331d9e93acd375a32f6ac600245", "sha256": "f13171e5bbe98adabf89a782a4a73554e5cb6b23fef9e7986f09e6d11549093e" }, "downloads": -1, "filename": "schema_salad-8.2.20211015115235-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "b5ce1331d9e93acd375a32f6ac600245", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 2575899, "upload_time": "2021-10-15T14:23:28", "upload_time_iso_8601": "2021-10-15T14:23:28.012889Z", "url": "https://files.pythonhosted.org/packages/70/ba/23abfbfc427c1387646a57f7b53ddb2c4ea14d4db58c8e27d3ffe340492c/schema_salad-8.2.20211015115235-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f380e261422aa5a41ff71efe83facc69", "sha256": "cee8b7815b42736df6d382b859580f89e32cc57d5da52a186dd279629968c64b" }, "downloads": -1, "filename": "schema_salad-8.2.20211015115235-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "f380e261422aa5a41ff71efe83facc69", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 2736140, "upload_time": "2021-10-15T12:28:38", "upload_time_iso_8601": "2021-10-15T12:28:38.476882Z", "url": "https://files.pythonhosted.org/packages/ec/a7/0db17a0f69d51afc8bd5a0f8244a00abe87164e848dd786ea137e64898d5/schema_salad-8.2.20211015115235-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "edc427cc0037ee6e9f7f5c56d1a323c7", "sha256": "11d2a937285302d960ada64b2077d7cdfada9cacfba7ca3d6adb71dec7709bc3" }, "downloads": -1, "filename": "schema_salad-8.2.20211015115235-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "edc427cc0037ee6e9f7f5c56d1a323c7", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 2641164, "upload_time": "2021-10-15T12:28:40", "upload_time_iso_8601": "2021-10-15T12:28:40.128442Z", "url": "https://files.pythonhosted.org/packages/74/3f/726f21e530903ff2b67fbe9f1c3a5ea1a1d5696ad1e1b676e03df5ffbd99/schema_salad-8.2.20211015115235-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "08d77ed875a0c4a7991c56eae014895e", "sha256": "4512b95ea4e30055714eae121b3f846ec434b21905d196f2a82e7c36a5564f88" }, "downloads": -1, "filename": "schema_salad-8.2.20211015115235-py3-none-any.whl", "has_sig": false, "md5_digest": "08d77ed875a0c4a7991c56eae014895e", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 477324, "upload_time": "2021-10-15T12:07:22", "upload_time_iso_8601": "2021-10-15T12:07:22.117060Z", "url": "https://files.pythonhosted.org/packages/05/c0/f138a78d0dc81fc061db54b171de61dd20fe980b131f35bc050ae287d7f2/schema_salad-8.2.20211015115235-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5fd384d30af6abf26af6adfcae504ef1", "sha256": "270c4e90e19b1a02cef7d72689c6a19e2e56489f3863253b53f30eddb11cce17" }, "downloads": -1, "filename": "schema-salad-8.2.20211015115235.tar.gz", "has_sig": false, "md5_digest": "5fd384d30af6abf26af6adfcae504ef1", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 456438, "upload_time": "2021-10-15T12:07:24", "upload_time_iso_8601": "2021-10-15T12:07:24.548594Z", "url": "https://files.pythonhosted.org/packages/5c/07/c7c609a8dd8630d00622ea2454aa55dbc05fd692f70d931cf8e5c39d0786/schema-salad-8.2.20211015115235.tar.gz", "yanked": false, "yanked_reason": null } ], "8.2.20211020114435": [ { "comment_text": "", "digests": { "md5": "9f78a55ce3d6134763ef4d0b2bbaa53d", "sha256": "e9867170cfd8209cb1be85e5a5760bcee058484f1f7103e01d151df813db5074" }, "downloads": -1, "filename": "schema_salad-8.2.20211020114435-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "9f78a55ce3d6134763ef4d0b2bbaa53d", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 2588513, "upload_time": "2021-10-20T15:22:52", "upload_time_iso_8601": "2021-10-20T15:22:52.921485Z", "url": "https://files.pythonhosted.org/packages/fc/81/c48dda3536ad8a3e246d9f5b45ec062f3122172a76a9c2e67f3057320516/schema_salad-8.2.20211020114435-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0022e777e259e59dcb48705e60efe484", "sha256": "17846215c9d7ed63ce461f40f6f70e0328bee59771a4167e3241b7d7c60e4a91" }, "downloads": -1, "filename": "schema_salad-8.2.20211020114435-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "0022e777e259e59dcb48705e60efe484", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 2751529, "upload_time": "2021-10-20T13:09:26", "upload_time_iso_8601": "2021-10-20T13:09:26.933338Z", "url": "https://files.pythonhosted.org/packages/4c/20/48cf60113096c0bd7fcd338e196f2e967560b42ded019e3589f76debf849/schema_salad-8.2.20211020114435-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f1426c56c266129278980177d1ae5f57", "sha256": "e608cb7093e67fcb7fab8e2311b18e814637595ec638fe092f05f8894d3cdba8" }, "downloads": -1, "filename": "schema_salad-8.2.20211020114435-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "f1426c56c266129278980177d1ae5f57", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 2654921, "upload_time": "2021-10-20T13:09:29", "upload_time_iso_8601": "2021-10-20T13:09:29.361337Z", "url": "https://files.pythonhosted.org/packages/a5/56/e8169175ab1ae7fc7bd9504c4a2cbfe566d0128c77c43a8ca5c60668a827/schema_salad-8.2.20211020114435-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "751d09702f942ab2aac5faab0a2ed979", "sha256": "e8c568ea7241f994ddcc91e3b39f6161f7086736e827073b21a2d85145ab06b3" }, "downloads": -1, "filename": "schema_salad-8.2.20211020114435-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "751d09702f942ab2aac5faab0a2ed979", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 2141828, "upload_time": "2021-10-20T15:22:54", "upload_time_iso_8601": "2021-10-20T15:22:54.363502Z", "url": "https://files.pythonhosted.org/packages/71/11/c24d7c8493e9e363845703e956bfeb5f1f01adcc5daf27b2350355ecb94b/schema_salad-8.2.20211020114435-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "25092329a7658a70c56a7c607f3f2120", "sha256": "83a7a86d7f93bb5190e82d51d3cd4c1df037a76157d2dd18a5f8d3aa10c84652" }, "downloads": -1, "filename": "schema_salad-8.2.20211020114435-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "25092329a7658a70c56a7c607f3f2120", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 2230311, "upload_time": "2021-10-20T13:09:32", "upload_time_iso_8601": "2021-10-20T13:09:32.300354Z", "url": "https://files.pythonhosted.org/packages/5b/9d/6db0f2d67099b5cdec56c971cd1286615a63f5c024e335cbad2d54cf214a/schema_salad-8.2.20211020114435-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "62aaaa4cb1db7c363a9922bb585bbd68", "sha256": "fc006ab067c197c186efa3ac008b0b4910c7d95ff89d5f6f8111d7411533145c" }, "downloads": -1, "filename": "schema_salad-8.2.20211020114435-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "62aaaa4cb1db7c363a9922bb585bbd68", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 2227746, "upload_time": "2021-10-20T13:09:34", "upload_time_iso_8601": "2021-10-20T13:09:34.843264Z", "url": "https://files.pythonhosted.org/packages/a0/a6/ae13d406cc882427024fb91507bafa54b5765a5811de6cda6615710172e0/schema_salad-8.2.20211020114435-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d97469c504d0440c6fdce1f612399351", "sha256": "ddda8384d89134d80886e0fc707b5614003b96ac0ceb9f3757aa6f997da5587f" }, "downloads": -1, "filename": "schema_salad-8.2.20211020114435-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "d97469c504d0440c6fdce1f612399351", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 2163492, "upload_time": "2021-10-20T15:22:55", "upload_time_iso_8601": "2021-10-20T15:22:55.971906Z", "url": "https://files.pythonhosted.org/packages/40/5d/9798902dcce978043da710d590b734e93f218cbaeba73f276baef7130147/schema_salad-8.2.20211020114435-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cac4f147016f3374925fdf2f2bec254a", "sha256": "722b5a3a58d804250ddcd8b84898e48879b6941b45fe32d496558d264fc9e997" }, "downloads": -1, "filename": "schema_salad-8.2.20211020114435-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "cac4f147016f3374925fdf2f2bec254a", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 2265438, "upload_time": "2021-10-20T13:09:37", "upload_time_iso_8601": "2021-10-20T13:09:37.773307Z", "url": "https://files.pythonhosted.org/packages/21/de/40be980b11c20c428f19872046d8bc8e4845970eddca7d231eaeaa896a1b/schema_salad-8.2.20211020114435-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "68e57edb8e2db976798a04aeb99e0f23", "sha256": "d21bda5ef3a57239928a58726efc91f583e661d0a0d985a66084288cace9b632" }, "downloads": -1, "filename": "schema_salad-8.2.20211020114435-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "68e57edb8e2db976798a04aeb99e0f23", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 2261501, "upload_time": "2021-10-20T13:09:39", "upload_time_iso_8601": "2021-10-20T13:09:39.585649Z", "url": "https://files.pythonhosted.org/packages/38/26/10f0ac3624aa8a2a12ca10254a4238aab8000b46880fe41caba254f4e4ee/schema_salad-8.2.20211020114435-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4c17a3dba0e7c2d43fd7ac846cdaa0f5", "sha256": "444afb4c0d3fb0140244ec39904020e8b6b310f0873f29bddaa6f607ab4219b7" }, "downloads": -1, "filename": "schema_salad-8.2.20211020114435-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "4c17a3dba0e7c2d43fd7ac846cdaa0f5", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 2412603, "upload_time": "2021-10-20T15:22:57", "upload_time_iso_8601": "2021-10-20T15:22:57.979107Z", "url": "https://files.pythonhosted.org/packages/60/da/8fd7aa74fb7efb001348b0f155fc2e3c53630de5b50dcabd95a208ca0eb5/schema_salad-8.2.20211020114435-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "492922dd9296299f90f883cc83bcd5ff", "sha256": "ddd79d7b6d44b3b6947726780ded41a8763aac75a34282a3ad1cb7a822a64b74" }, "downloads": -1, "filename": "schema_salad-8.2.20211020114435-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "492922dd9296299f90f883cc83bcd5ff", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 2512833, "upload_time": "2021-10-20T13:09:41", "upload_time_iso_8601": "2021-10-20T13:09:41.812887Z", "url": "https://files.pythonhosted.org/packages/b8/1e/2bd9b55f4872d87a55de228f2f6ecbb2a95d487a3d430426e88fff143145/schema_salad-8.2.20211020114435-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3e09b77f0df4903595a27a10cde80895", "sha256": "ed1a2f1d2b6ef31f4ebb05cf7072c2fccee499065c7bc8dba07346208bde6012" }, "downloads": -1, "filename": "schema_salad-8.2.20211020114435-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "3e09b77f0df4903595a27a10cde80895", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 2473637, "upload_time": "2021-10-20T13:09:44", "upload_time_iso_8601": "2021-10-20T13:09:44.003652Z", "url": "https://files.pythonhosted.org/packages/24/35/83d0c28be2c7a9cfa8363cefadb394834d360ee1ef909f1bf56d6a71a4e7/schema_salad-8.2.20211020114435-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0b8ba4e7b3202057e4d7e040fdae3364", "sha256": "592dfee7991199fa5ae87a899332696a32f78ab17e3331a0f176115b32739f52" }, "downloads": -1, "filename": "schema_salad-8.2.20211020114435-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "0b8ba4e7b3202057e4d7e040fdae3364", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 2582036, "upload_time": "2021-10-20T15:22:59", "upload_time_iso_8601": "2021-10-20T15:22:59.868889Z", "url": "https://files.pythonhosted.org/packages/80/84/bcb6da55d7d53e331c5aa31e00fd24ac88ce4753dffaf74bd38b0dc2d5c1/schema_salad-8.2.20211020114435-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6ad6dd7385e3027677d95af10488bd50", "sha256": "566ac77079327187917db7893a8515b0789891a97c90973c3e94a88e779a4573" }, "downloads": -1, "filename": "schema_salad-8.2.20211020114435-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "6ad6dd7385e3027677d95af10488bd50", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 2740817, "upload_time": "2021-10-20T13:09:45", "upload_time_iso_8601": "2021-10-20T13:09:45.619361Z", "url": "https://files.pythonhosted.org/packages/4b/35/1408e5165858b8dee3285adae1dfb3e41e7267a51e4368ad1095c1dcb6ca/schema_salad-8.2.20211020114435-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "300b937aa868c434a0b3d383bcd5477c", "sha256": "89f90610b4d656bc243f85e51317e4f58cea00d90145de56307682c3504420f9" }, "downloads": -1, "filename": "schema_salad-8.2.20211020114435-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "300b937aa868c434a0b3d383bcd5477c", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 2646272, "upload_time": "2021-10-20T13:09:47", "upload_time_iso_8601": "2021-10-20T13:09:47.788160Z", "url": "https://files.pythonhosted.org/packages/8d/a5/65edf0a11716dc314b1dd4f67e1f5dfc6335a7545dd8ace83553d9c828c9/schema_salad-8.2.20211020114435-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "92c1f20a818805d510e9a6c921f36b4d", "sha256": "86ba4111f598a97c63e164ba07b0cac214b4d9bdb135f94bab58c1a49eb3a924" }, "downloads": -1, "filename": "schema_salad-8.2.20211020114435-py3-none-any.whl", "has_sig": false, "md5_digest": "92c1f20a818805d510e9a6c921f36b4d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 477742, "upload_time": "2021-10-20T12:27:08", "upload_time_iso_8601": "2021-10-20T12:27:08.829643Z", "url": "https://files.pythonhosted.org/packages/18/27/327bcaf7263d6b49aefdfa3a3c23cd8605e897296b0e13b8a84819ff1f95/schema_salad-8.2.20211020114435-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d68a4f0eb7ab8073711c8e4e94e864b4", "sha256": "39c9b731f1304f041dc8fbb40bb91b89c3a5e0121e7ddf7b74e58fff505fcbee" }, "downloads": -1, "filename": "schema-salad-8.2.20211020114435.tar.gz", "has_sig": false, "md5_digest": "d68a4f0eb7ab8073711c8e4e94e864b4", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 456897, "upload_time": "2021-10-20T12:27:10", "upload_time_iso_8601": "2021-10-20T12:27:10.366935Z", "url": "https://files.pythonhosted.org/packages/c7/f1/138fa33feed1c1efcc98cab10a0dce88a988e9d4a8def90d11e31e7594a4/schema-salad-8.2.20211020114435.tar.gz", "yanked": false, "yanked_reason": null } ], "8.2.20211029004247": [ { "comment_text": "", "digests": { "md5": "2b6f80bdb6acd8802ccba89cb74762c7", "sha256": "fb6f5d0ab1ae08b6e435a87d0306d9a02fc602c7de6c6d200d6614bfd7d4d89a" }, "downloads": -1, "filename": "schema_salad-8.2.20211029004247-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "2b6f80bdb6acd8802ccba89cb74762c7", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 2595516, "upload_time": "2021-10-29T03:52:37", "upload_time_iso_8601": "2021-10-29T03:52:37.871202Z", "url": "https://files.pythonhosted.org/packages/b6/34/57e890a72832f90b452acfa0d4a45ad36a10c46db5723f868bf02b55c022/schema_salad-8.2.20211029004247-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "01497f303d4c042565d5a58155e15ae8", "sha256": "2b664023278dc7234dc162bd3dd4dc030892bac2411f8455616ced720296457f" }, "downloads": -1, "filename": "schema_salad-8.2.20211029004247-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "01497f303d4c042565d5a58155e15ae8", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 2758681, "upload_time": "2021-10-29T01:35:08", "upload_time_iso_8601": "2021-10-29T01:35:08.540335Z", "url": "https://files.pythonhosted.org/packages/cc/14/3bbd9dbcd36a57b769759fb9e30fadad7a133fb6b05cb0a1c74833b91386/schema_salad-8.2.20211029004247-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "55a9409fafce7e32d01dbced8cf14521", "sha256": "641ee5403e1b4d930aa9fc76b24cd87d1edb1ba249cef3254a1a84126cc3f875" }, "downloads": -1, "filename": "schema_salad-8.2.20211029004247-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "55a9409fafce7e32d01dbced8cf14521", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 2661534, "upload_time": "2021-10-29T01:35:10", "upload_time_iso_8601": "2021-10-29T01:35:10.357530Z", "url": "https://files.pythonhosted.org/packages/3f/17/3e9c8ea90702cef79a797bab73248683373ebbe02e25b7a2ca8e2fe92c05/schema_salad-8.2.20211029004247-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "02eab83775e0d0a0bc951772daaac61d", "sha256": "71646d789806469b506d20acf27466321357edf41ea788489ee605da82a472f9" }, "downloads": -1, "filename": "schema_salad-8.2.20211029004247-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "02eab83775e0d0a0bc951772daaac61d", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 2150034, "upload_time": "2021-10-29T03:52:40", "upload_time_iso_8601": "2021-10-29T03:52:40.049059Z", "url": "https://files.pythonhosted.org/packages/2e/83/862f6e2f5101d33ffcf2e144aca4577867a9c9b9ca4df3e98b8db96bc9a6/schema_salad-8.2.20211029004247-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "281747e089c0d2b4714cedbb11e4a8ef", "sha256": "6124e5a79a595f06b12683813f93d40c712d77d91336881505c1f49b8da2ae41" }, "downloads": -1, "filename": "schema_salad-8.2.20211029004247-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "281747e089c0d2b4714cedbb11e4a8ef", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 2239606, "upload_time": "2021-10-29T01:35:12", "upload_time_iso_8601": "2021-10-29T01:35:12.194484Z", "url": "https://files.pythonhosted.org/packages/68/76/a087fc79a3311a0bce501ceb09a9230291d660c56297bd3b93d776b88326/schema_salad-8.2.20211029004247-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "90bd05935757c272f3feda9e3a44a6ad", "sha256": "8de1f332a3bc5d472cd80f8366079a1e022c796cdfb14f41c60ca032bc27646f" }, "downloads": -1, "filename": "schema_salad-8.2.20211029004247-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "90bd05935757c272f3feda9e3a44a6ad", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 2234580, "upload_time": "2021-10-29T01:35:14", "upload_time_iso_8601": "2021-10-29T01:35:14.075280Z", "url": "https://files.pythonhosted.org/packages/0c/74/1f8024451d811385108e15fcb862dad8947c56a00312caf939b9ed51f8f5/schema_salad-8.2.20211029004247-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b26ce15ad16a14b505e62707adbb594d", "sha256": "02a9e3e88fdf65fb210ba70ebb6237ae895c58e4d5bdb49f0e16982e4da73671" }, "downloads": -1, "filename": "schema_salad-8.2.20211029004247-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "b26ce15ad16a14b505e62707adbb594d", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 2170881, "upload_time": "2021-10-29T03:52:41", "upload_time_iso_8601": "2021-10-29T03:52:41.661762Z", "url": "https://files.pythonhosted.org/packages/af/ec/62b5032ab020d2f8162831e0e26d48bdf3de969dba3900e8891dba80d82d/schema_salad-8.2.20211029004247-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "58f1f8f3471845f9f9ebd47000834344", "sha256": "ddd39f04d9f1bb4b563efb1a8f19130be935e0f24fcda7646c9e632499668d71" }, "downloads": -1, "filename": "schema_salad-8.2.20211029004247-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "58f1f8f3471845f9f9ebd47000834344", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 2272223, "upload_time": "2021-10-29T01:35:15", "upload_time_iso_8601": "2021-10-29T01:35:15.486758Z", "url": "https://files.pythonhosted.org/packages/db/1f/d0087ef4c070f4380c90443cf231b2170cb5d9fe5b205d307a645d841ae9/schema_salad-8.2.20211029004247-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "538372d57e59f80fa7fac2acf7df5898", "sha256": "6f69c8ee6b6f8468bfcad2c1db487c26f2da245bb7c42337a1772e388cab27ce" }, "downloads": -1, "filename": "schema_salad-8.2.20211029004247-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "538372d57e59f80fa7fac2acf7df5898", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 2268047, "upload_time": "2021-10-29T01:35:17", "upload_time_iso_8601": "2021-10-29T01:35:17.192085Z", "url": "https://files.pythonhosted.org/packages/4e/f9/0313166a8ae62f72c72bd20908435e58febec46b3b2a5936807214c333b5/schema_salad-8.2.20211029004247-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "46eeef3bbc61a1bfd3d7452fe39473b6", "sha256": "3506ee655930fed4998a2547ae62e2fb2acc1c692ab99552c3ae2faf5d7edc54" }, "downloads": -1, "filename": "schema_salad-8.2.20211029004247-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "46eeef3bbc61a1bfd3d7452fe39473b6", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 2421415, "upload_time": "2021-10-29T03:52:43", "upload_time_iso_8601": "2021-10-29T03:52:43.347733Z", "url": "https://files.pythonhosted.org/packages/49/5e/fc01ab21c3eec85110228d9ee43da74a85f01eee32942dbfb54e6ad045a9/schema_salad-8.2.20211029004247-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "22c2259ac4084aa3a80426aca2207395", "sha256": "e85c940386a9c6bd2e88862c84a29047fb408f692e7eab0e7040a6abceff699e" }, "downloads": -1, "filename": "schema_salad-8.2.20211029004247-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "22c2259ac4084aa3a80426aca2207395", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 2519628, "upload_time": "2021-10-29T01:35:18", "upload_time_iso_8601": "2021-10-29T01:35:18.387376Z", "url": "https://files.pythonhosted.org/packages/ea/42/8e7e25d37058917a8d232480794727fadf34ac9d7d3c2bd2e9431db234e7/schema_salad-8.2.20211029004247-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "02fa76140d09258faa57003c86dfd333", "sha256": "95b145bc92b9452dbac191cb08b6ab38c6eb28d5c76c50e1917a12a94ffb88ff" }, "downloads": -1, "filename": "schema_salad-8.2.20211029004247-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "02fa76140d09258faa57003c86dfd333", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 2480458, "upload_time": "2021-10-29T01:35:19", "upload_time_iso_8601": "2021-10-29T01:35:19.673578Z", "url": "https://files.pythonhosted.org/packages/5a/c7/8a28ba04ac6c791ca0827efa07f7ec5539d0c0105c5694f899c8daf9b442/schema_salad-8.2.20211029004247-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1b67c17c18ae13364e201315a198a006", "sha256": "904b90e04e1f4860e4b11971788128640dd6160ce6b8dfe2414511fc8e01de5e" }, "downloads": -1, "filename": "schema_salad-8.2.20211029004247-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "1b67c17c18ae13364e201315a198a006", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 2589689, "upload_time": "2021-10-29T03:52:44", "upload_time_iso_8601": "2021-10-29T03:52:44.705834Z", "url": "https://files.pythonhosted.org/packages/26/30/ecd3831471c018d2d4d50c13727b5aa92c91a624ac962216f06b456bdf73/schema_salad-8.2.20211029004247-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b64944f01caef8143d227dbfa602073d", "sha256": "fb54badb16736ff081234f0351e5804aeeff417ac974a573af70f93138a6c3ab" }, "downloads": -1, "filename": "schema_salad-8.2.20211029004247-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "b64944f01caef8143d227dbfa602073d", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 2748046, "upload_time": "2021-10-29T01:35:21", "upload_time_iso_8601": "2021-10-29T01:35:21.125505Z", "url": "https://files.pythonhosted.org/packages/49/d1/41856ed485f4d59da6ce857dc0140e1dd08fc7fe6fc9ed32965a9fbcaee3/schema_salad-8.2.20211029004247-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7414c520e35310a1e999014e9e4885e7", "sha256": "3c6a711b3854cc9ef2696ddba328a7ebdd17c030eae32c1005e57c8e6425bb5a" }, "downloads": -1, "filename": "schema_salad-8.2.20211029004247-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "7414c520e35310a1e999014e9e4885e7", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 2654568, "upload_time": "2021-10-29T01:35:22", "upload_time_iso_8601": "2021-10-29T01:35:22.462144Z", "url": "https://files.pythonhosted.org/packages/2a/5c/67a38ef71794dcf30e94839888069da56640a9c8291491c9f5b70076e14b/schema_salad-8.2.20211029004247-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0d3918d58f14b08a049acbddcdc48d6e", "sha256": "ae82a31fba967be9995ab65069a2b59f632532fbf8d4d617304a09f051502faa" }, "downloads": -1, "filename": "schema_salad-8.2.20211029004247-py3-none-any.whl", "has_sig": false, "md5_digest": "0d3918d58f14b08a049acbddcdc48d6e", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 478343, "upload_time": "2021-10-29T00:48:04", "upload_time_iso_8601": "2021-10-29T00:48:04.593494Z", "url": "https://files.pythonhosted.org/packages/f8/84/95d845234c14788e858565d1dd6a1a1df1beb578b80bd0679b903fb4fc4a/schema_salad-8.2.20211029004247-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f9ca617a2407f58a370f6d9e4c234627", "sha256": "3f60d579244d952c8c62bb6b1cd3e1642fd60d338607196e487508c1fb76d168" }, "downloads": -1, "filename": "schema-salad-8.2.20211029004247.tar.gz", "has_sig": false, "md5_digest": "f9ca617a2407f58a370f6d9e4c234627", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 457378, "upload_time": "2021-10-29T00:48:07", "upload_time_iso_8601": "2021-10-29T00:48:07.299635Z", "url": "https://files.pythonhosted.org/packages/54/32/b14075c794a3e7d2697341fbebbd06b4dfdf07d4ba967c2824ba80ef2533/schema-salad-8.2.20211029004247.tar.gz", "yanked": false, "yanked_reason": null } ], "8.2.20211103155537": [ { "comment_text": "", "digests": { "md5": "89f7625f11d1ea0e26af449c84fbb777", "sha256": "274c173fbb13fe19e71a75d8b32b0f4a4d15582908d1dd4783519ee3639e7d6c" }, "downloads": -1, "filename": "schema_salad-8.2.20211103155537-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "89f7625f11d1ea0e26af449c84fbb777", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 2596345, "upload_time": "2021-11-03T21:24:37", "upload_time_iso_8601": "2021-11-03T21:24:37.498073Z", "url": "https://files.pythonhosted.org/packages/cc/21/24c650bacefb1af9c58e23e299fd84b4f02b0ae6662a27149938abf57df9/schema_salad-8.2.20211103155537-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "95500ffbae33ea8e1ca32c1855f75550", "sha256": "ec99166fde372eddc9f57f96e884f629894b3263f705c9e7db652ae239964283" }, "downloads": -1, "filename": "schema_salad-8.2.20211103155537-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "95500ffbae33ea8e1ca32c1855f75550", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 2759182, "upload_time": "2021-11-03T19:23:34", "upload_time_iso_8601": "2021-11-03T19:23:34.320988Z", "url": "https://files.pythonhosted.org/packages/bf/82/56c75b5544e00cb543cbde823d07865a63897d926fd1d823b91ee52d89cf/schema_salad-8.2.20211103155537-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "45b72d90a9fdd83afb9900f298c1424e", "sha256": "1d0df7b4c376b48365506d2175bb6fc6a26780d547278d5531644a30d2bc169c" }, "downloads": -1, "filename": "schema_salad-8.2.20211103155537-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "45b72d90a9fdd83afb9900f298c1424e", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 2662270, "upload_time": "2021-11-03T19:23:35", "upload_time_iso_8601": "2021-11-03T19:23:35.992930Z", "url": "https://files.pythonhosted.org/packages/01/22/d64146b36481ab6e1d7648ad9e96b8d5e3a7ebf431f48ecf6e83efcf5530/schema_salad-8.2.20211103155537-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3ddf3fe29f7cd4c0bcad6d482893b09d", "sha256": "fe92c1ee5cac72225253b7268c724ffc0d72b32844d40779b3813754c69933b1" }, "downloads": -1, "filename": "schema_salad-8.2.20211103155537-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "3ddf3fe29f7cd4c0bcad6d482893b09d", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 2150357, "upload_time": "2021-11-03T21:24:39", "upload_time_iso_8601": "2021-11-03T21:24:39.462725Z", "url": "https://files.pythonhosted.org/packages/44/59/2cc738c4581b9d2855ac42b70d010d5702a730fc9b1e5c701ee0d1f9630e/schema_salad-8.2.20211103155537-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "451e8d78922cb2264ebbcf9b8a312352", "sha256": "6381e22c1b9d87ea0772fe48ca9544f5fe897f704643b7eaa56634340fd43f70" }, "downloads": -1, "filename": "schema_salad-8.2.20211103155537-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "451e8d78922cb2264ebbcf9b8a312352", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 2239913, "upload_time": "2021-11-03T19:23:37", "upload_time_iso_8601": "2021-11-03T19:23:37.424096Z", "url": "https://files.pythonhosted.org/packages/ef/fb/ef451440679f68c485276cd4cf1a80ec62a6074cc83e60ec821f96bef012/schema_salad-8.2.20211103155537-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "94691329cce0566c8fe44df3510f58e6", "sha256": "635762ea61b9ca6850bf56568d51919fc8d499ff33b783f8e85479d0fdf45334" }, "downloads": -1, "filename": "schema_salad-8.2.20211103155537-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "94691329cce0566c8fe44df3510f58e6", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 2235339, "upload_time": "2021-11-03T19:23:39", "upload_time_iso_8601": "2021-11-03T19:23:39.608770Z", "url": "https://files.pythonhosted.org/packages/bd/34/465951e9773826055301641207a7a9f450e9840bfb1cb2f6625c7917f147/schema_salad-8.2.20211103155537-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c9c83afaef0e94387597fffef923e182", "sha256": "0335bbba2fd74bbf3093eb139232a99cc4a1c4eb1df7a894ddbc529536dc7c8a" }, "downloads": -1, "filename": "schema_salad-8.2.20211103155537-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "c9c83afaef0e94387597fffef923e182", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 2171265, "upload_time": "2021-11-03T21:24:40", "upload_time_iso_8601": "2021-11-03T21:24:40.938958Z", "url": "https://files.pythonhosted.org/packages/cc/f4/a1e112ed9f694d69a5d8bfcf49e36429e5281ce3a2cb638f4f4aaff7bc56/schema_salad-8.2.20211103155537-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "15c8387a634da47784687d368c0fcc93", "sha256": "85eef37ca6708f2df1d6a12689f233e448d06291407257d2152e0b2a824dcd5c" }, "downloads": -1, "filename": "schema_salad-8.2.20211103155537-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "15c8387a634da47784687d368c0fcc93", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 2272594, "upload_time": "2021-11-03T19:23:41", "upload_time_iso_8601": "2021-11-03T19:23:41.953370Z", "url": "https://files.pythonhosted.org/packages/0d/6e/98bfbcf2bcddc3f8e4a8763a9eeac45b82dd8f7c1fe5c36ca34fee89ab41/schema_salad-8.2.20211103155537-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "15816d24c78c923942bb428768d6536d", "sha256": "065e3c523ee07241f657469c7339d3d0b77847ffdb1eccdee37e9ba20d781edb" }, "downloads": -1, "filename": "schema_salad-8.2.20211103155537-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "15816d24c78c923942bb428768d6536d", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 2268422, "upload_time": "2021-11-03T19:23:43", "upload_time_iso_8601": "2021-11-03T19:23:43.742741Z", "url": "https://files.pythonhosted.org/packages/70/e1/d5bc1b0c109bcd9e4fde4438882f4960fc97a8a6e96cf2358c8a429da351/schema_salad-8.2.20211103155537-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d268915a3b5f2829d7d6d2adf54b4db5", "sha256": "cf0ed3bd3a4e97631dabc9730f6642ddd8c80bd7ff917690c90e22d4677e11fa" }, "downloads": -1, "filename": "schema_salad-8.2.20211103155537-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "d268915a3b5f2829d7d6d2adf54b4db5", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 2421559, "upload_time": "2021-11-03T21:24:42", "upload_time_iso_8601": "2021-11-03T21:24:42.466242Z", "url": "https://files.pythonhosted.org/packages/74/54/5f828f0dfb251855e176ed482fa2c746bfd076bd8c80088b76fd4dcf9c1d/schema_salad-8.2.20211103155537-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "582c9b8048b29decc9b24c0103d67747", "sha256": "c31a4f58dba803210763e90c23f203d1ff9bec420f9c7ee7db9b552e69509074" }, "downloads": -1, "filename": "schema_salad-8.2.20211103155537-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "582c9b8048b29decc9b24c0103d67747", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 2519716, "upload_time": "2021-11-03T19:23:45", "upload_time_iso_8601": "2021-11-03T19:23:45.165860Z", "url": "https://files.pythonhosted.org/packages/36/49/00bde2648b5903ba8d6764c699b1fe909e204e2eecdd40fdd8d8a6ae9085/schema_salad-8.2.20211103155537-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "417b5978f170f71957103a75c95e06f0", "sha256": "999f9afcb6976017470f35622b3b635730eda58e81fe959e57279be1f5390889" }, "downloads": -1, "filename": "schema_salad-8.2.20211103155537-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "417b5978f170f71957103a75c95e06f0", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 2481088, "upload_time": "2021-11-03T19:23:46", "upload_time_iso_8601": "2021-11-03T19:23:46.850662Z", "url": "https://files.pythonhosted.org/packages/87/c3/976595c75bf9a47406ee69e50705afe60e0f50225ebeac77906363006fed/schema_salad-8.2.20211103155537-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "844a2bbfda74bec52dd609d532d49d56", "sha256": "f128dfe1b98ced3146376e5d6f5d4dd114917816bdd36bc61cfb9a156ec5aba4" }, "downloads": -1, "filename": "schema_salad-8.2.20211103155537-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "844a2bbfda74bec52dd609d532d49d56", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 2590065, "upload_time": "2021-11-03T21:24:43", "upload_time_iso_8601": "2021-11-03T21:24:43.941597Z", "url": "https://files.pythonhosted.org/packages/04/b6/06a78811b6092bfc8e5f3f629077a9a84debc72579f6cbb30196379ebc3b/schema_salad-8.2.20211103155537-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8c6082a6aa2dd21e0ba1cff335255043", "sha256": "4844c00ebeb441a9e6eaa2c2e07acdcdfff7a60c9e5c9130a38b81c78b992266" }, "downloads": -1, "filename": "schema_salad-8.2.20211103155537-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "8c6082a6aa2dd21e0ba1cff335255043", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 2748659, "upload_time": "2021-11-03T19:23:48", "upload_time_iso_8601": "2021-11-03T19:23:48.718252Z", "url": "https://files.pythonhosted.org/packages/77/80/162eac18cfc824d1a443c1b26d9366be55fdd4e86fe90c4f82975adbb4e9/schema_salad-8.2.20211103155537-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f1c2b89a3b2236e0f742672a08863642", "sha256": "61e69ed89784b2935dc4ff539562ec1d65189fe2831755320b5ff62f559e2252" }, "downloads": -1, "filename": "schema_salad-8.2.20211103155537-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "f1c2b89a3b2236e0f742672a08863642", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 2654840, "upload_time": "2021-11-03T19:23:51", "upload_time_iso_8601": "2021-11-03T19:23:51.227111Z", "url": "https://files.pythonhosted.org/packages/63/e3/027f93c62ea26ee21e0f8999d0c360501e5f446850d7cd17a55552f1f218/schema_salad-8.2.20211103155537-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "85ff283924120d5a8029721511bcc3db", "sha256": "b0d15c7591748c35ea6b99a3f681680696b50e81106501b6f9c98cf0f29dcac1" }, "downloads": -1, "filename": "schema_salad-8.2.20211103155537-py3-none-any.whl", "has_sig": false, "md5_digest": "85ff283924120d5a8029721511bcc3db", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 478380, "upload_time": "2021-11-03T17:07:58", "upload_time_iso_8601": "2021-11-03T17:07:58.049384Z", "url": "https://files.pythonhosted.org/packages/d6/b7/aced2ae16beac32bfacc643dcb575fec7d5c93e4dbbc5d2fe2eea2d6f29f/schema_salad-8.2.20211103155537-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "88e7e4d742d422e7b7f212dd4709aac6", "sha256": "97fd009cdc591a27d24021392ccbb76de47645f27e32626cd3f68c3302ddc1f4" }, "downloads": -1, "filename": "schema-salad-8.2.20211103155537.tar.gz", "has_sig": false, "md5_digest": "88e7e4d742d422e7b7f212dd4709aac6", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 457393, "upload_time": "2021-11-03T17:07:59", "upload_time_iso_8601": "2021-11-03T17:07:59.710377Z", "url": "https://files.pythonhosted.org/packages/e3/e5/b56d1938ddefc6c9ab5ec80e543bf3e63223f5e47ddad1cd0591ba882ed3/schema-salad-8.2.20211103155537.tar.gz", "yanked": false, "yanked_reason": null } ], "8.2.20211104054942": [ { "comment_text": "", "digests": { "md5": "5a7becd3d6a6af319d4c1802d1d49f20", "sha256": "b3bcb7742e12424e0cf0e0daa7980535fa9ffb8b27b1d5e94e3877dd94cd0137" }, "downloads": -1, "filename": "schema_salad-8.2.20211104054942-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "5a7becd3d6a6af319d4c1802d1d49f20", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 2599741, "upload_time": "2021-11-04T08:20:02", "upload_time_iso_8601": "2021-11-04T08:20:02.008141Z", "url": "https://files.pythonhosted.org/packages/43/4b/96c9d80533b14874170fcdaa5d261ec84411900e8376ea9368aa60a917f0/schema_salad-8.2.20211104054942-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "01bee654b4d62da2ba1e3014b14f6150", "sha256": "34d6e783fd8ff44258fda132f6e2953547a78b9c813833a0e96e979422630ad2" }, "downloads": -1, "filename": "schema_salad-8.2.20211104054942-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "01bee654b4d62da2ba1e3014b14f6150", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 2762054, "upload_time": "2021-11-04T06:13:43", "upload_time_iso_8601": "2021-11-04T06:13:43.284626Z", "url": "https://files.pythonhosted.org/packages/ef/0c/8c17f7a3136ee628ed75859096bc49cc1864d04ccccce1185166e0dea77d/schema_salad-8.2.20211104054942-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cf06e321ede39a5d7672dc0aa80c9ffe", "sha256": "f96795f31287f238c5e6e0a5e415f19d4a40a6d5db87482a0dfc80c9fa8e6da4" }, "downloads": -1, "filename": "schema_salad-8.2.20211104054942-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "cf06e321ede39a5d7672dc0aa80c9ffe", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 2664740, "upload_time": "2021-11-04T06:13:46", "upload_time_iso_8601": "2021-11-04T06:13:46.214722Z", "url": "https://files.pythonhosted.org/packages/26/05/0929f46d7c1123dd89e4d6dd17557d0d249d787a540a515c329cfee1300f/schema_salad-8.2.20211104054942-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ba4ea3f604b24be418d2a2fbbbdce167", "sha256": "168705b291933fe279f37b3879c7a71575bccec740fce371e748287f839f4071" }, "downloads": -1, "filename": "schema_salad-8.2.20211104054942-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "ba4ea3f604b24be418d2a2fbbbdce167", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 2153597, "upload_time": "2021-11-04T08:20:03", "upload_time_iso_8601": "2021-11-04T08:20:03.922445Z", "url": "https://files.pythonhosted.org/packages/b0/e5/d2ffc1a33cf1059760e2fc3a4a5fa1571f4300b5b4cff004b2f388eb712c/schema_salad-8.2.20211104054942-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a31c0e7bc20a5ae9896e57c1e3c7ac44", "sha256": "c81186628d9a8ac2083568a50405f21a7cf8d57fbdc6d3a25c1bc2a9739cf8ae" }, "downloads": -1, "filename": "schema_salad-8.2.20211104054942-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "a31c0e7bc20a5ae9896e57c1e3c7ac44", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 2242041, "upload_time": "2021-11-04T06:13:48", "upload_time_iso_8601": "2021-11-04T06:13:48.018243Z", "url": "https://files.pythonhosted.org/packages/c4/f3/a9a24287b09ef3c48c912c24d4bc4c5f7f1f9c79bb3374e2582c46170dac/schema_salad-8.2.20211104054942-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "925bdc93738cf8d32b135eca7f7264d8", "sha256": "ad49a6f2b7985a2dab3abb94c165c64f3d609525b2c771f48c5ae506f6b09230" }, "downloads": -1, "filename": "schema_salad-8.2.20211104054942-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "925bdc93738cf8d32b135eca7f7264d8", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 2238117, "upload_time": "2021-11-04T06:13:50", "upload_time_iso_8601": "2021-11-04T06:13:50.189471Z", "url": "https://files.pythonhosted.org/packages/6f/60/7a56d668eeab69f2f21fd3fcfb3662b908c81972618a00406b669cbbb5d6/schema_salad-8.2.20211104054942-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9b16ba37bad206b5eb7e92387067f68a", "sha256": "ee655a82c2b72bb7869b0046601476e8f1e48c49cdd70f0a9b279c1debbd4efe" }, "downloads": -1, "filename": "schema_salad-8.2.20211104054942-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "9b16ba37bad206b5eb7e92387067f68a", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 2173575, "upload_time": "2021-11-04T08:20:05", "upload_time_iso_8601": "2021-11-04T08:20:05.108607Z", "url": "https://files.pythonhosted.org/packages/79/f7/9e888d14f3cc1553088ed049e9316af9c642fac704cd165464d7865be016/schema_salad-8.2.20211104054942-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "325d18b60324008c88e3376da7e166a6", "sha256": "3d27edb0e48017a58094934e88b8a17df82d25bc3004c50b5dc65cd40af6ed26" }, "downloads": -1, "filename": "schema_salad-8.2.20211104054942-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "325d18b60324008c88e3376da7e166a6", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 2274172, "upload_time": "2021-11-04T06:13:52", "upload_time_iso_8601": "2021-11-04T06:13:52.215736Z", "url": "https://files.pythonhosted.org/packages/c2/a9/51ff3d86bfa11355dc88d74f76c467e7ee1bc5257a798d611491e7986028/schema_salad-8.2.20211104054942-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8a52da55c5f488245d6baaad862ae833", "sha256": "86b833e084db9c682d99f444df32ec9fe4e448de2dd45806a655134372a35176" }, "downloads": -1, "filename": "schema_salad-8.2.20211104054942-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "8a52da55c5f488245d6baaad862ae833", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 2270998, "upload_time": "2021-11-04T06:13:54", "upload_time_iso_8601": "2021-11-04T06:13:54.057110Z", "url": "https://files.pythonhosted.org/packages/1b/7b/4ff4a9811524cd1006f96b0cfe1ffd457d06c65132f3f36318dd97ad8cec/schema_salad-8.2.20211104054942-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5a3cff49a0adc0406bdadc912e0aa736", "sha256": "ad61ee42c6a71d4baa442cfc7d575861c993a99d7daa281fa31a8228597463a5" }, "downloads": -1, "filename": "schema_salad-8.2.20211104054942-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "5a3cff49a0adc0406bdadc912e0aa736", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 2425140, "upload_time": "2021-11-04T08:20:06", "upload_time_iso_8601": "2021-11-04T08:20:06.794394Z", "url": "https://files.pythonhosted.org/packages/1d/9a/6e0e0d35945ef37872c89d8e0ee5ad75311ec16a2a2493f2c45fccbc8eab/schema_salad-8.2.20211104054942-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "64b3bd9dfe2988ea2109b78ed790e2f9", "sha256": "a1108d43b5f7d8f774c441e08bb32bdeadd3dfe9235ec4e1b1da1ed051e12b02" }, "downloads": -1, "filename": "schema_salad-8.2.20211104054942-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "64b3bd9dfe2988ea2109b78ed790e2f9", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 2522291, "upload_time": "2021-11-04T06:13:56", "upload_time_iso_8601": "2021-11-04T06:13:56.116811Z", "url": "https://files.pythonhosted.org/packages/86/f1/b4c3702f0fc7190d817bd1a368780b36a945729b08c166b548fcbee3da95/schema_salad-8.2.20211104054942-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a02b6f269c0a66a9720222f2cf111d35", "sha256": "258ff2a2f8918781e6572db495ec42f78affb24a0184f3dcdc3d2a951f75fe98" }, "downloads": -1, "filename": "schema_salad-8.2.20211104054942-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "a02b6f269c0a66a9720222f2cf111d35", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 2483996, "upload_time": "2021-11-04T06:13:57", "upload_time_iso_8601": "2021-11-04T06:13:57.535637Z", "url": "https://files.pythonhosted.org/packages/37/ef/ba5e9dfcef72e73803ead46954bb0b773df248579a6865feecbd094725e4/schema_salad-8.2.20211104054942-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "adb038051fd33834b02a7df8a01c905d", "sha256": "33c664c0ff8f97808c606cb8c25c1a2c849d7e5cea362e0db23256be4e734ac9" }, "downloads": -1, "filename": "schema_salad-8.2.20211104054942-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "adb038051fd33834b02a7df8a01c905d", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 2592349, "upload_time": "2021-11-04T08:20:08", "upload_time_iso_8601": "2021-11-04T08:20:08.085655Z", "url": "https://files.pythonhosted.org/packages/ad/1e/6667c9bbe0bfa06fad16a9a667006af95e0c214380e5470cdb2d1081c188/schema_salad-8.2.20211104054942-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1baf9723efcc14601680766eaaf74ba7", "sha256": "a2fe3c78526bb9199d07e3f27101ae8a18e97c6fa1452d288828d568ede25390" }, "downloads": -1, "filename": "schema_salad-8.2.20211104054942-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "1baf9723efcc14601680766eaaf74ba7", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 2752025, "upload_time": "2021-11-04T06:13:58", "upload_time_iso_8601": "2021-11-04T06:13:58.932886Z", "url": "https://files.pythonhosted.org/packages/17/a9/ec8fe1c44147cab69546f8cbf5d044e286475d710f6022a81ef9be717822/schema_salad-8.2.20211104054942-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "58dd1a40c0dc8afa7111fda67781b7d4", "sha256": "98ea6a211731b9cf968a01afe19a745b05575fd93886c9e5785f277d32e330da" }, "downloads": -1, "filename": "schema_salad-8.2.20211104054942-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "58dd1a40c0dc8afa7111fda67781b7d4", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 2657694, "upload_time": "2021-11-04T06:14:01", "upload_time_iso_8601": "2021-11-04T06:14:01.200272Z", "url": "https://files.pythonhosted.org/packages/ea/57/8bb243b6a1570790d5701fb41b619808c0b321248c850b547a7cd17d288c/schema_salad-8.2.20211104054942-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6ee5e3acc4a78b00422a15ab9abc2090", "sha256": "50f8665572ac9d17d36d9fd846b4180e04aae9a473d5aa9e4cc3479469186869" }, "downloads": -1, "filename": "schema_salad-8.2.20211104054942-py3-none-any.whl", "has_sig": false, "md5_digest": "6ee5e3acc4a78b00422a15ab9abc2090", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 478598, "upload_time": "2021-11-04T05:59:38", "upload_time_iso_8601": "2021-11-04T05:59:38.276327Z", "url": "https://files.pythonhosted.org/packages/e3/2c/55a068b5edfde81793386cb764059a7925f757579f086a47c06ab013c958/schema_salad-8.2.20211104054942-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2aabefdec710f686092935f3a69d1072", "sha256": "d5cacac8038df226416313fa6e18f43315777d2a670a1dcbaa9f31f7528b053f" }, "downloads": -1, "filename": "schema-salad-8.2.20211104054942.tar.gz", "has_sig": false, "md5_digest": "2aabefdec710f686092935f3a69d1072", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 457578, "upload_time": "2021-11-04T05:59:39", "upload_time_iso_8601": "2021-11-04T05:59:39.889192Z", "url": "https://files.pythonhosted.org/packages/82/dc/acef3e8f8d5fccd47148e6d8bc5d9072b4368006e1dbdbf1d0a28cb72a96/schema-salad-8.2.20211104054942.tar.gz", "yanked": false, "yanked_reason": null } ], "8.2.20211116214159": [ { "comment_text": "", "digests": { "md5": "25abf4402d1fd5daa7501fbef2cd93e6", "sha256": "9d4ab4de11b87ff51c648b3769e331e0b5fb5c7b2083cc99c8fca648e42c7fc0" }, "downloads": -1, "filename": "schema_salad-8.2.20211116214159-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "25abf4402d1fd5daa7501fbef2cd93e6", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 2599308, "upload_time": "2021-11-17T17:08:21", "upload_time_iso_8601": "2021-11-17T17:08:21.873464Z", "url": "https://files.pythonhosted.org/packages/14/a4/50007bd12b65846d9a88c584ed4642292124ee08c5298101660d0be6a7b6/schema_salad-8.2.20211116214159-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "33e5d3dee5c9f6e11924f0393b9868ce", "sha256": "a9e80b482387e5e529748fa48c44835fcd4eb45611a21283a59855921a86106e" }, "downloads": -1, "filename": "schema_salad-8.2.20211116214159-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "33e5d3dee5c9f6e11924f0393b9868ce", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 2762155, "upload_time": "2021-11-17T15:07:25", "upload_time_iso_8601": "2021-11-17T15:07:25.531902Z", "url": "https://files.pythonhosted.org/packages/8e/c3/4e2e10405e883231e99b72c870ceea680252b765ec4d02b93d55bc752143/schema_salad-8.2.20211116214159-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7e9cd806edacdaf2830ed73b491f8581", "sha256": "b3b7ab8ee71d530cec26477922ab5e3363b534a6e861b6736bc1f11f4e480806" }, "downloads": -1, "filename": "schema_salad-8.2.20211116214159-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "7e9cd806edacdaf2830ed73b491f8581", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 2664846, "upload_time": "2021-11-17T15:07:27", "upload_time_iso_8601": "2021-11-17T15:07:27.996004Z", "url": "https://files.pythonhosted.org/packages/1b/2c/1735acaeedb4d2699da3d4a0acf748f62b8d60d095de8d41a6bd292125e4/schema_salad-8.2.20211116214159-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e97caab48d5806f33438cd0dd0b52516", "sha256": "70ac01c3d1f06fa98ee6311600d07e53dd746d0a9ae494e53b25261e64b61a4c" }, "downloads": -1, "filename": "schema_salad-8.2.20211116214159-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "e97caab48d5806f33438cd0dd0b52516", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 2154759, "upload_time": "2021-11-17T17:08:24", "upload_time_iso_8601": "2021-11-17T17:08:24.241235Z", "url": "https://files.pythonhosted.org/packages/66/17/1c32f77d18fb4c3efa99abaa8166e18bddb3d06eb40a179556ed27871920/schema_salad-8.2.20211116214159-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3006613d2466e444a2d30de9a7ff7216", "sha256": "39f8e3d7593117de772663f6ae67780e5df6c7366d0824fd48fc1fbde963e0a5" }, "downloads": -1, "filename": "schema_salad-8.2.20211116214159-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "3006613d2466e444a2d30de9a7ff7216", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 2243324, "upload_time": "2021-11-17T15:07:29", "upload_time_iso_8601": "2021-11-17T15:07:29.515862Z", "url": "https://files.pythonhosted.org/packages/82/88/657b6b00f8644d07cd4b6e25caf5627763b2128f5c840050785510ef9ccb/schema_salad-8.2.20211116214159-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bbef0132b47473934900d0e5030bc9b0", "sha256": "6e5237cb825f91ee81b46ebb7078be1cc3fdd09fc86d938b63887243fcacf439" }, "downloads": -1, "filename": "schema_salad-8.2.20211116214159-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "bbef0132b47473934900d0e5030bc9b0", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 2239145, "upload_time": "2021-11-17T15:07:31", "upload_time_iso_8601": "2021-11-17T15:07:31.784278Z", "url": "https://files.pythonhosted.org/packages/a0/d5/ceb12771bc336e4bfc28de63a28818f463f0e0071866c2d1a5956181cefd/schema_salad-8.2.20211116214159-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b64b34d5283f4e0e06a28e316fe7bb14", "sha256": "c4981f020b6ae84c2be1f43ec5be94d3aa5a6a5b0f593b9f96c984b96267d2ea" }, "downloads": -1, "filename": "schema_salad-8.2.20211116214159-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "b64b34d5283f4e0e06a28e316fe7bb14", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 2175183, "upload_time": "2021-11-17T17:08:25", "upload_time_iso_8601": "2021-11-17T17:08:25.865984Z", "url": "https://files.pythonhosted.org/packages/e3/71/b1703876f0e811e3ed00a3452026c24848b1fa2fe5e230b6273a98700f78/schema_salad-8.2.20211116214159-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4c354abacaa20d896932486148764e0d", "sha256": "b41848b58d7b742b3eb17e45e7b2dea548fa561c022765d3fde82a746d02457a" }, "downloads": -1, "filename": "schema_salad-8.2.20211116214159-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "4c354abacaa20d896932486148764e0d", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 2274893, "upload_time": "2021-11-17T15:07:33", "upload_time_iso_8601": "2021-11-17T15:07:33.634830Z", "url": "https://files.pythonhosted.org/packages/27/4e/ab9558e3d04c79cfc844b0b6f76c5b2aee36c9ce8276339151a07b0a11c3/schema_salad-8.2.20211116214159-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fd2636d62c0a42258845b684557dd6f8", "sha256": "67632a418b2508e883757c8b5d7f52bcc3ec87fc96a0b3a519b433a556e0d97d" }, "downloads": -1, "filename": "schema_salad-8.2.20211116214159-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "fd2636d62c0a42258845b684557dd6f8", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 2272079, "upload_time": "2021-11-17T15:07:35", "upload_time_iso_8601": "2021-11-17T15:07:35.317188Z", "url": "https://files.pythonhosted.org/packages/0e/d8/5722029d5425d834e894ddeb73d73f30df54d81d47997793dec87ed736fc/schema_salad-8.2.20211116214159-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e1ff9f858794b10d1bfa0b6ecfffd219", "sha256": "0641e88afccf97d24be34ba712d68205c4da07555332e73f7a0dfc00c0587b53" }, "downloads": -1, "filename": "schema_salad-8.2.20211116214159-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "e1ff9f858794b10d1bfa0b6ecfffd219", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 2425474, "upload_time": "2021-11-17T17:08:27", "upload_time_iso_8601": "2021-11-17T17:08:27.809759Z", "url": "https://files.pythonhosted.org/packages/65/39/4cf7fe7a4a66b03f869c67d0b20ae684e95bbcfac4d6e7b488eb7bc7528e/schema_salad-8.2.20211116214159-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7aa6b083942c3f30fd8172a5b495543c", "sha256": "67be0044387ae02cac18b607bd0fb1dae16d6a26fc575c75c95ebd68b137749e" }, "downloads": -1, "filename": "schema_salad-8.2.20211116214159-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "7aa6b083942c3f30fd8172a5b495543c", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 2522518, "upload_time": "2021-11-17T15:07:36", "upload_time_iso_8601": "2021-11-17T15:07:36.592191Z", "url": "https://files.pythonhosted.org/packages/61/51/e169bb62ec2e5ea414dda495f58ed9fb257164b96302c06de33e2717240d/schema_salad-8.2.20211116214159-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2ffce25e6e9eb5f1041157c0aac656b4", "sha256": "45c96ab594d322977424fca941996a5c3a7540801160c0d0aee1a34c8bc9c5ac" }, "downloads": -1, "filename": "schema_salad-8.2.20211116214159-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "2ffce25e6e9eb5f1041157c0aac656b4", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 2484134, "upload_time": "2021-11-17T15:07:38", "upload_time_iso_8601": "2021-11-17T15:07:38.016946Z", "url": "https://files.pythonhosted.org/packages/97/e9/c9fbd012999f656924392a1c4b815b5e0aa1166d4a5cedbe2eb97580f2fc/schema_salad-8.2.20211116214159-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5ee0b1c36dca9224d74605ed7d120eb0", "sha256": "f60f641c7c376d0bc8772f33186cfebdff2bd7d990955bad503444c566afe4c6" }, "downloads": -1, "filename": "schema_salad-8.2.20211116214159-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "5ee0b1c36dca9224d74605ed7d120eb0", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 2592489, "upload_time": "2021-11-17T17:08:29", "upload_time_iso_8601": "2021-11-17T17:08:29.735534Z", "url": "https://files.pythonhosted.org/packages/1d/35/035707923424ede0aaafe761424fc37b650f2edbd531828137eacd86a77b/schema_salad-8.2.20211116214159-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cf35ba6b537e488f67b707314d871901", "sha256": "2511e28367dcd638fc7bf4f75cefcba3527eb0f36b2096f7e985ec0cef11a262" }, "downloads": -1, "filename": "schema_salad-8.2.20211116214159-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "cf35ba6b537e488f67b707314d871901", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 2752322, "upload_time": "2021-11-17T15:07:39", "upload_time_iso_8601": "2021-11-17T15:07:39.601770Z", "url": "https://files.pythonhosted.org/packages/9e/10/9fb0fa5045b1a4edb5f9c910a8ae98ef31e92292ed526376f63fbf76dc5c/schema_salad-8.2.20211116214159-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1aa3e95252bc2b25857ce957ddf37f1e", "sha256": "83cf696e9a40511fe2b2fd7af7ff00ff53b5f6d3f6af4a0738136da5f3decf89" }, "downloads": -1, "filename": "schema_salad-8.2.20211116214159-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "1aa3e95252bc2b25857ce957ddf37f1e", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 2657740, "upload_time": "2021-11-17T15:07:41", "upload_time_iso_8601": "2021-11-17T15:07:41.233348Z", "url": "https://files.pythonhosted.org/packages/b7/11/3e4dad4cfc793617e3f4df9ea82c6b3418d5aa5ae37cdee6d212a948ae16/schema_salad-8.2.20211116214159-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cd492a97d3db50b618a5cfda013ec744", "sha256": "dab5ab1e21e228b47f96f313a60644ab0506724423ac56c900177dc0852b3e7d" }, "downloads": -1, "filename": "schema_salad-8.2.20211116214159-py3-none-any.whl", "has_sig": false, "md5_digest": "cd492a97d3db50b618a5cfda013ec744", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 478967, "upload_time": "2021-11-16T21:46:22", "upload_time_iso_8601": "2021-11-16T21:46:22.258550Z", "url": "https://files.pythonhosted.org/packages/00/91/b9a3f8bd97d8f3b5af0126e1f0e97e73a1e7cc7ea217f29860e2e588085a/schema_salad-8.2.20211116214159-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "96d7c30c2e2ab758259c8ea7b2cb3a6c", "sha256": "0c737af600e0a03dd97c93b9867e862463b65d95580ba711fd22f542bc80ad00" }, "downloads": -1, "filename": "schema-salad-8.2.20211116214159.tar.gz", "has_sig": false, "md5_digest": "96d7c30c2e2ab758259c8ea7b2cb3a6c", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 457809, "upload_time": "2021-11-16T21:46:24", "upload_time_iso_8601": "2021-11-16T21:46:24.528169Z", "url": "https://files.pythonhosted.org/packages/c0/73/960e7a4ba969d485578e2a50dda5369b381f933d60e31d984cc55002d7e5/schema-salad-8.2.20211116214159.tar.gz", "yanked": false, "yanked_reason": null } ], "8.2.20211222191353": [ { "comment_text": "", "digests": { "md5": "26db88384e791d17132d8d10d26baaa6", "sha256": "d727ccc984ade94f2f284579364ff3e289d28935da9790ec84cea3bdba9301a2" }, "downloads": -1, "filename": "schema_salad-8.2.20211222191353-py3-none-any.whl", "has_sig": false, "md5_digest": "26db88384e791d17132d8d10d26baaa6", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 511606, "upload_time": "2021-12-22T19:29:55", "upload_time_iso_8601": "2021-12-22T19:29:55.484757Z", "url": "https://files.pythonhosted.org/packages/ca/6c/8fd811bebd5770d082b44024eab13293dbc503705f2033afb1fc2d2f6851/schema_salad-8.2.20211222191353-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a1ddf7a54ba2766cca9f6934b7b95ca4", "sha256": "bae31897a9f5c16546081811728cc20296455dc805ffd0bac0064de6cbbcbf88" }, "downloads": -1, "filename": "schema-salad-8.2.20211222191353.tar.gz", "has_sig": false, "md5_digest": "a1ddf7a54ba2766cca9f6934b7b95ca4", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 479321, "upload_time": "2021-12-22T19:29:57", "upload_time_iso_8601": "2021-12-22T19:29:57.355449Z", "url": "https://files.pythonhosted.org/packages/c6/0c/0c8eb7abdba49a6058d09dbacf3e9192becb27e2e3dae6f31197c8042d19/schema-salad-8.2.20211222191353.tar.gz", "yanked": false, "yanked_reason": null } ], "8.2.20220103095339": [ { "comment_text": "", "digests": { "md5": "a2598c46b04b8eb012570ce988217349", "sha256": "3e7ed71f53076e9d3baab3fdfedf850834f6de10ec9fb40b1ab3376a9f168a56" }, "downloads": -1, "filename": "schema_salad-8.2.20220103095339-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "a2598c46b04b8eb012570ce988217349", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.7", "size": 2595647, "upload_time": "2022-01-03T14:59:43", "upload_time_iso_8601": "2022-01-03T14:59:43.718746Z", "url": "https://files.pythonhosted.org/packages/81/15/6ff09074b0bae5edfcb0fe4593764b5ea2e014320b551ae027a6bf714bcd/schema_salad-8.2.20220103095339-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e23980b500a6c6f83b1816deae4b5ca2", "sha256": "2b3ff052b2ab83ba5ecdddd783b4f1a2c8a150f8a923cb0d366b0d282f8e1f3f" }, "downloads": -1, "filename": "schema_salad-8.2.20220103095339-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "e23980b500a6c6f83b1816deae4b5ca2", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.7", "size": 2660523, "upload_time": "2022-01-03T13:30:29", "upload_time_iso_8601": "2022-01-03T13:30:29.116802Z", "url": "https://files.pythonhosted.org/packages/1a/f9/c711b8f75033f301151b9048b39e7a01bea7eaa9e47b067e20797c266b2d/schema_salad-8.2.20220103095339-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3af8a3baf90697d523b2068ce130b249", "sha256": "a6ea4820568f90382585dcf269352b9fd26f00a245e3906398cef84b99a63ea7" }, "downloads": -1, "filename": "schema_salad-8.2.20220103095339-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "3af8a3baf90697d523b2068ce130b249", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.7", "size": 2752253, "upload_time": "2022-01-03T13:30:30", "upload_time_iso_8601": "2022-01-03T13:30:30.930098Z", "url": "https://files.pythonhosted.org/packages/6e/04/66e9473a82f3227e770cf3ea94e9e01926d05193d800df607c8f4e202ef6/schema_salad-8.2.20220103095339-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3e0a006b61a63c0d4019389341e1b4c2", "sha256": "295e7334cf4023997fa198ef134ee0aab8918efcdbc9e27ee2cf6f75c7fe767b" }, "downloads": -1, "filename": "schema_salad-8.2.20220103095339-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "3e0a006b61a63c0d4019389341e1b4c2", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.7", "size": 2190540, "upload_time": "2022-01-03T14:59:45", "upload_time_iso_8601": "2022-01-03T14:59:45.362773Z", "url": "https://files.pythonhosted.org/packages/5a/32/2572114659428171e6b25cc78d426ffcef28fcb3c551c5a90e981a29bc01/schema_salad-8.2.20220103095339-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5a4314900bad3850b8756f93bb464588", "sha256": "0ce33774970da53434c966a5d1af063672b18127992d407b57fb6b354b134030" }, "downloads": -1, "filename": "schema_salad-8.2.20220103095339-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "5a4314900bad3850b8756f93bb464588", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.7", "size": 2285518, "upload_time": "2022-01-03T13:30:32", "upload_time_iso_8601": "2022-01-03T13:30:32.508617Z", "url": "https://files.pythonhosted.org/packages/8d/26/8b737b1cdbd186930277cbef4c240e29b693ab477da9dd6daeb134c73196/schema_salad-8.2.20220103095339-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "86bd26347d71e4c13296c3fae9ef30a6", "sha256": "43366cc97bed82ee7a49a3ea39b2769bf732dd52bd678144717c7aec5fc40da6" }, "downloads": -1, "filename": "schema_salad-8.2.20220103095339-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "86bd26347d71e4c13296c3fae9ef30a6", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.7", "size": 2290619, "upload_time": "2022-01-03T13:30:34", "upload_time_iso_8601": "2022-01-03T13:30:34.356589Z", "url": "https://files.pythonhosted.org/packages/6f/7c/91a05e5c4bb46569e76e3e6b2ebc88f566ae47c17d53a10e8a00936eb549/schema_salad-8.2.20220103095339-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "845237cde4ecfab78f5561a33db12f6b", "sha256": "91f1b15e83470c721e2d79a4290c1961262942435c483844a4b11873e3091f3d" }, "downloads": -1, "filename": "schema_salad-8.2.20220103095339-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "845237cde4ecfab78f5561a33db12f6b", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.7", "size": 2449521, "upload_time": "2022-01-03T14:59:46", "upload_time_iso_8601": "2022-01-03T14:59:46.771685Z", "url": "https://files.pythonhosted.org/packages/49/22/02cfe7f3311b73a334b2818caed11af6269ecdaec01b0f0f2a0000e37a7a/schema_salad-8.2.20220103095339-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "45145eb6633c0a1cbea466667a044b41", "sha256": "35cc32ba214faca47a39e97da1bd2df0b49c824118b283f9101037d89777627b" }, "downloads": -1, "filename": "schema_salad-8.2.20220103095339-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "45145eb6633c0a1cbea466667a044b41", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.7", "size": 2503892, "upload_time": "2022-01-03T13:30:36", "upload_time_iso_8601": "2022-01-03T13:30:36.282304Z", "url": "https://files.pythonhosted.org/packages/dd/85/88f240cc2b779052d5955822da22c57aa49ccf519e6ef58c72ac35891801/schema_salad-8.2.20220103095339-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2c7a10ccc73f6c4aa5663a737eeb86f6", "sha256": "60060fc8065ec29704e35d59b9c9b7042710734edf96a205ef8c76121c5d0cc2" }, "downloads": -1, "filename": "schema_salad-8.2.20220103095339-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "2c7a10ccc73f6c4aa5663a737eeb86f6", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.7", "size": 2548998, "upload_time": "2022-01-03T13:30:38", "upload_time_iso_8601": "2022-01-03T13:30:38.029897Z", "url": "https://files.pythonhosted.org/packages/90/b9/edcea1de83d683fa924ea364e9510f4bbf1b409e6f146f053bad12398b70/schema_salad-8.2.20220103095339-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8327f2c6e2b4266fbdecf25a193521bb", "sha256": "e3483e800f58169afa3bfed117bc1396e329bee8d09b1cb427f55fb67d8cb131" }, "downloads": -1, "filename": "schema_salad-8.2.20220103095339-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "8327f2c6e2b4266fbdecf25a193521bb", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.7", "size": 2587480, "upload_time": "2022-01-03T14:59:48", "upload_time_iso_8601": "2022-01-03T14:59:48.831649Z", "url": "https://files.pythonhosted.org/packages/da/ea/a13f5d4dcbc1de92837d7f03efddba280aec691223da01b769fa49484759/schema_salad-8.2.20220103095339-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a997199e38aeedc67e82277e78bc2f41", "sha256": "4744b5fdc5894c49f8c7dbca8393e90c97e4b3f4f227c848a5c8feeb5bf70d7d" }, "downloads": -1, "filename": "schema_salad-8.2.20220103095339-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "a997199e38aeedc67e82277e78bc2f41", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.7", "size": 2652498, "upload_time": "2022-01-03T13:30:39", "upload_time_iso_8601": "2022-01-03T13:30:39.659348Z", "url": "https://files.pythonhosted.org/packages/f4/f2/fcf870b509e9ee1cdcbebf09341206a390bf25a55a0c72a14719414d49d6/schema_salad-8.2.20220103095339-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6c28fcb31cbd5f0bed2dbb5b8cee1dd7", "sha256": "d9656313c17d439a14a5f8e9149a2a708a5dcd5d69d81cbced52ff5beddb6972" }, "downloads": -1, "filename": "schema_salad-8.2.20220103095339-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "6c28fcb31cbd5f0bed2dbb5b8cee1dd7", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.7", "size": 2742004, "upload_time": "2022-01-03T13:30:41", "upload_time_iso_8601": "2022-01-03T13:30:41.001341Z", "url": "https://files.pythonhosted.org/packages/15/b7/7fd6e011bf440838c1be190f0c6286c35f259acca0fc1c2b5d7a5d31a4c6/schema_salad-8.2.20220103095339-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4ac5d9c635392488b40128978b61ef24", "sha256": "ea54e6606ecacaa5a2453532aa8e78b38154c34aa99167f8ccfa92f914a72f2c" }, "downloads": -1, "filename": "schema_salad-8.2.20220103095339-py3-none-any.whl", "has_sig": false, "md5_digest": "4ac5d9c635392488b40128978b61ef24", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.7", "size": 511401, "upload_time": "2022-01-03T11:18:29", "upload_time_iso_8601": "2022-01-03T11:18:29.445263Z", "url": "https://files.pythonhosted.org/packages/a1/40/e6e6efdf46f1eedee08f41430dc9e983f90fafb3e1c038a7c53af8ab5c55/schema_salad-8.2.20220103095339-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5d152f2bd708f1c67bc558f471800f9e", "sha256": "051690a2f89b98e35100cd2cb489406a5169a60c2f27a716f3f287a42d45be2d" }, "downloads": -1, "filename": "schema-salad-8.2.20220103095339.tar.gz", "has_sig": false, "md5_digest": "5d152f2bd708f1c67bc558f471800f9e", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7", "size": 479129, "upload_time": "2022-01-03T11:18:31", "upload_time_iso_8601": "2022-01-03T11:18:31.650789Z", "url": "https://files.pythonhosted.org/packages/8e/90/4a2cc012f32a39864372855c2fe06e2976cedf1e18844c17debc30a13c7a/schema-salad-8.2.20220103095339.tar.gz", "yanked": false, "yanked_reason": null } ], "8.2.20220204150214": [ { "comment_text": "", "digests": { "md5": "b649dfbacedb16bedf8a190ce1d5b296", "sha256": "609ba090fb40f493cedf64bb124c1d208af7388b6663af9d76a91a03ec7d8710" }, "downloads": -1, "filename": "schema_salad-8.2.20220204150214-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "b649dfbacedb16bedf8a190ce1d5b296", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.7", "size": 1372082, "upload_time": "2022-02-04T16:30:59", "upload_time_iso_8601": "2022-02-04T16:30:59.782759Z", "url": "https://files.pythonhosted.org/packages/4b/78/f95ceb57bc8c7c49c279bd4143b319fd79bd2c87fc4a63fc61741fd5f57e/schema_salad-8.2.20220204150214-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3ba643d87e0a958f5552aab4a47ea738", "sha256": "ecf2c386cff04f7bc08b0ec4f3f3f0c6196043d746799c64a98ca4cb596e4c9f" }, "downloads": -1, "filename": "schema_salad-8.2.20220204150214-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "3ba643d87e0a958f5552aab4a47ea738", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.7", "size": 1409038, "upload_time": "2022-02-04T15:32:37", "upload_time_iso_8601": "2022-02-04T15:32:37.875197Z", "url": "https://files.pythonhosted.org/packages/1d/f0/f0bec622e85943beac70614188baa7e3433748160c462a88b878d187471b/schema_salad-8.2.20220204150214-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d1014275758c91d2f502e10c2a1b78ea", "sha256": "8ec4ad0f1fd56637ad3f935d647adceaebc28bbe7c204cf24165c231320c09b8" }, "downloads": -1, "filename": "schema_salad-8.2.20220204150214-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "d1014275758c91d2f502e10c2a1b78ea", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.7", "size": 1389535, "upload_time": "2022-02-04T15:32:39", "upload_time_iso_8601": "2022-02-04T15:32:39.440882Z", "url": "https://files.pythonhosted.org/packages/42/bf/f0a27096788e173f9a7b38234dfaa52231a17ec612809a047fa812882ff0/schema_salad-8.2.20220204150214-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e5881cc2dbc58fdc00f26775d649de14", "sha256": "77ff2a0d76e490f5c39375ca4d3f625fffa51a93aa719966a5c06b5375f76fc8" }, "downloads": -1, "filename": "schema_salad-8.2.20220204150214-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "e5881cc2dbc58fdc00f26775d649de14", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.7", "size": 1096663, "upload_time": "2022-02-04T16:31:01", "upload_time_iso_8601": "2022-02-04T16:31:01.372067Z", "url": "https://files.pythonhosted.org/packages/75/cc/b75ece7fcc8c45c5eea9da85d72d1eeffbeb3c082e91aa80f0b895c92302/schema_salad-8.2.20220204150214-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b1305327eeff55f6b4fff33305ba5360", "sha256": "86addbf36269646914c666035318ca38a5e84a4ae5732c013cde3f03550ca5f7" }, "downloads": -1, "filename": "schema_salad-8.2.20220204150214-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "b1305327eeff55f6b4fff33305ba5360", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.7", "size": 1123991, "upload_time": "2022-02-04T15:32:40", "upload_time_iso_8601": "2022-02-04T15:32:40.642678Z", "url": "https://files.pythonhosted.org/packages/8d/4e/764f687cc72205b6e96eb9e78d4aba60c1cc0623f82425a804bc6eef0ad3/schema_salad-8.2.20220204150214-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f073b4193caa4f996bba740481fade51", "sha256": "b72181040f4330decdad422130fac6d7953d0415843a6bb02d6e7835f20e10e7" }, "downloads": -1, "filename": "schema_salad-8.2.20220204150214-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "f073b4193caa4f996bba740481fade51", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.7", "size": 1119684, "upload_time": "2022-02-04T15:32:41", "upload_time_iso_8601": "2022-02-04T15:32:41.847689Z", "url": "https://files.pythonhosted.org/packages/dd/b0/2b2d031b9fca9374567e5c60aa6e8bb9a940909fa3efcbd34f795e4c3551/schema_salad-8.2.20220204150214-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5f2967b4be013c49e87efc5fa55acf64", "sha256": "b27300acf4d71547dae3c0f065789075c157391de74e71fdbf1daf318ef958dc" }, "downloads": -1, "filename": "schema_salad-8.2.20220204150214-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "5f2967b4be013c49e87efc5fa55acf64", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.7", "size": 1343284, "upload_time": "2022-02-04T16:31:02", "upload_time_iso_8601": "2022-02-04T16:31:02.753386Z", "url": "https://files.pythonhosted.org/packages/b7/20/1c3524146c4feaa6a843782da0b644c7ee7e03e595df97666be839a70f6c/schema_salad-8.2.20220204150214-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "af301ca202465ad5ffdd8d43ee286381", "sha256": "fd1f72602c21fb4e201cecba36c60f896f0cc95edaeb49bb9b720ed9869af372" }, "downloads": -1, "filename": "schema_salad-8.2.20220204150214-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "af301ca202465ad5ffdd8d43ee286381", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.7", "size": 1381225, "upload_time": "2022-02-04T15:32:43", "upload_time_iso_8601": "2022-02-04T15:32:43.369678Z", "url": "https://files.pythonhosted.org/packages/6d/0f/ef38e02b43cdce30ab2e13c29d873dbb57526f1d3c710c7e486ebb588a1c/schema_salad-8.2.20220204150214-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9445adbeec6fefc56a31c93bbeffb334", "sha256": "2de190abaccd39408e384982c0bbb871708502ebb81682cf0a6e522bcdf86dc3" }, "downloads": -1, "filename": "schema_salad-8.2.20220204150214-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "9445adbeec6fefc56a31c93bbeffb334", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.7", "size": 1378610, "upload_time": "2022-02-04T15:32:44", "upload_time_iso_8601": "2022-02-04T15:32:44.790187Z", "url": "https://files.pythonhosted.org/packages/84/67/ff56d6ffc55e0a5027605213f6519efd88588c488ff5b6317c34b142e797/schema_salad-8.2.20220204150214-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "06514e22af045cf207c5df31be780e23", "sha256": "2c8d4b433f745e3c51fa8ea83ab319c45269af3003cb180d53e6eb719c1f8606" }, "downloads": -1, "filename": "schema_salad-8.2.20220204150214-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "06514e22af045cf207c5df31be780e23", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.7", "size": 1370641, "upload_time": "2022-02-04T16:31:04", "upload_time_iso_8601": "2022-02-04T16:31:04.195190Z", "url": "https://files.pythonhosted.org/packages/d8/59/db6223105c26ee46c8b8c20f670532a70294a8610d5f553e5b5d8170be95/schema_salad-8.2.20220204150214-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "49d919aa3bf47b75e6d6393ef6b7ba94", "sha256": "e4976cbb5c4801b29295bdadb3e234e7b9572b1b9716b063f79806cb30820181" }, "downloads": -1, "filename": "schema_salad-8.2.20220204150214-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "49d919aa3bf47b75e6d6393ef6b7ba94", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.7", "size": 1406339, "upload_time": "2022-02-04T15:32:46", "upload_time_iso_8601": "2022-02-04T15:32:46.108349Z", "url": "https://files.pythonhosted.org/packages/2a/c2/c2413a25b27f9931b7fd56e2d6fa6ab4ab0e7a3273fd8fb8735dbaf09010/schema_salad-8.2.20220204150214-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "67ce6c5c874fbc9eeb581e6e073a09af", "sha256": "1627e1666e8f835d337926fac65d5484128ce5798fefa4bb1a0ae862e1f9ec82" }, "downloads": -1, "filename": "schema_salad-8.2.20220204150214-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "67ce6c5c874fbc9eeb581e6e073a09af", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.7", "size": 1386647, "upload_time": "2022-02-04T15:32:47", "upload_time_iso_8601": "2022-02-04T15:32:47.612882Z", "url": "https://files.pythonhosted.org/packages/37/34/7210db4ed826536713b054ebba77aaaee3ecf681676ce0dffa884083aa3d/schema_salad-8.2.20220204150214-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3b630cb08fbcab42245e78bd64a5f637", "sha256": "ce49adf0bc97fd44d99df98bf00d6bc66b38a2483b3cc721cbd200d010add3c5" }, "downloads": -1, "filename": "schema_salad-8.2.20220204150214-py3-none-any.whl", "has_sig": false, "md5_digest": "3b630cb08fbcab42245e78bd64a5f637", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.7", "size": 513087, "upload_time": "2022-02-04T15:13:30", "upload_time_iso_8601": "2022-02-04T15:13:30.492131Z", "url": "https://files.pythonhosted.org/packages/69/97/96b45e583509b8f3c15d071747c9ab14d68ab4587780c23e3670c8a91891/schema_salad-8.2.20220204150214-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9545e71808e4fc46959d1bfaaf864b06", "sha256": "3e53dbfe7137796b9e5135920e96bb2713ded9e7be2859dae554d1dc8b029704" }, "downloads": -1, "filename": "schema-salad-8.2.20220204150214.tar.gz", "has_sig": false, "md5_digest": "9545e71808e4fc46959d1bfaaf864b06", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7", "size": 480252, "upload_time": "2022-02-04T15:13:32", "upload_time_iso_8601": "2022-02-04T15:13:32.499673Z", "url": "https://files.pythonhosted.org/packages/65/24/39f3804ada29f40fbc5ab3b4ccc399586694bbaf513171b0565219aed67d/schema-salad-8.2.20220204150214.tar.gz", "yanked": false, "yanked_reason": null } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "b649dfbacedb16bedf8a190ce1d5b296", "sha256": "609ba090fb40f493cedf64bb124c1d208af7388b6663af9d76a91a03ec7d8710" }, "downloads": -1, "filename": "schema_salad-8.2.20220204150214-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "b649dfbacedb16bedf8a190ce1d5b296", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.7", "size": 1372082, "upload_time": "2022-02-04T16:30:59", "upload_time_iso_8601": "2022-02-04T16:30:59.782759Z", "url": "https://files.pythonhosted.org/packages/4b/78/f95ceb57bc8c7c49c279bd4143b319fd79bd2c87fc4a63fc61741fd5f57e/schema_salad-8.2.20220204150214-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3ba643d87e0a958f5552aab4a47ea738", "sha256": "ecf2c386cff04f7bc08b0ec4f3f3f0c6196043d746799c64a98ca4cb596e4c9f" }, "downloads": -1, "filename": "schema_salad-8.2.20220204150214-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "3ba643d87e0a958f5552aab4a47ea738", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.7", "size": 1409038, "upload_time": "2022-02-04T15:32:37", "upload_time_iso_8601": "2022-02-04T15:32:37.875197Z", "url": "https://files.pythonhosted.org/packages/1d/f0/f0bec622e85943beac70614188baa7e3433748160c462a88b878d187471b/schema_salad-8.2.20220204150214-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d1014275758c91d2f502e10c2a1b78ea", "sha256": "8ec4ad0f1fd56637ad3f935d647adceaebc28bbe7c204cf24165c231320c09b8" }, "downloads": -1, "filename": "schema_salad-8.2.20220204150214-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "d1014275758c91d2f502e10c2a1b78ea", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.7", "size": 1389535, "upload_time": "2022-02-04T15:32:39", "upload_time_iso_8601": "2022-02-04T15:32:39.440882Z", "url": "https://files.pythonhosted.org/packages/42/bf/f0a27096788e173f9a7b38234dfaa52231a17ec612809a047fa812882ff0/schema_salad-8.2.20220204150214-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e5881cc2dbc58fdc00f26775d649de14", "sha256": "77ff2a0d76e490f5c39375ca4d3f625fffa51a93aa719966a5c06b5375f76fc8" }, "downloads": -1, "filename": "schema_salad-8.2.20220204150214-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "e5881cc2dbc58fdc00f26775d649de14", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.7", "size": 1096663, "upload_time": "2022-02-04T16:31:01", "upload_time_iso_8601": "2022-02-04T16:31:01.372067Z", "url": "https://files.pythonhosted.org/packages/75/cc/b75ece7fcc8c45c5eea9da85d72d1eeffbeb3c082e91aa80f0b895c92302/schema_salad-8.2.20220204150214-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b1305327eeff55f6b4fff33305ba5360", "sha256": "86addbf36269646914c666035318ca38a5e84a4ae5732c013cde3f03550ca5f7" }, "downloads": -1, "filename": "schema_salad-8.2.20220204150214-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "b1305327eeff55f6b4fff33305ba5360", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.7", "size": 1123991, "upload_time": "2022-02-04T15:32:40", "upload_time_iso_8601": "2022-02-04T15:32:40.642678Z", "url": "https://files.pythonhosted.org/packages/8d/4e/764f687cc72205b6e96eb9e78d4aba60c1cc0623f82425a804bc6eef0ad3/schema_salad-8.2.20220204150214-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f073b4193caa4f996bba740481fade51", "sha256": "b72181040f4330decdad422130fac6d7953d0415843a6bb02d6e7835f20e10e7" }, "downloads": -1, "filename": "schema_salad-8.2.20220204150214-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "f073b4193caa4f996bba740481fade51", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.7", "size": 1119684, "upload_time": "2022-02-04T15:32:41", "upload_time_iso_8601": "2022-02-04T15:32:41.847689Z", "url": "https://files.pythonhosted.org/packages/dd/b0/2b2d031b9fca9374567e5c60aa6e8bb9a940909fa3efcbd34f795e4c3551/schema_salad-8.2.20220204150214-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5f2967b4be013c49e87efc5fa55acf64", "sha256": "b27300acf4d71547dae3c0f065789075c157391de74e71fdbf1daf318ef958dc" }, "downloads": -1, "filename": "schema_salad-8.2.20220204150214-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "5f2967b4be013c49e87efc5fa55acf64", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.7", "size": 1343284, "upload_time": "2022-02-04T16:31:02", "upload_time_iso_8601": "2022-02-04T16:31:02.753386Z", "url": "https://files.pythonhosted.org/packages/b7/20/1c3524146c4feaa6a843782da0b644c7ee7e03e595df97666be839a70f6c/schema_salad-8.2.20220204150214-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "af301ca202465ad5ffdd8d43ee286381", "sha256": "fd1f72602c21fb4e201cecba36c60f896f0cc95edaeb49bb9b720ed9869af372" }, "downloads": -1, "filename": "schema_salad-8.2.20220204150214-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "af301ca202465ad5ffdd8d43ee286381", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.7", "size": 1381225, "upload_time": "2022-02-04T15:32:43", "upload_time_iso_8601": "2022-02-04T15:32:43.369678Z", "url": "https://files.pythonhosted.org/packages/6d/0f/ef38e02b43cdce30ab2e13c29d873dbb57526f1d3c710c7e486ebb588a1c/schema_salad-8.2.20220204150214-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9445adbeec6fefc56a31c93bbeffb334", "sha256": "2de190abaccd39408e384982c0bbb871708502ebb81682cf0a6e522bcdf86dc3" }, "downloads": -1, "filename": "schema_salad-8.2.20220204150214-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "9445adbeec6fefc56a31c93bbeffb334", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.7", "size": 1378610, "upload_time": "2022-02-04T15:32:44", "upload_time_iso_8601": "2022-02-04T15:32:44.790187Z", "url": "https://files.pythonhosted.org/packages/84/67/ff56d6ffc55e0a5027605213f6519efd88588c488ff5b6317c34b142e797/schema_salad-8.2.20220204150214-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "06514e22af045cf207c5df31be780e23", "sha256": "2c8d4b433f745e3c51fa8ea83ab319c45269af3003cb180d53e6eb719c1f8606" }, "downloads": -1, "filename": "schema_salad-8.2.20220204150214-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "06514e22af045cf207c5df31be780e23", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.7", "size": 1370641, "upload_time": "2022-02-04T16:31:04", "upload_time_iso_8601": "2022-02-04T16:31:04.195190Z", "url": "https://files.pythonhosted.org/packages/d8/59/db6223105c26ee46c8b8c20f670532a70294a8610d5f553e5b5d8170be95/schema_salad-8.2.20220204150214-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "49d919aa3bf47b75e6d6393ef6b7ba94", "sha256": "e4976cbb5c4801b29295bdadb3e234e7b9572b1b9716b063f79806cb30820181" }, "downloads": -1, "filename": "schema_salad-8.2.20220204150214-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "49d919aa3bf47b75e6d6393ef6b7ba94", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.7", "size": 1406339, "upload_time": "2022-02-04T15:32:46", "upload_time_iso_8601": "2022-02-04T15:32:46.108349Z", "url": "https://files.pythonhosted.org/packages/2a/c2/c2413a25b27f9931b7fd56e2d6fa6ab4ab0e7a3273fd8fb8735dbaf09010/schema_salad-8.2.20220204150214-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "67ce6c5c874fbc9eeb581e6e073a09af", "sha256": "1627e1666e8f835d337926fac65d5484128ce5798fefa4bb1a0ae862e1f9ec82" }, "downloads": -1, "filename": "schema_salad-8.2.20220204150214-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "67ce6c5c874fbc9eeb581e6e073a09af", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.7", "size": 1386647, "upload_time": "2022-02-04T15:32:47", "upload_time_iso_8601": "2022-02-04T15:32:47.612882Z", "url": "https://files.pythonhosted.org/packages/37/34/7210db4ed826536713b054ebba77aaaee3ecf681676ce0dffa884083aa3d/schema_salad-8.2.20220204150214-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3b630cb08fbcab42245e78bd64a5f637", "sha256": "ce49adf0bc97fd44d99df98bf00d6bc66b38a2483b3cc721cbd200d010add3c5" }, "downloads": -1, "filename": "schema_salad-8.2.20220204150214-py3-none-any.whl", "has_sig": false, "md5_digest": "3b630cb08fbcab42245e78bd64a5f637", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.7", "size": 513087, "upload_time": "2022-02-04T15:13:30", "upload_time_iso_8601": "2022-02-04T15:13:30.492131Z", "url": "https://files.pythonhosted.org/packages/69/97/96b45e583509b8f3c15d071747c9ab14d68ab4587780c23e3670c8a91891/schema_salad-8.2.20220204150214-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9545e71808e4fc46959d1bfaaf864b06", "sha256": "3e53dbfe7137796b9e5135920e96bb2713ded9e7be2859dae554d1dc8b029704" }, "downloads": -1, "filename": "schema-salad-8.2.20220204150214.tar.gz", "has_sig": false, "md5_digest": "9545e71808e4fc46959d1bfaaf864b06", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7", "size": 480252, "upload_time": "2022-02-04T15:13:32", "upload_time_iso_8601": "2022-02-04T15:13:32.499673Z", "url": "https://files.pythonhosted.org/packages/65/24/39f3804ada29f40fbc5ab3b4ccc399586694bbaf513171b0565219aed67d/schema-salad-8.2.20220204150214.tar.gz", "yanked": false, "yanked_reason": null } ], "vulnerabilities": [] }