{ "info": { "author": "Google LLC", "author_email": "tensorflow-extended-dev@googlegroups.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Intended Audience :: Developers", "Intended Audience :: Education", "Intended Audience :: Science/Research", "License :: OSI Approved :: Apache Software License", "Operating System :: MacOS :: MacOS X", "Operating System :: POSIX :: Linux", "Programming Language :: Python", "Programming Language :: Python :: 3 :: Only", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Topic :: Scientific/Engineering", "Topic :: Scientific/Engineering :: Artificial Intelligence", "Topic :: Scientific/Engineering :: Mathematics", "Topic :: Software Development", "Topic :: Software Development :: Libraries", "Topic :: Software Development :: Libraries :: Python Modules" ], "description": "# Struct2Tensor\n\n[![Python](https://img.shields.io/badge/python%20-3.7%7C3.8%7C3.9-blue)](https://github.com/google/struct2tensor)\n[![PyPI](https://badge.fury.io/py/struct2tensor.svg)](https://badge.fury.io/py/struct2tensor)\n\n\n\n## Introduction\nstruct2tensor is a library for parsing structured data inside of tensorflow.\nIn particular, it makes it easy to manipulate structured data, e.g., slicing,\nflattening, copying substructures, and so on, as part of a TensorFlow model\ngraph. The notebook in 'examples/prensor_playground.ipynb' provides a few\nexamples of struct2tensor in action and an introduction to the main\nconcepts. You can\n[run the notebook in your browser](https://colab.research.google.com/github/google/struct2tensor/blob/master/examples/prensor_playground.ipynb)\nthrough Google's colab environment, or [download the\nfile](examples/prensor_playground.ipynb) to run it in your own Jupyter\nenvironment.\n\n\nThere are two main use cases of this repo:\n\n1. To create a PIP package. The PIP package contains plug-ins (OpKernels) to an\n existing tensorflow installation.\n2. To staticlly link with tensorflow-serving.\n\nAs these processes are independent, one can follow either set of directions\nbelow.\n\n## Use a pre-built Linux PIP package.\n\n\nFrom a virtual environment, run:\n\n```bash\npip install struct2tensor\n```\n### Nightly Packages\n\nStruct2Tensor also hosts nightly packages at https://pypi-nightly.tensorflow.org\non Google Cloud. To install the latest nightly package, please use the following\ncommand:\n\n```bash\npip install -i https://pypi-nightly.tensorflow.org/simple struct2tensor\n```\n\nThis will install the nightly packages for the major dependencies of Fairness\nIndicators such as TensorFlow Metadata (TFMD).\n\n## Creating a PIP package.\n\nThe struct2tensor PIP package is useful for creating models.\nIt works with tensorflow 2.x.\n\nIn order to unify the process, we recommend compiling struct2tensor inside\na docker container.\n\n\n### Downloading the Code\n\nGo to your home directory.\n\nDownload the source code.\n\n```bash\ngit clone https://github.com/google/struct2tensor.git\ncd ~/struct2tensor\n```\n\n### Use docker-compose\nInstall [docker-compose](https://docs.docker.com/compose/).\n\nUse it to build a pip wheel for Python 3.6 with tensorflow version 2:\n\n```bash\ndocker-compose build manylinux2010\ndocker-compose run -e PYTHON_VERSION=36 -e TF_VERSION=RELEASED_TF_2 manylinux2010\n```\n\nOr build a pip wheel for Python 3.7 with tensorflow version 2 (note that if you\nrun one of these docker-compose commands after the other, the second will erase\nthe result from the first):\n\n```bash\ndocker-compose build manylinux2010\ndocker-compose run -e PYTHON_VERSION=37 -e TF_VERSION=RELEASED_TF_2 manylinux2010\n```\n\nThis will create a manylinux package in the ~/struct2tensor/dist directory.\n\n\n\n## Creating a static library\n\nIn order to construct a static library for tensorflow-serving, we run:\n\n```bash\nbazel build -c opt struct2tensor:struct2tensor_kernels_and_ops\n```\n\nThis can also be linked into another library.\n\n## [TensorFlow Serving](https://github.com/tensorflow/serving) docker image\n\nstruct2tensor needs a couple of custom TensorFlow ops to function. If you train\na model with struct2tensor and wants to serve it with TensorFlow Serving, the\nTensorFlow Serving binary needs to link with those custom ops. We have a\npre-built docker image that contains such a binary. The `Dockerfile` is\navailable at `tools/tf_serving_docker/Dockerfile`. The image is available at\n`gcr.io/tfx-oss-public/s2t_tf_serving`.\n\nPlease see the `Dockerfile` for details. But in brief, the image exposes port\n8500 as the gRPC endpoint and port 8501 as the REST endpoint. You can set\ntwo environment variables `MODEL_BASE_PATH` and `MODEL_NAME` to point it to\nyour model (either mount it to the container, or put your model on GCS).\nIt will look for a saved model at\n`${MODEL_BASE_PATH}/${MODEL_NAME}/${VERSION_NUMBER}`, where `VERSION_NUMBER`\nis an integer.\n\n\n## Compatibility\n\nstruct2tensor | tensorflow\n---------------------------------------------------------------------- | ----------\n[0.39.0](https://github.com/google/struct2tensor/releases/tag/v0.39.0) | 2.8.0\n[0.38.0](https://github.com/google/struct2tensor/releases/tag/v0.38.0) | 2.8.0\n[0.37.0](https://github.com/google/struct2tensor/releases/tag/v0.37.0) | 2.7.0\n[0.36.0](https://github.com/google/struct2tensor/releases/tag/v0.36.0) | 2.7.0\n[0.35.0](https://github.com/google/struct2tensor/releases/tag/v0.35.0) | 2.6.0\n[0.34.0](https://github.com/google/struct2tensor/releases/tag/v0.34.0) | 2.6.0\n[0.33.0](https://github.com/google/struct2tensor/releases/tag/v0.33.0) | 2.5.0\n[0.32.0](https://github.com/google/struct2tensor/releases/tag/v0.32.0) | 2.5.0\n[0.31.0](https://github.com/google/struct2tensor/releases/tag/v0.31.0) | 2.5.0\n[0.30.0](https://github.com/google/struct2tensor/releases/tag/v0.30.0) | 2.4.0\n[0.29.0](https://github.com/google/struct2tensor/releases/tag/v0.29.0) | 2.4.0\n[0.28.0](https://github.com/google/struct2tensor/releases/tag/v0.28.0) | 2.4.0\n[0.27.0](https://github.com/google/struct2tensor/releases/tag/v0.27.0) | 2.4.0\n[0.26.0](https://github.com/google/struct2tensor/releases/tag/v0.26.0) | 2.3.0\n[0.25.0](https://github.com/google/struct2tensor/releases/tag/v0.25.0) | 2.3.0\n[0.24.0](https://github.com/google/struct2tensor/releases/tag/v0.24.0) | 2.3.0\n[0.23.0](https://github.com/google/struct2tensor/releases/tag/v0.23.0) | 2.3.0\n[0.22.0](https://github.com/google/struct2tensor/releases/tag/v0.22.0) | 2.2.0\n[0.21.1](https://github.com/google/struct2tensor/releases/tag/v0.21.1) | 2.1.0\n[0.21.0](https://github.com/google/struct2tensor/releases/tag/v0.21.0) | 2.1.0\n0.0.1.dev* | 1.15\n\n\n", "description_content_type": "text/markdown", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "", "keywords": "tensorflow protobuf machine learning", "license": "Apache 2.0", "maintainer": "", "maintainer_email": "", "name": "struct2tensor", "package_url": "https://pypi.org/project/struct2tensor/", "platform": null, "project_url": "https://pypi.org/project/struct2tensor/", "project_urls": null, "release_url": "https://pypi.org/project/struct2tensor/0.39.0/", "requires_dist": [ "protobuf (<4,>=3.13)", "tensorflow (<2.9,>=2.8.0)", "tensorflow-metadata (<1.9.0,>=1.8.0)", "pyarrow (<6,>=1)" ], "requires_python": "", "summary": "Struct2Tensor is a package for parsing and manipulating structured data for TensorFlow", "version": "0.39.0", "yanked": false, "yanked_reason": null }, "last_serial": 13786355, "releases": { "0.0.1.dev0": [ { "comment_text": "", "digests": { "md5": "ecb3b25fd7f8d66f0110fc9f585fbeb8", "sha256": "70643d37d1cdb0a9badf762798c7e4527b66400977f28c98110a5b19c5723c53" }, "downloads": -1, "filename": "struct2tensor-0.0.1.dev0-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "ecb3b25fd7f8d66f0110fc9f585fbeb8", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 414276, "upload_time": "2019-07-10T22:58:18", "upload_time_iso_8601": "2019-07-10T22:58:18.193216Z", "url": "https://files.pythonhosted.org/packages/a5/53/6090a74eca2c1329df42b8d4de22cfbc136c1b311671d8141c2755b06e1f/struct2tensor-0.0.1.dev0-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null } ], "0.0.1.dev1": [ { "comment_text": "", "digests": { "md5": "9b37cd31596e1a53a43b29cbf66a061d", "sha256": "aa55c2db869ddcdfe647e9708a1ea80ba10c6b59c56923c1713bdf375fcbcbf0" }, "downloads": -1, "filename": "struct2tensor-0.0.1.dev1-cp36-cp36m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "9b37cd31596e1a53a43b29cbf66a061d", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 628502, "upload_time": "2019-10-18T16:11:49", "upload_time_iso_8601": "2019-10-18T16:11:49.641945Z", "url": "https://files.pythonhosted.org/packages/05/68/5b5c1c84c98294e7d65802cd9c39b15074f55205a0acb2ec87f397be7f02/struct2tensor-0.0.1.dev1-cp36-cp36m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null } ], "0.0.1.dev2": [ { "comment_text": "", "digests": { "md5": "4c8214bf4e0506a0665d7c71ccde0694", "sha256": "5aec2bf8af608c53cbafe138a7d0f627ea22a8796db1c3216ee5e6210c743f69" }, "downloads": -1, "filename": "struct2tensor-0.0.1.dev2-cp36-cp36m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "4c8214bf4e0506a0665d7c71ccde0694", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 631718, "upload_time": "2019-10-22T23:11:02", "upload_time_iso_8601": "2019-10-22T23:11:02.069830Z", "url": "https://files.pythonhosted.org/packages/fc/1d/d33cc32c4f50a89a49707dfef498473bda3e70e8333576a2a8f9727ebf75/struct2tensor-0.0.1.dev2-cp36-cp36m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2f2aed4cdc4ba2f930be9b148aa420b7", "sha256": "9fbb32d814505e0f334195e9dd170e62d0ff312c6ee82b754b91b7e8c2d721a1" }, "downloads": -1, "filename": "struct2tensor-0.0.1.dev2-cp37-cp37m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "2f2aed4cdc4ba2f930be9b148aa420b7", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 572315, "upload_time": "2019-10-22T23:00:35", "upload_time_iso_8601": "2019-10-22T23:00:35.037010Z", "url": "https://files.pythonhosted.org/packages/bf/a5/dcd535c084498f574a43cff8a23b13234803821184e75b6db08f513c9b5b/struct2tensor-0.0.1.dev2-cp37-cp37m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null } ], "0.0.1.dev3": [ { "comment_text": "", "digests": { "md5": "afaee06cfd6be2cf5ca584087d4645e4", "sha256": "b7a1ca6264093dccf633bf38612fc3a4200eecab995e848787839ae88ec5f525" }, "downloads": -1, "filename": "struct2tensor-0.0.1.dev3-cp36-cp36m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "afaee06cfd6be2cf5ca584087d4645e4", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 632030, "upload_time": "2019-10-23T03:59:08", "upload_time_iso_8601": "2019-10-23T03:59:08.004631Z", "url": "https://files.pythonhosted.org/packages/ee/62/bc8c3a745e00dcb04e9a36e331fa35f847aad29196b09eef73892ab195a3/struct2tensor-0.0.1.dev3-cp36-cp36m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "396890921d00457ae5bfc14071202185", "sha256": "3120931c2a33e3f29a34928504ed22d952f2a369557807109f13ae09350d30d3" }, "downloads": -1, "filename": "struct2tensor-0.0.1.dev3-cp37-cp37m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "396890921d00457ae5bfc14071202185", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 632031, "upload_time": "2019-10-23T01:48:15", "upload_time_iso_8601": "2019-10-23T01:48:15.804053Z", "url": "https://files.pythonhosted.org/packages/fe/a6/ec7aa6f095ed4a5a53dfe5e68b7f41bd51020b1af13ae9f7f7458ef54e4b/struct2tensor-0.0.1.dev3-cp37-cp37m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null } ], "0.0.1.dev4": [ { "comment_text": "", "digests": { "md5": "a28925dcb55a8787d868a2e31cc13927", "sha256": "899611a107f4aa9c653e3b00008d513d9c23eda2ece47c92e39924ecc3e8ea07" }, "downloads": -1, "filename": "struct2tensor-0.0.1.dev4-cp37-cp37m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "a28925dcb55a8787d868a2e31cc13927", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 632126, "upload_time": "2019-10-23T04:53:52", "upload_time_iso_8601": "2019-10-23T04:53:52.037146Z", "url": "https://files.pythonhosted.org/packages/bf/80/cbb98c5852ed0a9f2f84b59dfee47f5ab1632d5a11d322ea360858c82c9a/struct2tensor-0.0.1.dev4-cp37-cp37m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null } ], "0.0.1.dev5": [ { "comment_text": "", "digests": { "md5": "32a14c1a347d2ff347c84588a42916b6", "sha256": "0c2de99d3da0bf4d73a5dab5334b82503d156857a8e8fd6c98a5e0ebc61d16ff" }, "downloads": -1, "filename": "struct2tensor-0.0.1.dev5-cp36-cp36m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "32a14c1a347d2ff347c84588a42916b6", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 631859, "upload_time": "2019-10-24T04:17:41", "upload_time_iso_8601": "2019-10-24T04:17:41.092059Z", "url": "https://files.pythonhosted.org/packages/51/28/a6ee03d78acf268de51f7899d56dbd14257cda3d86bdc3028ae828c7d76d/struct2tensor-0.0.1.dev5-cp36-cp36m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "05b7c9f5042383b59e0990c559704b0b", "sha256": "eeacc9764de5abef42b9cab784c8549e73a1a96e5a01bd8e09866bdc6ec08046" }, "downloads": -1, "filename": "struct2tensor-0.0.1.dev5-cp37-cp37m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "05b7c9f5042383b59e0990c559704b0b", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 632127, "upload_time": "2019-10-23T16:27:04", "upload_time_iso_8601": "2019-10-23T16:27:04.142460Z", "url": "https://files.pythonhosted.org/packages/85/04/d5a8d9e2c170d066320fa1d080ef987d6b238971b97375147571f48f04ea/struct2tensor-0.0.1.dev5-cp37-cp37m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null } ], "0.0.1.dev6": [ { "comment_text": "", "digests": { "md5": "62106bc6b994e7c392681e4a517deeab", "sha256": "98248b0793d0f8c8cc2929746e3586395766f0f611bb7cb008aa37cae30a1ea7" }, "downloads": -1, "filename": "struct2tensor-0.0.1.dev6-cp36-cp36m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "62106bc6b994e7c392681e4a517deeab", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 632784, "upload_time": "2019-11-04T20:59:09", "upload_time_iso_8601": "2019-11-04T20:59:09.029129Z", "url": "https://files.pythonhosted.org/packages/c7/2e/28ae21fc40b13e0e35e923ea43f4b5a9030e9827f135e71dad5dde56b9bf/struct2tensor-0.0.1.dev6-cp36-cp36m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8aa5bc4760fea2382e8cbccfbc9cec78", "sha256": "2135216f372d259efe99a8590f87bbd220e88a387d99c99faf399316ef0e0388" }, "downloads": -1, "filename": "struct2tensor-0.0.1.dev6-cp37-cp37m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "8aa5bc4760fea2382e8cbccfbc9cec78", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 634222, "upload_time": "2019-11-04T20:59:20", "upload_time_iso_8601": "2019-11-04T20:59:20.846068Z", "url": "https://files.pythonhosted.org/packages/3a/41/4db66b0036a83f1d3833c7335382dc1e4f5445fc4f599bf9533d7829a56e/struct2tensor-0.0.1.dev6-cp37-cp37m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null } ], "0.21.0": [ { "comment_text": "", "digests": { "md5": "ff217115404d25345e5b3923eb57b86d", "sha256": "f97a2da9c161600fc9996068a0b6df5aa210e82133ef47548828fe0652ac5f29" }, "downloads": -1, "filename": "struct2tensor-0.21.0-cp35-cp35m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "ff217115404d25345e5b3923eb57b86d", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 3958092, "upload_time": "2020-04-02T18:59:25", "upload_time_iso_8601": "2020-04-02T18:59:25.696303Z", "url": "https://files.pythonhosted.org/packages/00/ab/85e402d36df8a5afb7cab11c7f2d75df3e599845884e250a7b23c16a7a08/struct2tensor-0.21.0-cp35-cp35m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c0076ab5f3f6423b05a35f0a84a43e84", "sha256": "6f555c4263693c54514e0bf162843d52b7f7ca655d931c41fb706235ba1ff9e5" }, "downloads": -1, "filename": "struct2tensor-0.21.0-cp35-cp35m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "c0076ab5f3f6423b05a35f0a84a43e84", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 4878649, "upload_time": "2020-04-02T18:59:27", "upload_time_iso_8601": "2020-04-02T18:59:27.446045Z", "url": "https://files.pythonhosted.org/packages/ce/7a/64486cefb0cc65dbc8c2051ed82d033b36f56289986c067ce650490788e8/struct2tensor-0.21.0-cp35-cp35m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "acf5f1841e3a000271d398fb0c3f3e77", "sha256": "82afb7b13d522dc4661375f7f4dc5ca8f712800fe586712b6306af52589fce7f" }, "downloads": -1, "filename": "struct2tensor-0.21.0-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "acf5f1841e3a000271d398fb0c3f3e77", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 3958091, "upload_time": "2020-04-02T18:59:29", "upload_time_iso_8601": "2020-04-02T18:59:29.242384Z", "url": "https://files.pythonhosted.org/packages/ca/b0/23d303118622d867fd8ac8e45fcfd4d569978e924df98d0795f9c938989a/struct2tensor-0.21.0-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c7b18740cb70f2051bd2d435f47176f3", "sha256": "e499d37e327de858227d31e8ea89c1be98cad2f8c6d4765933a2dd4685e3b46a" }, "downloads": -1, "filename": "struct2tensor-0.21.0-cp36-cp36m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "c7b18740cb70f2051bd2d435f47176f3", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 4878648, "upload_time": "2020-04-02T18:59:31", "upload_time_iso_8601": "2020-04-02T18:59:31.249233Z", "url": "https://files.pythonhosted.org/packages/3b/cf/5b96f87cac4e41d0359bda4656c7ac423695567989fd66b58f6b58118ece/struct2tensor-0.21.0-cp36-cp36m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "234bfbb5791eade551d2a935ca7cd87e", "sha256": "c2eb2bd84d2c777b629d37400bb9f22c609daa5e6e92b78c12d9335be0ddab66" }, "downloads": -1, "filename": "struct2tensor-0.21.0-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "234bfbb5791eade551d2a935ca7cd87e", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 3958092, "upload_time": "2020-04-02T18:59:32", "upload_time_iso_8601": "2020-04-02T18:59:32.792125Z", "url": "https://files.pythonhosted.org/packages/4d/37/cc2ed8b6e3a2647a4c58bc62fcf2353efc400997d26368dc9ddc0789cfd0/struct2tensor-0.21.0-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "13d355a9518574f130a2342b09408f00", "sha256": "41390a94680340b2ebd82306200de50a114b7b7d7978c2c68a5f73d637001201" }, "downloads": -1, "filename": "struct2tensor-0.21.0-cp37-cp37m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "13d355a9518574f130a2342b09408f00", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 4878649, "upload_time": "2020-04-02T18:25:58", "upload_time_iso_8601": "2020-04-02T18:25:58.904997Z", "url": "https://files.pythonhosted.org/packages/94/e8/42155513f1c3a4bcc8028702c868a94c30e1650f52a6a9294d46efdecd2f/struct2tensor-0.21.0-cp37-cp37m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null } ], "0.21.1": [ { "comment_text": "", "digests": { "md5": "9bddc8283e247805ddf37a191b198e48", "sha256": "e2395dafb804e65c33eca613da6e98d0fcde280b21c402ec4a1dcdf6207d1c13" }, "downloads": -1, "filename": "struct2tensor-0.21.1-cp35-cp35m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "9bddc8283e247805ddf37a191b198e48", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 3960283, "upload_time": "2020-04-10T17:29:42", "upload_time_iso_8601": "2020-04-10T17:29:42.205185Z", "url": "https://files.pythonhosted.org/packages/20/99/df45d24074eec319d1623aa58db1bab5af29cfedf6aeea533ae8a51369bf/struct2tensor-0.21.1-cp35-cp35m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5185b2dd0839298e3569dfda22fbec66", "sha256": "5be94eb3ca19c40ccfb4f611aabddf03d19bc55d0783b2f56c37d9262111d769" }, "downloads": -1, "filename": "struct2tensor-0.21.1-cp35-cp35m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "5185b2dd0839298e3569dfda22fbec66", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 4880547, "upload_time": "2020-04-10T17:29:44", "upload_time_iso_8601": "2020-04-10T17:29:44.020773Z", "url": "https://files.pythonhosted.org/packages/ba/2d/18dceeb139487a03fe3f452f165c04f3f4f142b7eecf8beb149656a8c418/struct2tensor-0.21.1-cp35-cp35m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4a90c5adf3514fe28fdd23d85f9b7998", "sha256": "7654ffb9ab9fa7c4f82318f57a3c3bbe22c9e81d402748c878d46ecff2c8fe1b" }, "downloads": -1, "filename": "struct2tensor-0.21.1-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "4a90c5adf3514fe28fdd23d85f9b7998", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 3960283, "upload_time": "2020-04-10T17:29:45", "upload_time_iso_8601": "2020-04-10T17:29:45.747245Z", "url": "https://files.pythonhosted.org/packages/dc/06/7e4760a96b416ebe96b40a6b44b77579892990f4eb1d5df5db447007cc53/struct2tensor-0.21.1-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ef54324980c49167ab3aa0c87cec1ace", "sha256": "42982bb0980c8550a66b55c28024aa595ead5cbd1a7871bfd0ef653d9839ba8c" }, "downloads": -1, "filename": "struct2tensor-0.21.1-cp36-cp36m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "ef54324980c49167ab3aa0c87cec1ace", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 4880547, "upload_time": "2020-04-10T17:29:47", "upload_time_iso_8601": "2020-04-10T17:29:47.760277Z", "url": "https://files.pythonhosted.org/packages/60/db/7c9e09df2a9c1919316759cdccab592c5c848b839da75a90562f7858a81d/struct2tensor-0.21.1-cp36-cp36m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e269a91bb43d844faa5e1f81bbdbfbf9", "sha256": "2c09d558fd16697497d88fda9d58cbcbd5f3f33427add5cd167f486f6eb8995e" }, "downloads": -1, "filename": "struct2tensor-0.21.1-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "e269a91bb43d844faa5e1f81bbdbfbf9", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 3960283, "upload_time": "2020-04-10T17:29:49", "upload_time_iso_8601": "2020-04-10T17:29:49.403601Z", "url": "https://files.pythonhosted.org/packages/9e/51/a4b491277bc7cd2bec8ceb08963fa761eff6c4aa45d096149fb5b22237bd/struct2tensor-0.21.1-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b8947cfaad656a1bda33f5797cee52fb", "sha256": "0af863b24ce11c5e5f2b125e1f6d38dd80829d712a2851648f2ad89760b0947e" }, "downloads": -1, "filename": "struct2tensor-0.21.1-cp37-cp37m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "b8947cfaad656a1bda33f5797cee52fb", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 4880547, "upload_time": "2020-04-10T17:29:51", "upload_time_iso_8601": "2020-04-10T17:29:51.077312Z", "url": "https://files.pythonhosted.org/packages/f7/6a/71199d3bcf2bed8ad17c0d22789efc4f44055db8e1710dcfd086d551fe24/struct2tensor-0.21.1-cp37-cp37m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null } ], "0.22.0": [ { "comment_text": "", "digests": { "md5": "6410f306ac429b9d6546e94180ea00b1", "sha256": "24961aaac5ecc33f7d9cbc1fb2476ce504b3734cd8f3fca4687ebafb5345bfb7" }, "downloads": -1, "filename": "struct2tensor-0.22.0-cp35-cp35m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "6410f306ac429b9d6546e94180ea00b1", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 1761125, "upload_time": "2020-05-14T18:30:46", "upload_time_iso_8601": "2020-05-14T18:30:46.267822Z", "url": "https://files.pythonhosted.org/packages/94/83/04890769bc617ae5fe77b5ac6b970cddd22a31eed8d518be192a0c9d5fb7/struct2tensor-0.22.0-cp35-cp35m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5eac3a4a4c316988796aa6d546d49776", "sha256": "489eeff2ab8ecfd25ec420a25c3f216590cb2e1fa5a4c90279d727934ae96b6f" }, "downloads": -1, "filename": "struct2tensor-0.22.0-cp35-cp35m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "5eac3a4a4c316988796aa6d546d49776", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 2284663, "upload_time": "2020-05-14T18:30:47", "upload_time_iso_8601": "2020-05-14T18:30:47.877301Z", "url": "https://files.pythonhosted.org/packages/d2/51/7b2d7d4d1820e4079bfa0d19b8c9ce9b1911b12d76e437df79ed7489bc6b/struct2tensor-0.22.0-cp35-cp35m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "953b1d32d17e6fef3a86243dae376a15", "sha256": "8dd167b15e85ed0302ecc453416ff3a149fc77924ddf559384b649635eaf047b" }, "downloads": -1, "filename": "struct2tensor-0.22.0-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "953b1d32d17e6fef3a86243dae376a15", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 1761126, "upload_time": "2020-05-14T18:30:49", "upload_time_iso_8601": "2020-05-14T18:30:49.699407Z", "url": "https://files.pythonhosted.org/packages/b9/31/3da96ec08bf2288630740007fc667f6a41c3c866998e1a620138fc7f6c96/struct2tensor-0.22.0-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0b97497935499fa95e77c74ea7703b5c", "sha256": "10fb2f93a0ef23802398e423d5203eb94fac8773146d05b5b9b939937d681521" }, "downloads": -1, "filename": "struct2tensor-0.22.0-cp36-cp36m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "0b97497935499fa95e77c74ea7703b5c", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 2284663, "upload_time": "2020-05-14T18:30:51", "upload_time_iso_8601": "2020-05-14T18:30:51.221073Z", "url": "https://files.pythonhosted.org/packages/15/07/d76737d287e69e26c8d99b82c733060b519fc197fa8e0162ff31e51a33c1/struct2tensor-0.22.0-cp36-cp36m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "11fda7c127820e9a60f1ba1b0c02f4ea", "sha256": "27c50a1a8243dcb3232e92aedb5f9dedfe270a33f727f21c4b70f685a36de2d3" }, "downloads": -1, "filename": "struct2tensor-0.22.0-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "11fda7c127820e9a60f1ba1b0c02f4ea", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 1761126, "upload_time": "2020-05-14T18:30:52", "upload_time_iso_8601": "2020-05-14T18:30:52.940383Z", "url": "https://files.pythonhosted.org/packages/a7/ee/35901243cf93b8f1261e229b9a4b166d111abc60a8ffda9de55136d1557f/struct2tensor-0.22.0-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "18cd70f6c3780ea968487c0816cfee2c", "sha256": "f618b9e3eedb04060e72ed22f5c5f8e8042887a586ebec671b1f5266c95cf708" }, "downloads": -1, "filename": "struct2tensor-0.22.0-cp37-cp37m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "18cd70f6c3780ea968487c0816cfee2c", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 2284664, "upload_time": "2020-05-14T18:30:54", "upload_time_iso_8601": "2020-05-14T18:30:54.585752Z", "url": "https://files.pythonhosted.org/packages/6f/c5/756feff2a25704d5c74f15746a78420c871d35d0b8872860ec9399779234/struct2tensor-0.22.0-cp37-cp37m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null } ], "0.23.0": [ { "comment_text": "", "digests": { "md5": "d698537846aace702d857872156da188", "sha256": "a86cba2b67e8c218394c761afa1eb605ef2e260d6c3e939232293d4bb16653d4" }, "downloads": -1, "filename": "struct2tensor-0.23.0-cp35-cp35m-macosx_10_14_x86_64.whl", "has_sig": false, "md5_digest": "d698537846aace702d857872156da188", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 1748202, "upload_time": "2020-08-10T23:10:28", "upload_time_iso_8601": "2020-08-10T23:10:28.942775Z", "url": "https://files.pythonhosted.org/packages/4b/d3/cf2ac82bc3d0d686e2f804c9c1a7692e43cc475b31492bdbe1220ac68de7/struct2tensor-0.23.0-cp35-cp35m-macosx_10_14_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5625e1a6c2a25f8e99b39929abc92eea", "sha256": "e894a6ac6e531f494d9eee8fd4f5187364f9ffcdeb11e65166de445071dd4ab0" }, "downloads": -1, "filename": "struct2tensor-0.23.0-cp35-cp35m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "5625e1a6c2a25f8e99b39929abc92eea", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 2272974, "upload_time": "2020-08-10T23:34:42", "upload_time_iso_8601": "2020-08-10T23:34:42.691305Z", "url": "https://files.pythonhosted.org/packages/f9/18/15940984d965c7c62685fc7a9ecc0d7f8ffd47f8601f9ecdde84a41921e7/struct2tensor-0.23.0-cp35-cp35m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ca8280d494ad7f7d2aa049af2448e3b1", "sha256": "d54816c90d6d1dd17219ccd0ccea53d3056c025ea76d299b40210aeea3c1346d" }, "downloads": -1, "filename": "struct2tensor-0.23.0-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "ca8280d494ad7f7d2aa049af2448e3b1", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 1748201, "upload_time": "2020-08-10T23:41:44", "upload_time_iso_8601": "2020-08-10T23:41:44.757153Z", "url": "https://files.pythonhosted.org/packages/d1/9d/51cbee74e230b81ce140cda28ea7f2e9e968ba96ef053f9931152b1b0b68/struct2tensor-0.23.0-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "64d4a110760fb2c0eb9e4de98e1da871", "sha256": "ee5684421b684de1774deab4be4c1738f49ba73c54c9c1b45d08de7bf6c40f4b" }, "downloads": -1, "filename": "struct2tensor-0.23.0-cp36-cp36m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "64d4a110760fb2c0eb9e4de98e1da871", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 2272973, "upload_time": "2020-08-10T23:33:46", "upload_time_iso_8601": "2020-08-10T23:33:46.884014Z", "url": "https://files.pythonhosted.org/packages/93/6d/b456aaa3b2481a4bb12f29ec3c47dda4b941f6d7edc7d2c070914bd260be/struct2tensor-0.23.0-cp36-cp36m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "848d4b08a12df57a1023c3d005cf584a", "sha256": "882217e75dcf6399c318da487203dd65a7c672de6ccc61b076a9832ccaf88d24" }, "downloads": -1, "filename": "struct2tensor-0.23.0-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "848d4b08a12df57a1023c3d005cf584a", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 1748201, "upload_time": "2020-08-10T23:36:15", "upload_time_iso_8601": "2020-08-10T23:36:15.480052Z", "url": "https://files.pythonhosted.org/packages/94/1f/984a168284643645f134ee4b17537195ea6afdde7d3e89a9448da3c9da64/struct2tensor-0.23.0-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "40b7f68c4d1a15044930b6f9f68be95f", "sha256": "febfa7b7da2bca550176745b16cb65b6c6d684c27c3d35d953720b62cdfcb95c" }, "downloads": -1, "filename": "struct2tensor-0.23.0-cp37-cp37m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "40b7f68c4d1a15044930b6f9f68be95f", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 2272974, "upload_time": "2020-08-10T23:34:10", "upload_time_iso_8601": "2020-08-10T23:34:10.098998Z", "url": "https://files.pythonhosted.org/packages/bb/88/e640c6828cc2e26e8ea424e1ac811daf90b43d5c4a60ff0101f2eead2b23/struct2tensor-0.23.0-cp37-cp37m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null } ], "0.24.0": [ { "comment_text": "", "digests": { "md5": "0918840357439c45ea849d27185acb0c", "sha256": "0fc76e284a294bd5238fc1f1e885388681ec7e6c58280cc90a212becd5f28812" }, "downloads": -1, "filename": "struct2tensor-0.24.0-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "0918840357439c45ea849d27185acb0c", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 1752277, "upload_time": "2020-09-14T22:33:33", "upload_time_iso_8601": "2020-09-14T22:33:33.583237Z", "url": "https://files.pythonhosted.org/packages/1c/78/5066d8c57e7bca9c0158e9adc2790fa714df68f0d75a2577b02122f9e431/struct2tensor-0.24.0-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c974429fd2862fcfd19c09045629da44", "sha256": "5807a8d142d69955529c2fc16f5ea49346ba9f2f05bb8705f58be2bc31d74687" }, "downloads": -1, "filename": "struct2tensor-0.24.0-cp36-cp36m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "c974429fd2862fcfd19c09045629da44", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 2277053, "upload_time": "2020-09-14T21:45:32", "upload_time_iso_8601": "2020-09-14T21:45:32.979527Z", "url": "https://files.pythonhosted.org/packages/a2/03/0694cd59579d73434c8f5e135e93e3a88ef5a982053cf8596e641833f0f0/struct2tensor-0.24.0-cp36-cp36m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6bd9032f1dc877f59368bea1d697a834", "sha256": "52747621f0e48427b1045f78f06ec5683dcf811498f0867723fedb13061bd666" }, "downloads": -1, "filename": "struct2tensor-0.24.0-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "6bd9032f1dc877f59368bea1d697a834", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 1752277, "upload_time": "2020-09-14T22:06:06", "upload_time_iso_8601": "2020-09-14T22:06:06.717007Z", "url": "https://files.pythonhosted.org/packages/e7/cc/7908b931c0291bbb89067e8a16d551f48b6e7c1997c4da5889010adcb72c/struct2tensor-0.24.0-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6e58d9677c70bd4fbd3b9b9444e343b1", "sha256": "845d0c42c466e4221c4fb4571701fd860413afc4c2fe69f19dfc4136a4aef6ed" }, "downloads": -1, "filename": "struct2tensor-0.24.0-cp37-cp37m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "6e58d9677c70bd4fbd3b9b9444e343b1", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 2277053, "upload_time": "2020-09-14T21:47:16", "upload_time_iso_8601": "2020-09-14T21:47:16.527063Z", "url": "https://files.pythonhosted.org/packages/35/f8/ad622e346434616e7de04cb76499d2fcd7f219d28e75eee4f324ebe43e46/struct2tensor-0.24.0-cp37-cp37m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2f746afb62db60ca08474e34677631c4", "sha256": "1447d1b344a0087ce71c5030c7111c5c5d83bd8864365f3d407546225366a593" }, "downloads": -1, "filename": "struct2tensor-0.24.0-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "2f746afb62db60ca08474e34677631c4", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 1752276, "upload_time": "2020-09-14T21:58:39", "upload_time_iso_8601": "2020-09-14T21:58:39.742780Z", "url": "https://files.pythonhosted.org/packages/97/18/27db22510f639fa6d6ff645adca4401779cab722dd54ccecd380948f0a02/struct2tensor-0.24.0-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9f013cd0c5314bb39253aeef072d4374", "sha256": "9551f1c025c847fe5779236d00ac2bed0736301656c14e0595c9db1267b17554" }, "downloads": -1, "filename": "struct2tensor-0.24.0-cp38-cp38-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "9f013cd0c5314bb39253aeef072d4374", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 2277050, "upload_time": "2020-09-14T21:48:21", "upload_time_iso_8601": "2020-09-14T21:48:21.174006Z", "url": "https://files.pythonhosted.org/packages/4b/55/a370250fe1c07dd2bbc5c67897164274fc215c05441077d69370f0c040ab/struct2tensor-0.24.0-cp38-cp38-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null } ], "0.25.0": [ { "comment_text": "", "digests": { "md5": "249bfc1b70c2142ddeefd0823ab82f48", "sha256": "dae0fc54501f91b7cd2cf9abc058e3c06bc270260d64c39c820903fb64f5d16b" }, "downloads": -1, "filename": "struct2tensor-0.25.0-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "249bfc1b70c2142ddeefd0823ab82f48", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 1753243, "upload_time": "2020-11-03T21:20:32", "upload_time_iso_8601": "2020-11-03T21:20:32.476885Z", "url": "https://files.pythonhosted.org/packages/ea/11/dab7ddded391905122dd0a7e980e2417e9736a79efc74f2ef0e9dca64e3b/struct2tensor-0.25.0-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a81d1a0678d37415000ae0f5b3d2321a", "sha256": "74addade6b115e6bf472865ac3aa76ce3fe793348a21295be991313faabae24c" }, "downloads": -1, "filename": "struct2tensor-0.25.0-cp36-cp36m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "a81d1a0678d37415000ae0f5b3d2321a", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 2278013, "upload_time": "2020-11-03T21:11:22", "upload_time_iso_8601": "2020-11-03T21:11:22.558852Z", "url": "https://files.pythonhosted.org/packages/84/c6/1a04eb4653c9b180165cd47749d03bc98222ab2c048fd7f6cf196658b0bb/struct2tensor-0.25.0-cp36-cp36m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "05c1bc3cc25b2d5023eae87c84e69882", "sha256": "91d826aacd84116d41da9bc8a97c9c82840a2eafc37f6cf3c3002e955ee7b537" }, "downloads": -1, "filename": "struct2tensor-0.25.0-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "05c1bc3cc25b2d5023eae87c84e69882", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 1753242, "upload_time": "2020-11-03T21:20:44", "upload_time_iso_8601": "2020-11-03T21:20:44.450603Z", "url": "https://files.pythonhosted.org/packages/6c/67/fcd9f20ef1f54172262c30a8216e0de6d1b04ce3c28e5e0a2d2bacf1939d/struct2tensor-0.25.0-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2d869aea21c4bc9c898dd050b9ec698b", "sha256": "dee51e90f012012213b59200fd3a835cba8511cdf89764f079e9f88ab05bef4d" }, "downloads": -1, "filename": "struct2tensor-0.25.0-cp37-cp37m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "2d869aea21c4bc9c898dd050b9ec698b", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 2278012, "upload_time": "2020-11-03T21:12:05", "upload_time_iso_8601": "2020-11-03T21:12:05.247205Z", "url": "https://files.pythonhosted.org/packages/19/5b/89c47d49f03f7b102614a4e0f4206f58b519f7e113980dae6542be536e59/struct2tensor-0.25.0-cp37-cp37m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bfd90146c1aa9b1b5da470a4e9d0e7eb", "sha256": "f27bf0041f38fa870876e92515d7786a9f8e937913f9d88466e9b4e2ece2fe42" }, "downloads": -1, "filename": "struct2tensor-0.25.0-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "bfd90146c1aa9b1b5da470a4e9d0e7eb", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 1753241, "upload_time": "2020-11-03T21:15:24", "upload_time_iso_8601": "2020-11-03T21:15:24.013470Z", "url": "https://files.pythonhosted.org/packages/31/ae/1308598179fe30ca0106bfa00ddb6cca5902cf21df639029b0e7416ede56/struct2tensor-0.25.0-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "545051003f6776095c0c0f7f5a14db24", "sha256": "ffbf1be40b7cacc363c964c7dcaf0c1f7bea4adc0756dbd9590694d1e8891be9" }, "downloads": -1, "filename": "struct2tensor-0.25.0-cp38-cp38-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "545051003f6776095c0c0f7f5a14db24", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 2278009, "upload_time": "2020-11-03T21:13:13", "upload_time_iso_8601": "2020-11-03T21:13:13.054788Z", "url": "https://files.pythonhosted.org/packages/9e/cf/3c3b8a2327b194ab78c69c14da93f5ebc9b6dff9ac4114a9ef535a25ac39/struct2tensor-0.25.0-cp38-cp38-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null } ], "0.26.0": [ { "comment_text": "", "digests": { "md5": "7f5c3fc1eee93f25be0be4a6f05d43d7", "sha256": "3cbfb36f59dae350b3b6b1f31c9e80499277b84d94bda3ce11fbeb54e788a6f1" }, "downloads": -1, "filename": "struct2tensor-0.26.0-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "7f5c3fc1eee93f25be0be4a6f05d43d7", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 1825183, "upload_time": "2020-12-11T00:04:32", "upload_time_iso_8601": "2020-12-11T00:04:32.501963Z", "url": "https://files.pythonhosted.org/packages/55/fc/c7cbaf1276487aa3628359e9e8a3b7bb9218e67404d40f71e5be55216f15/struct2tensor-0.26.0-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "203e1de761361e27607c17e9d8a739c0", "sha256": "8cc9e88fa2e13e835f180d3361f6bd79ef741ea2b88014acbe6b9918bc8716ee" }, "downloads": -1, "filename": "struct2tensor-0.26.0-cp36-cp36m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "203e1de761361e27607c17e9d8a739c0", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 2289608, "upload_time": "2020-12-10T23:49:22", "upload_time_iso_8601": "2020-12-10T23:49:22.201513Z", "url": "https://files.pythonhosted.org/packages/50/76/6a08f52c35b681ef21c0ca9c521ebf8d88133c5073cf021e90ad84af8afe/struct2tensor-0.26.0-cp36-cp36m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d44c874714431bc1dd146b89fbdb2b1e", "sha256": "10571acf5fafeac03f926d7bb57ecf90ad2fb6efb7a5abf4ce9fa9f6ee5ffa91" }, "downloads": -1, "filename": "struct2tensor-0.26.0-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "d44c874714431bc1dd146b89fbdb2b1e", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 1825182, "upload_time": "2020-12-10T23:55:20", "upload_time_iso_8601": "2020-12-10T23:55:20.720988Z", "url": "https://files.pythonhosted.org/packages/24/bc/4b0db6a11205a194c326082943b75bdf2f5eae7d693314ed84b9b56b6a6f/struct2tensor-0.26.0-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "91ea6fba2c3da83a8f949deafd709257", "sha256": "23c530b868eb5cbb4496be56df9d65a140076d33e57240aa24bc854975e8f8e0" }, "downloads": -1, "filename": "struct2tensor-0.26.0-cp37-cp37m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "91ea6fba2c3da83a8f949deafd709257", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 2289608, "upload_time": "2020-12-10T23:53:15", "upload_time_iso_8601": "2020-12-10T23:53:15.838299Z", "url": "https://files.pythonhosted.org/packages/14/c1/ff4b8e3a096b3027e09f14eceb1a29b8c1bb8b21ef68b1dbe7372209f82e/struct2tensor-0.26.0-cp37-cp37m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "34aa831afd3f4426513414e4b70a3984", "sha256": "8f3a03f417000ba468e1c55b20550b7506809103aceec8c2b11939a648871b1b" }, "downloads": -1, "filename": "struct2tensor-0.26.0-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "34aa831afd3f4426513414e4b70a3984", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 1825180, "upload_time": "2020-12-10T23:58:47", "upload_time_iso_8601": "2020-12-10T23:58:47.171520Z", "url": "https://files.pythonhosted.org/packages/c3/e6/a3390b38f145d21482487c772ced24389342492d32f0f13b577a24775d2a/struct2tensor-0.26.0-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6ad1374da60d2115d6fab652787b6928", "sha256": "f53bf9debfbbd105307522d406e307b4f8bec70d2750fc44d890c96b88f05928" }, "downloads": -1, "filename": "struct2tensor-0.26.0-cp38-cp38-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "6ad1374da60d2115d6fab652787b6928", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 2289609, "upload_time": "2020-12-10T23:50:57", "upload_time_iso_8601": "2020-12-10T23:50:57.870401Z", "url": "https://files.pythonhosted.org/packages/f0/7e/e5aa91cea2229b5345c5aa34e28eeee7ba579d86b5c8c856a5b93c0a1818/struct2tensor-0.26.0-cp38-cp38-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null } ], "0.27.0": [ { "comment_text": "", "digests": { "md5": "94adc557a6e4e4bf7cb1e45ecda3c439", "sha256": "a754c74ebbf713fca65b67a5ce086d0a3235f8e3e4793d9bd9b39132d236aba4" }, "downloads": -1, "filename": "struct2tensor-0.27.0-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "94adc557a6e4e4bf7cb1e45ecda3c439", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 1830407, "upload_time": "2021-01-27T01:15:33", "upload_time_iso_8601": "2021-01-27T01:15:33.034624Z", "url": "https://files.pythonhosted.org/packages/84/aa/7d518ea10d60934b2045425934092cd5af8e88c57106c9d12416b974183a/struct2tensor-0.27.0-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cf29cabe92de4590d7d20b30c0ee21e2", "sha256": "52ee8aa05daeede28d2ff96e614bd675076ad033cbae915cc6852cbcc46a289a" }, "downloads": -1, "filename": "struct2tensor-0.27.0-cp36-cp36m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "cf29cabe92de4590d7d20b30c0ee21e2", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 2293483, "upload_time": "2021-01-27T01:12:15", "upload_time_iso_8601": "2021-01-27T01:12:15.524187Z", "url": "https://files.pythonhosted.org/packages/6c/3b/f3777ff034b903c6c54aa59441956c235c858338c94b3091f1e7c6db140b/struct2tensor-0.27.0-cp36-cp36m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "dbde70df0380744cf07ad69a82f1d10a", "sha256": "b53c2209522494e4f1ab7b3954f440ff952d3b5fac9f59078089709a6f4bc4c0" }, "downloads": -1, "filename": "struct2tensor-0.27.0-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "dbde70df0380744cf07ad69a82f1d10a", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 1830409, "upload_time": "2021-01-27T01:16:20", "upload_time_iso_8601": "2021-01-27T01:16:20.055541Z", "url": "https://files.pythonhosted.org/packages/fa/51/5e5d976019f49047064c9c7f5616f70779378be4e1f18b374ceee235b015/struct2tensor-0.27.0-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d9f5075a7d708a37e9e33cbb29327c5b", "sha256": "83ceba653856eb6788fc49b2fc56c9c2e56c6b9aea95c78afb7f6fe132fa3f70" }, "downloads": -1, "filename": "struct2tensor-0.27.0-cp37-cp37m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "d9f5075a7d708a37e9e33cbb29327c5b", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 2293482, "upload_time": "2021-01-27T01:07:58", "upload_time_iso_8601": "2021-01-27T01:07:58.613101Z", "url": "https://files.pythonhosted.org/packages/f2/15/0c33f70ca8dc6f8ed66472b2ec18eb4395ab7c791cf4b8703e843a5d03a9/struct2tensor-0.27.0-cp37-cp37m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2b2163c43a32f38de757b9a5bcb73ecd", "sha256": "5e95d9bc7112ea9ba74e7dfa593f2d56a9e7f0c12eb8ff019de8884037928acb" }, "downloads": -1, "filename": "struct2tensor-0.27.0-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "2b2163c43a32f38de757b9a5bcb73ecd", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 1830408, "upload_time": "2021-01-27T01:18:56", "upload_time_iso_8601": "2021-01-27T01:18:56.963939Z", "url": "https://files.pythonhosted.org/packages/37/ad/0b92486d2138f504d883621806bf72beecd929841c921904645dc1d0a3be/struct2tensor-0.27.0-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2b59909c9cee8718f21483e43699fa12", "sha256": "d28468fa4fef87d3486a9e267c79d1b1ef0d8745050c02c6a2fa193000ea0e88" }, "downloads": -1, "filename": "struct2tensor-0.27.0-cp38-cp38-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "2b59909c9cee8718f21483e43699fa12", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 2293482, "upload_time": "2021-01-27T01:09:45", "upload_time_iso_8601": "2021-01-27T01:09:45.210566Z", "url": "https://files.pythonhosted.org/packages/b8/a2/ef71f4092ab5d4cef404c68a6045efa97299567ff8f55d80777acb5cd07e/struct2tensor-0.27.0-cp38-cp38-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null } ], "0.28.0": [ { "comment_text": "", "digests": { "md5": "11fbc0ed2d73f8e2e2a9ad1d5f3f123d", "sha256": "641e59586d2d0235714f9381342c0f6d33f8410830bf4cce1df1a0345cdb83ef" }, "downloads": -1, "filename": "struct2tensor-0.28.0-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "11fbc0ed2d73f8e2e2a9ad1d5f3f123d", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 1830537, "upload_time": "2021-02-23T02:02:16", "upload_time_iso_8601": "2021-02-23T02:02:16.850171Z", "url": "https://files.pythonhosted.org/packages/54/a8/b3ea75e02fd9cf579b718d6c5d4616a403e2fe9d1649314e1901bc866ded/struct2tensor-0.28.0-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0d41ea0131653b579a3b08eb725a5a5e", "sha256": "1a2db86e74b7c5dfd5a6e74153108636ccc356ce7e6ee05976adda0f96ae0984" }, "downloads": -1, "filename": "struct2tensor-0.28.0-cp36-cp36m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "0d41ea0131653b579a3b08eb725a5a5e", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 2293614, "upload_time": "2021-02-23T01:59:52", "upload_time_iso_8601": "2021-02-23T01:59:52.627676Z", "url": "https://files.pythonhosted.org/packages/7f/29/fd806718af99bebab678f6c3b41272bb9f1b5a0c8016a137bbb3f3c6e338/struct2tensor-0.28.0-cp36-cp36m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "753f9d3b2a3c5753e6b52cf395b13c0a", "sha256": "cc780299640ed09d5ce0a57a515588e96ff9488f3006447f75b4e458ac95ea09" }, "downloads": -1, "filename": "struct2tensor-0.28.0-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "753f9d3b2a3c5753e6b52cf395b13c0a", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 1830537, "upload_time": "2021-02-23T02:04:26", "upload_time_iso_8601": "2021-02-23T02:04:26.439000Z", "url": "https://files.pythonhosted.org/packages/44/41/47cc79f2168f3816a070251081dce91dcfa480109772b69acd7a639f17d7/struct2tensor-0.28.0-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "164679e5316a703db8a70e6be95444bc", "sha256": "81d210aec14a5123ac897c0b93a1049525689bd548363f228628c4a1d9585e85" }, "downloads": -1, "filename": "struct2tensor-0.28.0-cp37-cp37m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "164679e5316a703db8a70e6be95444bc", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 2293613, "upload_time": "2021-02-23T01:56:42", "upload_time_iso_8601": "2021-02-23T01:56:42.502889Z", "url": "https://files.pythonhosted.org/packages/4e/7b/8437e978ccfc604ca088d934b035d565d0ad3ea2e699fcee9384c73533dd/struct2tensor-0.28.0-cp37-cp37m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fe93a5f63265e340c05619223dc29397", "sha256": "e0add3ff49a7b05a9391d260c957b9373f7817644a57325dec3a8dacd668c89e" }, "downloads": -1, "filename": "struct2tensor-0.28.0-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "fe93a5f63265e340c05619223dc29397", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 1830535, "upload_time": "2021-02-23T02:06:15", "upload_time_iso_8601": "2021-02-23T02:06:15.166778Z", "url": "https://files.pythonhosted.org/packages/96/95/fc7fa9814accac128d23d1091d7bc41225a0c3e6571909edb9ee2d6f0425/struct2tensor-0.28.0-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "919e8e2747525f178375734de3f856aa", "sha256": "c9805b4b07132766de9d7b5ec24c0f4ab30daeb4e3650bf508c669d876aeaaad" }, "downloads": -1, "filename": "struct2tensor-0.28.0-cp38-cp38-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "919e8e2747525f178375734de3f856aa", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 2293613, "upload_time": "2021-02-23T01:57:51", "upload_time_iso_8601": "2021-02-23T01:57:51.618783Z", "url": "https://files.pythonhosted.org/packages/c8/e5/8f475e206e3881c34d08bad2f78dcf27b577b9c3faa41634b63f635c24e7/struct2tensor-0.28.0-cp38-cp38-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null } ], "0.29.0": [ { "comment_text": "", "digests": { "md5": "9372c995c406b4712b8ed4011646c78d", "sha256": "a09e62a0945325f3a521d1e6e1b21db0efe267878d6779b9c3648dbb64cfce0a" }, "downloads": -1, "filename": "struct2tensor-0.29.0-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "9372c995c406b4712b8ed4011646c78d", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 1830455, "upload_time": "2021-03-23T18:56:16", "upload_time_iso_8601": "2021-03-23T18:56:16.317845Z", "url": "https://files.pythonhosted.org/packages/ae/08/ce6800c7ea9cd78c855d6c167014e29f519a19e507b0ab2bb8e5c75ffb47/struct2tensor-0.29.0-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4982c9b3a15257c53aa22605a47e7de4", "sha256": "135ea0080b7dd47dfdce31184649124cdbe3fb484adca4cc098be63cf42c49bf" }, "downloads": -1, "filename": "struct2tensor-0.29.0-cp36-cp36m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "4982c9b3a15257c53aa22605a47e7de4", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 2295604, "upload_time": "2021-03-23T18:47:33", "upload_time_iso_8601": "2021-03-23T18:47:33.283183Z", "url": "https://files.pythonhosted.org/packages/62/29/de269da62ff9ae66033bedf99bf01fda93a8287f1ad2a16980a02aeb7390/struct2tensor-0.29.0-cp36-cp36m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9d8ccc4986c7c0f30a907126f9e1fc1d", "sha256": "4a59afe7e1f3258e86a41c3d747ddf7c5170fd5a53fc618daedffc456b0d9809" }, "downloads": -1, "filename": "struct2tensor-0.29.0-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "9d8ccc4986c7c0f30a907126f9e1fc1d", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 1830457, "upload_time": "2021-03-23T20:04:36", "upload_time_iso_8601": "2021-03-23T20:04:36.401751Z", "url": "https://files.pythonhosted.org/packages/c2/a7/af325bd5d4ab2f6524b3ee4593f2e866b288122169a939aeca5a83db85c9/struct2tensor-0.29.0-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "facb92df7558d0275fd41ed8dc097185", "sha256": "fd4a783af220eb410eda410c9aaa536aa22c8656b7f81d29d6b77862dd286a9c" }, "downloads": -1, "filename": "struct2tensor-0.29.0-cp37-cp37m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "facb92df7558d0275fd41ed8dc097185", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 2295604, "upload_time": "2021-03-23T18:44:57", "upload_time_iso_8601": "2021-03-23T18:44:57.592945Z", "url": "https://files.pythonhosted.org/packages/0f/75/4ed3ed1d2bb30be2f6097beab56eeb28aa80ae8eef615b7f02303e239a89/struct2tensor-0.29.0-cp37-cp37m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "adf5d16730b4f713586607523ea2909b", "sha256": "c985a388c8549986b2603d51277a80910bfb04f185e0812dd4a40468b66f3826" }, "downloads": -1, "filename": "struct2tensor-0.29.0-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "adf5d16730b4f713586607523ea2909b", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 1830454, "upload_time": "2021-03-23T19:05:34", "upload_time_iso_8601": "2021-03-23T19:05:34.044880Z", "url": "https://files.pythonhosted.org/packages/5e/34/a075800960825df27d6b8e21980c6939e5675b5b32fd5663af77c4da2662/struct2tensor-0.29.0-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8434e208000feb35621198a51022c10e", "sha256": "c4944dbbdcd9971921c65b05d79a1e1512e5fc19ca2295df3f9ea29dfada0604" }, "downloads": -1, "filename": "struct2tensor-0.29.0-cp38-cp38-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "8434e208000feb35621198a51022c10e", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 2295604, "upload_time": "2021-03-23T18:46:05", "upload_time_iso_8601": "2021-03-23T18:46:05.050919Z", "url": "https://files.pythonhosted.org/packages/1a/28/b1345a2e2baa7f19f3cf41172ec3b25abae9fc9b12451dce72954f3a46b7/struct2tensor-0.29.0-cp38-cp38-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null } ], "0.30.0": [ { "comment_text": "", "digests": { "md5": "5a2828ebedb71a7427b57a3772e838f0", "sha256": "2c13ee274cd1c21605d99c96842e88a255e09a04b4961ed47db1dc61ee66bd5a" }, "downloads": -1, "filename": "struct2tensor-0.30.0-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "5a2828ebedb71a7427b57a3772e838f0", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 1830817, "upload_time": "2021-04-20T17:15:20", "upload_time_iso_8601": "2021-04-20T17:15:20.512661Z", "url": "https://files.pythonhosted.org/packages/9d/5f/8945ebd76569c06f06a9258c8a7b38bc3ddc0a72ca964d949b51315b31f7/struct2tensor-0.30.0-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "82e35e411737df0e87b99c6405ec560a", "sha256": "0fd0c0260ab85c296b617c0089c575a45286f2a1d6a54fe8e4348fb874243781" }, "downloads": -1, "filename": "struct2tensor-0.30.0-cp36-cp36m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "82e35e411737df0e87b99c6405ec560a", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 2295966, "upload_time": "2021-04-20T17:07:40", "upload_time_iso_8601": "2021-04-20T17:07:40.522738Z", "url": "https://files.pythonhosted.org/packages/2a/0d/d7cd9abe9af19c40a2f216b61be7f8d9fc05f92e8f0389de262e7043df6b/struct2tensor-0.30.0-cp36-cp36m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7a27b88a612bc09010c07f68bdbf7403", "sha256": "e7cc538377e3f78d22582ee5bf59ecc356bfea07be5eed108464e3a456264fd2" }, "downloads": -1, "filename": "struct2tensor-0.30.0-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "7a27b88a612bc09010c07f68bdbf7403", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 1830819, "upload_time": "2021-04-20T17:16:49", "upload_time_iso_8601": "2021-04-20T17:16:49.501676Z", "url": "https://files.pythonhosted.org/packages/8c/5d/6319b21107cac6fca2521f5195806fda5464db66ec4f3af90190690b4392/struct2tensor-0.30.0-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e9985bb6e9f0276e498835a2f2645b56", "sha256": "7f9626800cea28f9169cf0fce042fd3b1c1bf34dff9a3ca78ab6dc2d096c49ba" }, "downloads": -1, "filename": "struct2tensor-0.30.0-cp37-cp37m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "e9985bb6e9f0276e498835a2f2645b56", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 2295966, "upload_time": "2021-04-20T17:07:55", "upload_time_iso_8601": "2021-04-20T17:07:55.214010Z", "url": "https://files.pythonhosted.org/packages/77/de/336ad65bc45aae747a6268dc1c56cd0d5a50e0a5817394aa798bfb58571f/struct2tensor-0.30.0-cp37-cp37m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2374c904c838337857e4820db0eada5a", "sha256": "e14edeb3201d392f6ba166f322ac763d1bb76e6eae4603d2e1b9e6d650ce90e9" }, "downloads": -1, "filename": "struct2tensor-0.30.0-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "2374c904c838337857e4820db0eada5a", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 1830813, "upload_time": "2021-04-20T17:16:07", "upload_time_iso_8601": "2021-04-20T17:16:07.951901Z", "url": "https://files.pythonhosted.org/packages/64/cc/a46be077ba6e58ec8780784318e12abeaf8123d858e3a70667b11e7f6886/struct2tensor-0.30.0-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3286ca7ab1ca126a63078cf4a011e2b6", "sha256": "f064e71a395c836f7649caeee86bd238cdee4a26e7e37f404558699e6b914bbe" }, "downloads": -1, "filename": "struct2tensor-0.30.0-cp38-cp38-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "3286ca7ab1ca126a63078cf4a011e2b6", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 2295964, "upload_time": "2021-04-20T17:09:51", "upload_time_iso_8601": "2021-04-20T17:09:51.419207Z", "url": "https://files.pythonhosted.org/packages/36/9e/199f8e872d93451acef8191e81735717a16660f1230b9298255bfd1c526a/struct2tensor-0.30.0-cp38-cp38-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null } ], "0.31.0": [ { "comment_text": "", "digests": { "md5": "e13f9aef5643b74db8764caeeacabc1d", "sha256": "4f6765d488c90bbfc8f09b017e88cfb40d5373f2ed4c7dbe7d1824a058a45c23" }, "downloads": -1, "filename": "struct2tensor-0.31.0-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "e13f9aef5643b74db8764caeeacabc1d", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 1777207, "upload_time": "2021-05-21T01:16:21", "upload_time_iso_8601": "2021-05-21T01:16:21.133876Z", "url": "https://files.pythonhosted.org/packages/02/c1/652d1957ca15346cfd8bddca5bb93c976c27f55ff99b5510146fa624a3ab/struct2tensor-0.31.0-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "08203e8eebb63340af8c3d044f8f79d6", "sha256": "9e7190d9623e497d45baf410a2641621fea60c24100ac834bb884b17ea45f087" }, "downloads": -1, "filename": "struct2tensor-0.31.0-cp36-cp36m-manylinux2010_x86_64.manylinux_2_12_x86_64.whl", "has_sig": false, "md5_digest": "08203e8eebb63340af8c3d044f8f79d6", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 2197602, "upload_time": "2021-05-21T01:05:16", "upload_time_iso_8601": "2021-05-21T01:05:16.616357Z", "url": "https://files.pythonhosted.org/packages/f5/55/08f2181b9f22c7d1c2b0d26cdc988e5436158d8f8ab1daf94083d1783f88/struct2tensor-0.31.0-cp36-cp36m-manylinux2010_x86_64.manylinux_2_12_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4c96dfe4c4de7eec50405d51ccf1b99a", "sha256": "09a7bb6e8aed00888c6c4d8700a093fdbaf56f598506d7d4556c9ad616123086" }, "downloads": -1, "filename": "struct2tensor-0.31.0-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "4c96dfe4c4de7eec50405d51ccf1b99a", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 1777203, "upload_time": "2021-05-21T01:13:39", "upload_time_iso_8601": "2021-05-21T01:13:39.414089Z", "url": "https://files.pythonhosted.org/packages/6d/09/434578fc0bce34615e3d68df8ca08e22d7be9eaf0f2bf8cc0667ac126a24/struct2tensor-0.31.0-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fc37880f335bac782321de053cf9043e", "sha256": "195f1b8e1353a441eea3f8397b13a0b776ba3f5c88934af972d60e9f6e946953" }, "downloads": -1, "filename": "struct2tensor-0.31.0-cp37-cp37m-manylinux2010_x86_64.manylinux_2_12_x86_64.whl", "has_sig": false, "md5_digest": "fc37880f335bac782321de053cf9043e", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 2197600, "upload_time": "2021-05-21T01:11:34", "upload_time_iso_8601": "2021-05-21T01:11:34.359448Z", "url": "https://files.pythonhosted.org/packages/b2/19/c7e1ca053dbdedbe2b5d28700c5cecb360c183ba01b423180a6d78ef6b76/struct2tensor-0.31.0-cp37-cp37m-manylinux2010_x86_64.manylinux_2_12_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0182a454d63cac457a9fa12a5c7eabe4", "sha256": "f691fef388e4b1c764ddfdd0cbfadd2e1c8d63fdae90b48a783c45080425577e" }, "downloads": -1, "filename": "struct2tensor-0.31.0-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "0182a454d63cac457a9fa12a5c7eabe4", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 1777201, "upload_time": "2021-05-21T01:16:19", "upload_time_iso_8601": "2021-05-21T01:16:19.146645Z", "url": "https://files.pythonhosted.org/packages/1f/5e/376f29b527c1651635b6096a3f8051700a13de665ceb4ca58945eb5c1c5f/struct2tensor-0.31.0-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "845c60a48baa88791dd4807dfd50eda0", "sha256": "eb62c420d0f2b6df3d5cf5e72646a302f764c05aae820afed95fa39338633d9c" }, "downloads": -1, "filename": "struct2tensor-0.31.0-cp38-cp38-manylinux2010_x86_64.manylinux_2_12_x86_64.whl", "has_sig": false, "md5_digest": "845c60a48baa88791dd4807dfd50eda0", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 2197599, "upload_time": "2021-05-21T01:06:20", "upload_time_iso_8601": "2021-05-21T01:06:20.064236Z", "url": "https://files.pythonhosted.org/packages/ce/2e/11cda86ce454801baf4a95fa6346fc08674475cdd315bc6e38489da872bf/struct2tensor-0.31.0-cp38-cp38-manylinux2010_x86_64.manylinux_2_12_x86_64.whl", "yanked": false, "yanked_reason": null } ], "0.32.0": [ { "comment_text": "", "digests": { "md5": "8d7fe1bffd82e18a777d85b1ab66155b", "sha256": "d3d3f2cfa9ff9d29ad83192c55cc042d20f35992910deab994fbce5369358b98" }, "downloads": -1, "filename": "struct2tensor-0.32.0-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "8d7fe1bffd82e18a777d85b1ab66155b", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 1777271, "upload_time": "2021-06-21T22:16:20", "upload_time_iso_8601": "2021-06-21T22:16:20.188683Z", "url": "https://files.pythonhosted.org/packages/0e/99/691a412d97b7b0815c6d4494f3842e7aa8b7acb98e8ffe42eee3faef6d4a/struct2tensor-0.32.0-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d4d08aec6f64883b3b90ecf927c2487b", "sha256": "b9a7e138cae6e0b5cbabfd1dbf0479c83835a16b4882608ba6a0f4bdb0fc36a4" }, "downloads": -1, "filename": "struct2tensor-0.32.0-cp36-cp36m-manylinux2010_x86_64.manylinux_2_12_x86_64.whl", "has_sig": false, "md5_digest": "d4d08aec6f64883b3b90ecf927c2487b", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 2197652, "upload_time": "2021-06-21T22:11:24", "upload_time_iso_8601": "2021-06-21T22:11:24.420949Z", "url": "https://files.pythonhosted.org/packages/13/e1/9dd4b0e42409cc4529ed578031e4dcd6d1c76766b7b023abffc368b6dcd1/struct2tensor-0.32.0-cp36-cp36m-manylinux2010_x86_64.manylinux_2_12_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f0225e6b3d21bd710ddf1c260558ab1f", "sha256": "5a115927f7ffc2b602a6d4133521ae03254a9686c737187ba91e6dfe98a48e56" }, "downloads": -1, "filename": "struct2tensor-0.32.0-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "f0225e6b3d21bd710ddf1c260558ab1f", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 1777269, "upload_time": "2021-06-21T22:16:29", "upload_time_iso_8601": "2021-06-21T22:16:29.567918Z", "url": "https://files.pythonhosted.org/packages/28/da/ab6a259ff632e4757b7b2eb8f91ed9289d967738e15c95187979a75fa7ee/struct2tensor-0.32.0-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "04c1f671f483e361eef1c5393e714ead", "sha256": "cfca8bdcfb21d600350a740e7b2fc96df18dfcfaca44fd5c58baa0d69335963b" }, "downloads": -1, "filename": "struct2tensor-0.32.0-cp37-cp37m-manylinux2010_x86_64.manylinux_2_12_x86_64.whl", "has_sig": false, "md5_digest": "04c1f671f483e361eef1c5393e714ead", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 2197652, "upload_time": "2021-06-21T22:12:10", "upload_time_iso_8601": "2021-06-21T22:12:10.836770Z", "url": "https://files.pythonhosted.org/packages/75/bd/1abb11d44b0a0261e3f2ce622166ac93295b08fb32deab4cd7d9fdf9f90a/struct2tensor-0.32.0-cp37-cp37m-manylinux2010_x86_64.manylinux_2_12_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d50bab9f97e0172c0cdf98b317dcac6e", "sha256": "e0b71bb9d25f95845c89040896d716d25bc0b7fb33c6e038d0b028b95f8b1a9a" }, "downloads": -1, "filename": "struct2tensor-0.32.0-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "d50bab9f97e0172c0cdf98b317dcac6e", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 1777268, "upload_time": "2021-06-21T22:15:21", "upload_time_iso_8601": "2021-06-21T22:15:21.182345Z", "url": "https://files.pythonhosted.org/packages/76/a2/e1a3687801c07c877e9e71fc015004b148931fc40978ac3486667130f9ec/struct2tensor-0.32.0-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1d778a7c1c75d30ff6bc111f7a2cbe58", "sha256": "46bf1f98a833d47a5ebaf3fad8e0205bf4e1ecf178fdb2f40080670ce2888db7" }, "downloads": -1, "filename": "struct2tensor-0.32.0-cp38-cp38-manylinux2010_x86_64.manylinux_2_12_x86_64.whl", "has_sig": false, "md5_digest": "1d778a7c1c75d30ff6bc111f7a2cbe58", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 2197650, "upload_time": "2021-06-21T22:15:31", "upload_time_iso_8601": "2021-06-21T22:15:31.594042Z", "url": "https://files.pythonhosted.org/packages/3d/df/4dcf6914aa4c7bed1f1d4626c33a7c6ee09a36fdee58a82031ede8354792/struct2tensor-0.32.0-cp38-cp38-manylinux2010_x86_64.manylinux_2_12_x86_64.whl", "yanked": false, "yanked_reason": null } ], "0.33.0": [ { "comment_text": "", "digests": { "md5": "b5501e782e49a2577084837dafcda201", "sha256": "44b24b97ed791023554998a15ad21f8b84adf55ff4c6a0b56400dbfb00496bce" }, "downloads": -1, "filename": "struct2tensor-0.33.0-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "b5501e782e49a2577084837dafcda201", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 1793161, "upload_time": "2021-07-28T00:20:26", "upload_time_iso_8601": "2021-07-28T00:20:26.962086Z", "url": "https://files.pythonhosted.org/packages/e5/f6/fd08a0fe440ef165fbaadb8f69e0a9849f31540e965693b10105f4c4dd66/struct2tensor-0.33.0-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4da8f46982bbfbc8fcc6291a494f5874", "sha256": "d048a73ead78636a724f6ffccf04d445373a29859757da38e34618d20ce6b87e" }, "downloads": -1, "filename": "struct2tensor-0.33.0-cp36-cp36m-manylinux2010_x86_64.manylinux_2_12_x86_64.whl", "has_sig": false, "md5_digest": "4da8f46982bbfbc8fcc6291a494f5874", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 2215142, "upload_time": "2021-07-28T00:01:57", "upload_time_iso_8601": "2021-07-28T00:01:57.737455Z", "url": "https://files.pythonhosted.org/packages/34/ff/4062ea3cede45164bf4a96ef678aeb2a7b4882484cc2b29d04183e7b2aba/struct2tensor-0.33.0-cp36-cp36m-manylinux2010_x86_64.manylinux_2_12_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f15dc16ed2682c839f72f3ec3139f4de", "sha256": "b686d70bf771486f51878080131c0044d1e764288bd464ea6704dd41a6c0b01a" }, "downloads": -1, "filename": "struct2tensor-0.33.0-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "f15dc16ed2682c839f72f3ec3139f4de", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 1793160, "upload_time": "2021-07-28T01:09:46", "upload_time_iso_8601": "2021-07-28T01:09:46.333497Z", "url": "https://files.pythonhosted.org/packages/06/51/46ca3df9baaac8413f25cf76cdf6e5fc50f90cd97100b3718175d73797cb/struct2tensor-0.33.0-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "769a5a2f50359b87d5e6b4eff1c0bf9f", "sha256": "b3e0a01ad3140fc04b083f0c9a2fcdf883f84d66a4f8205aff1a425c1c736073" }, "downloads": -1, "filename": "struct2tensor-0.33.0-cp37-cp37m-manylinux2010_x86_64.manylinux_2_12_x86_64.whl", "has_sig": false, "md5_digest": "769a5a2f50359b87d5e6b4eff1c0bf9f", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 2215142, "upload_time": "2021-07-27T23:59:00", "upload_time_iso_8601": "2021-07-27T23:59:00.675305Z", "url": "https://files.pythonhosted.org/packages/6e/2c/32d6b044722fdaf6e21ac3ae6b48854a87a7dd3f5a02c569a69799e1fcbe/struct2tensor-0.33.0-cp37-cp37m-manylinux2010_x86_64.manylinux_2_12_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d083531896a3f5b1cae627b76b1c78c0", "sha256": "5f6c3c3166a66d28b52df3b7fd59d026f6fad7a3ada7e0f4b73d0a987a805d84" }, "downloads": -1, "filename": "struct2tensor-0.33.0-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "d083531896a3f5b1cae627b76b1c78c0", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 1793156, "upload_time": "2021-07-28T00:14:06", "upload_time_iso_8601": "2021-07-28T00:14:06.146091Z", "url": "https://files.pythonhosted.org/packages/b8/c8/c16e64d5462563a92546710d387d587e60236e11df314143e1dfed84d3e3/struct2tensor-0.33.0-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d6867fd3a31d462477ef98ce3cef4cd2", "sha256": "59e4cbbda99c93247f80e03ac5f1506c9e4e95541ce6ed774a0d38c49da14e88" }, "downloads": -1, "filename": "struct2tensor-0.33.0-cp38-cp38-manylinux2010_x86_64.manylinux_2_12_x86_64.whl", "has_sig": false, "md5_digest": "d6867fd3a31d462477ef98ce3cef4cd2", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 2215140, "upload_time": "2021-07-28T00:00:53", "upload_time_iso_8601": "2021-07-28T00:00:53.838792Z", "url": "https://files.pythonhosted.org/packages/20/2b/1c0dd5cdd07c0ac91bcd38f60bea2a3a7f8d9f3f054d99b030ebe8ec3851/struct2tensor-0.33.0-cp38-cp38-manylinux2010_x86_64.manylinux_2_12_x86_64.whl", "yanked": false, "yanked_reason": null } ], "0.34.0": [ { "comment_text": "", "digests": { "md5": "313389930df3959816d35dbce9ce8fb7", "sha256": "72f1c817f5fcc3b08e641542cd6be9336588c53451554531321c468a0d0b884c" }, "downloads": -1, "filename": "struct2tensor-0.34.0-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "313389930df3959816d35dbce9ce8fb7", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 1794304, "upload_time": "2021-08-23T20:42:35", "upload_time_iso_8601": "2021-08-23T20:42:35.523188Z", "url": "https://files.pythonhosted.org/packages/7f/1d/e8519a6114404460068824bdd03613b729ef7f28f7b4440e995c6b03a0c3/struct2tensor-0.34.0-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6761086b2c76ff27333a928b58b0430d", "sha256": "eb1cea2eb32d5e9b76f106aff238fca88c1f835c909680bfb43dc0979ea7be70" }, "downloads": -1, "filename": "struct2tensor-0.34.0-cp36-cp36m-manylinux2010_x86_64.manylinux_2_12_x86_64.whl", "has_sig": false, "md5_digest": "6761086b2c76ff27333a928b58b0430d", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 2220390, "upload_time": "2021-08-23T18:58:21", "upload_time_iso_8601": "2021-08-23T18:58:21.278790Z", "url": "https://files.pythonhosted.org/packages/2e/43/8e1ad80e6331f55f6825b18340cd3f2e4f680f99e6bd3fe2a4041b62ac84/struct2tensor-0.34.0-cp36-cp36m-manylinux2010_x86_64.manylinux_2_12_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b82b6366506a285fcbbc87c2c0ff4c6c", "sha256": "bc6cc1ea533181a7af78968778b9173c0297ae46520c1fbada3ab876df24a511" }, "downloads": -1, "filename": "struct2tensor-0.34.0-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "b82b6366506a285fcbbc87c2c0ff4c6c", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 1794305, "upload_time": "2021-08-23T19:04:18", "upload_time_iso_8601": "2021-08-23T19:04:18.205934Z", "url": "https://files.pythonhosted.org/packages/d5/7b/e0e56cd96479d6024f3fefd4538c063a4a600c1259d03f1faffb58b1bf74/struct2tensor-0.34.0-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e8c4e9dd32a2cf5085c1af2a413a9a5e", "sha256": "6816f80ca821d8785f8fb2622438e72b39dba329bae189b7b40ed011a44a9037" }, "downloads": -1, "filename": "struct2tensor-0.34.0-cp37-cp37m-manylinux2010_x86_64.manylinux_2_12_x86_64.whl", "has_sig": false, "md5_digest": "e8c4e9dd32a2cf5085c1af2a413a9a5e", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 2220391, "upload_time": "2021-08-23T18:57:50", "upload_time_iso_8601": "2021-08-23T18:57:50.567326Z", "url": "https://files.pythonhosted.org/packages/86/df/5068ebf985480d3c8c76ef6d879e4ca4bf94a3b2dda73c4cf64e6cc5a024/struct2tensor-0.34.0-cp37-cp37m-manylinux2010_x86_64.manylinux_2_12_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "51529d1077522bf4f441df76e1c7d9f7", "sha256": "9af3bc46278fffa6fbff98fdd2da0a90c3bb2b0a59df6086b6f86f14f9ba1288" }, "downloads": -1, "filename": "struct2tensor-0.34.0-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "51529d1077522bf4f441df76e1c7d9f7", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 1794302, "upload_time": "2021-08-23T19:05:20", "upload_time_iso_8601": "2021-08-23T19:05:20.627075Z", "url": "https://files.pythonhosted.org/packages/47/5b/fdebc03dc26e9631850c7e73dbb703a566d01435e819c7fdce7ef7bc2b60/struct2tensor-0.34.0-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c27b85e047f74baf4ead0cc4ee3c7554", "sha256": "9d1c217753b3350c4a8b4f327b8b5117c8f2e80f35e9431a2f8e7aa102812e62" }, "downloads": -1, "filename": "struct2tensor-0.34.0-cp38-cp38-manylinux2010_x86_64.manylinux_2_12_x86_64.whl", "has_sig": false, "md5_digest": "c27b85e047f74baf4ead0cc4ee3c7554", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 2220388, "upload_time": "2021-08-23T18:56:36", "upload_time_iso_8601": "2021-08-23T18:56:36.921729Z", "url": "https://files.pythonhosted.org/packages/1b/16/b08bf3704360708346611ab28f4e0920831e5391b02907d7dc448bba768b/struct2tensor-0.34.0-cp38-cp38-manylinux2010_x86_64.manylinux_2_12_x86_64.whl", "yanked": false, "yanked_reason": null } ], "0.35.0": [ { "comment_text": "", "digests": { "md5": "222a82627eb30ad12260279e84154079", "sha256": "c7448822061a00d2e757f14f1c6678f81135364e1a0eec0438e5e4c1899018a9" }, "downloads": -1, "filename": "struct2tensor-0.35.0-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "222a82627eb30ad12260279e84154079", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 1794315, "upload_time": "2021-10-26T22:36:53", "upload_time_iso_8601": "2021-10-26T22:36:53.832059Z", "url": "https://files.pythonhosted.org/packages/a6/06/ce967e9e70dc1b008f70a8d990ada29dd339d86f644641b1e83d896b0070/struct2tensor-0.35.0-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ac4db4d921aaad8d0b04558d186a83c0", "sha256": "ed6abc147996c838ee88be589186e17f39fef9e4629ed8279d8df176fe3f8429" }, "downloads": -1, "filename": "struct2tensor-0.35.0-cp37-cp37m-manylinux2010_x86_64.manylinux_2_12_x86_64.whl", "has_sig": false, "md5_digest": "ac4db4d921aaad8d0b04558d186a83c0", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 2220401, "upload_time": "2021-10-26T22:35:53", "upload_time_iso_8601": "2021-10-26T22:35:53.723604Z", "url": "https://files.pythonhosted.org/packages/06/83/2dbfe5f7b9bbf55b91b55e9062dfa122a929480c3a43f6cfa0e388858a7a/struct2tensor-0.35.0-cp37-cp37m-manylinux2010_x86_64.manylinux_2_12_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d5117776ca5747f631532d52b993918f", "sha256": "87b9ce219d348a67aaa93fa7ed25ea59e7357718f2e5d11f79b640f3701449ad" }, "downloads": -1, "filename": "struct2tensor-0.35.0-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "d5117776ca5747f631532d52b993918f", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 1794311, "upload_time": "2021-10-26T22:36:56", "upload_time_iso_8601": "2021-10-26T22:36:56.121934Z", "url": "https://files.pythonhosted.org/packages/93/ed/871c7dc795cb575f6e2df7dd44151b99f21b72276603a982a4dba92ea46c/struct2tensor-0.35.0-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f7ddc541c19c216a725d0513747f124c", "sha256": "4ae92835e9c7ba42dddb640abf4929512e3af558d6a24d5f2c3fce3d42e2f31f" }, "downloads": -1, "filename": "struct2tensor-0.35.0-cp38-cp38-manylinux2010_x86_64.manylinux_2_12_x86_64.whl", "has_sig": false, "md5_digest": "f7ddc541c19c216a725d0513747f124c", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 2220397, "upload_time": "2021-10-26T22:36:07", "upload_time_iso_8601": "2021-10-26T22:36:07.222685Z", "url": "https://files.pythonhosted.org/packages/d5/4b/a022248c13647e044c12c63c329a1a0fe981ffa60e44d6001a67fdb667e3/struct2tensor-0.35.0-cp38-cp38-manylinux2010_x86_64.manylinux_2_12_x86_64.whl", "yanked": false, "yanked_reason": null } ], "0.36.0": [ { "comment_text": "", "digests": { "md5": "17ac251f3072da587e620b6a9db5e919", "sha256": "1111fe75e89dd7cf0fea6928509e9d92f673e8d9bb7234fecfec4259e6607b81" }, "downloads": -1, "filename": "struct2tensor-0.36.0-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "17ac251f3072da587e620b6a9db5e919", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 1795639, "upload_time": "2021-11-30T03:02:30", "upload_time_iso_8601": "2021-11-30T03:02:30.453177Z", "url": "https://files.pythonhosted.org/packages/24/a1/dcd1dc0f53bf17dc952f8639c41900bef1591edbc12931a9cb5e8e9a3eff/struct2tensor-0.36.0-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2ccc5dfb75f4cf15e71ba965c61e65b5", "sha256": "760ed83510a1c489fa1e70dcdc9c23ae7992fc67199bb6642c2ffd0d95e658ff" }, "downloads": -1, "filename": "struct2tensor-0.36.0-cp37-cp37m-manylinux2010_x86_64.manylinux_2_12_x86_64.whl", "has_sig": false, "md5_digest": "2ccc5dfb75f4cf15e71ba965c61e65b5", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 2219545, "upload_time": "2021-11-30T03:04:39", "upload_time_iso_8601": "2021-11-30T03:04:39.574385Z", "url": "https://files.pythonhosted.org/packages/51/f4/393eb19414bf13777c9b4770f9056e9e74d5e72fdb25c3212488efb2a5a9/struct2tensor-0.36.0-cp37-cp37m-manylinux2010_x86_64.manylinux_2_12_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7cb33e511f0fc57afc5b3c420a25b2ea", "sha256": "35446bab828114d7c640a92500a559f9f131b8eec26cf7264bca4049ea0b0547" }, "downloads": -1, "filename": "struct2tensor-0.36.0-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "7cb33e511f0fc57afc5b3c420a25b2ea", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 1795635, "upload_time": "2021-11-30T03:11:16", "upload_time_iso_8601": "2021-11-30T03:11:16.695833Z", "url": "https://files.pythonhosted.org/packages/a2/db/4427a3de7e1d2a34d3e1553e5e06051a690c4a40d88e0fd5e03957895589/struct2tensor-0.36.0-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bf2302ece39655208f53e99d3bc0ae66", "sha256": "ecb0adb07fce2aff4eca41f4e65a3b4162ab750bec280eae14d6def4710421f2" }, "downloads": -1, "filename": "struct2tensor-0.36.0-cp38-cp38-manylinux2010_x86_64.manylinux_2_12_x86_64.whl", "has_sig": false, "md5_digest": "bf2302ece39655208f53e99d3bc0ae66", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 2219543, "upload_time": "2021-11-30T03:04:23", "upload_time_iso_8601": "2021-11-30T03:04:23.771031Z", "url": "https://files.pythonhosted.org/packages/3f/f2/9a15343d34f0414cfacd49c81cd2c3dc42604895d59eee5e6f9d0d4a79a3/struct2tensor-0.36.0-cp38-cp38-manylinux2010_x86_64.manylinux_2_12_x86_64.whl", "yanked": false, "yanked_reason": null } ], "0.37.0": [ { "comment_text": "", "digests": { "md5": "f39de6f4aa86a59780522e01d47a8743", "sha256": "8cbe92c16b504069ca77800c1ed83a04c3ab86140c0059a6d72ba872fee97f68" }, "downloads": -1, "filename": "struct2tensor-0.37.0-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "f39de6f4aa86a59780522e01d47a8743", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 1795645, "upload_time": "2022-01-19T23:03:52", "upload_time_iso_8601": "2022-01-19T23:03:52.112891Z", "url": "https://files.pythonhosted.org/packages/41/c5/f306825e02bfb592a86886ac15d6b050afba92cfcfa7c274dfbed24b151f/struct2tensor-0.37.0-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "01c17972b4222db31023acf49ee46e5e", "sha256": "4b4ee7cea4d82d5548c191c0d4c597166696f581a0b1e9248876c2916785dd2c" }, "downloads": -1, "filename": "struct2tensor-0.37.0-cp37-cp37m-manylinux2010_x86_64.manylinux_2_12_x86_64.whl", "has_sig": false, "md5_digest": "01c17972b4222db31023acf49ee46e5e", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 2219549, "upload_time": "2022-01-19T22:19:02", "upload_time_iso_8601": "2022-01-19T22:19:02.686714Z", "url": "https://files.pythonhosted.org/packages/cb/c3/afee802d32fed59f23005102ac555774bba7282732bf7514ba326fa58dc4/struct2tensor-0.37.0-cp37-cp37m-manylinux2010_x86_64.manylinux_2_12_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "48963e0d593f0c372748c6fc4553b4f3", "sha256": "6677dd7086815416acc9375b770ee01a3cd5f1326453f99a1e234901704925b9" }, "downloads": -1, "filename": "struct2tensor-0.37.0-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "48963e0d593f0c372748c6fc4553b4f3", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 1795642, "upload_time": "2022-01-19T23:05:36", "upload_time_iso_8601": "2022-01-19T23:05:36.069412Z", "url": "https://files.pythonhosted.org/packages/fd/95/8a43c7751f1a94629ca077749045d0e5d2c26de34bce2b03a33f04af3db3/struct2tensor-0.37.0-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8654589cd5ed9e1c8065d2aae4a48b32", "sha256": "4ad449d546567f2696f5085fc66be356cb053c2d989ac58b700a3a4c5ed2fa53" }, "downloads": -1, "filename": "struct2tensor-0.37.0-cp38-cp38-manylinux2010_x86_64.manylinux_2_12_x86_64.whl", "has_sig": false, "md5_digest": "8654589cd5ed9e1c8065d2aae4a48b32", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 2219546, "upload_time": "2022-01-19T22:27:32", "upload_time_iso_8601": "2022-01-19T22:27:32.506029Z", "url": "https://files.pythonhosted.org/packages/85/d0/812ac47dfc080c61ab53484f22a8e067013903d655151c8255aab469df17/struct2tensor-0.37.0-cp38-cp38-manylinux2010_x86_64.manylinux_2_12_x86_64.whl", "yanked": false, "yanked_reason": null } ], "0.38.0": [ { "comment_text": "", "digests": { "md5": "faa0fe50fa54dccd8dda6afc1f1949c8", "sha256": "a89a4c6b4de72f312bc67370a68228256f09a526b65eef51aba361ed6d068637" }, "downloads": -1, "filename": "struct2tensor-0.38.0-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "faa0fe50fa54dccd8dda6afc1f1949c8", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 1822407, "upload_time": "2022-03-01T22:55:14", "upload_time_iso_8601": "2022-03-01T22:55:14.562848Z", "url": "https://files.pythonhosted.org/packages/fa/7c/2c21958c64f69d1498c5cecae661c0ea989b445ec3b6a2681f0e25d6e90e/struct2tensor-0.38.0-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8078a036fcc0e24f089b264aa583853e", "sha256": "31a71c0dfbcf028cc1dfd2608dd3bf5a51d57b6136eca7384d3c96179f943787" }, "downloads": -1, "filename": "struct2tensor-0.38.0-cp37-cp37m-manylinux2010_x86_64.manylinux_2_12_x86_64.whl", "has_sig": false, "md5_digest": "8078a036fcc0e24f089b264aa583853e", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 2237533, "upload_time": "2022-03-01T22:33:44", "upload_time_iso_8601": "2022-03-01T22:33:44.837419Z", "url": "https://files.pythonhosted.org/packages/f7/0d/b6dc951e394b692b38d615ad658814ea90194f6a46cf8882fdc4e7910b6c/struct2tensor-0.38.0-cp37-cp37m-manylinux2010_x86_64.manylinux_2_12_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "35686e59348fa4234eeadecbc4e5c28d", "sha256": "117bdc2a0a6710783d9f4d36840d4b2ae456cd4d19ea497f7402e5a4ec627c43" }, "downloads": -1, "filename": "struct2tensor-0.38.0-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "35686e59348fa4234eeadecbc4e5c28d", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 1822405, "upload_time": "2022-03-01T22:47:35", "upload_time_iso_8601": "2022-03-01T22:47:35.389792Z", "url": "https://files.pythonhosted.org/packages/df/77/3d1d3e80d3953ace0153f1d4aeaf91e609c73f79451486eedeefc1e4c05c/struct2tensor-0.38.0-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "02b33d6f9fd409c84ba91034a1a96ed7", "sha256": "7fe0475055dc4ab6c4665bfb941399726097e61130d2861bc5576873927383f0" }, "downloads": -1, "filename": "struct2tensor-0.38.0-cp38-cp38-manylinux2010_x86_64.manylinux_2_12_x86_64.whl", "has_sig": false, "md5_digest": "02b33d6f9fd409c84ba91034a1a96ed7", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 2237530, "upload_time": "2022-03-01T22:31:56", "upload_time_iso_8601": "2022-03-01T22:31:56.502782Z", "url": "https://files.pythonhosted.org/packages/17/9a/361eda48a31234556a11a93ce149f1935a3201364f9ec708022256d8aa56/struct2tensor-0.38.0-cp38-cp38-manylinux2010_x86_64.manylinux_2_12_x86_64.whl", "yanked": false, "yanked_reason": null } ], "0.39.0": [ { "comment_text": "", "digests": { "md5": "80416b037b65370a42860546cfa69443", "sha256": "553a1ea6713f8495b8bc6426348c27b59fcc37c11304fef0b52345d8af979767" }, "downloads": -1, "filename": "struct2tensor-0.39.0-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "80416b037b65370a42860546cfa69443", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 1823593, "upload_time": "2022-05-11T20:47:16", "upload_time_iso_8601": "2022-05-11T20:47:16.100981Z", "url": "https://files.pythonhosted.org/packages/3e/33/51f3b03b6e27b665232336d0626b76c39cd42289189e6c258f8a816053e0/struct2tensor-0.39.0-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a9c366026196bcd1ee3060f538c0a103", "sha256": "a350f6b1a7ca149c0605a69f3e0977e225c31e3e8fe8945bb06cb5c9e31bf0e9" }, "downloads": -1, "filename": "struct2tensor-0.39.0-cp37-cp37m-manylinux2010_x86_64.manylinux_2_12_x86_64.whl", "has_sig": false, "md5_digest": "a9c366026196bcd1ee3060f538c0a103", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 2238692, "upload_time": "2022-05-11T19:20:58", "upload_time_iso_8601": "2022-05-11T19:20:58.789025Z", "url": "https://files.pythonhosted.org/packages/92/75/810e4fb650bf7795da5f7fe6a4eee7e24298d4cda9bd35e3a40baca86665/struct2tensor-0.39.0-cp37-cp37m-manylinux2010_x86_64.manylinux_2_12_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ce7161ff02e0366900f3beabc53ac49c", "sha256": "25662a677b446ad2672d96a2e483758bffb4a2418ac008c6a030d155a6467974" }, "downloads": -1, "filename": "struct2tensor-0.39.0-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "ce7161ff02e0366900f3beabc53ac49c", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 1823590, "upload_time": "2022-05-11T20:38:31", "upload_time_iso_8601": "2022-05-11T20:38:31.606634Z", "url": "https://files.pythonhosted.org/packages/f9/bb/b382372f4a99821870119713b8d0532fd556864395f05643917a039e8568/struct2tensor-0.39.0-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "dc07878045e5d2143e887d888a842ed5", "sha256": "120349f4b5ababd5fdaa2e075cc7359085cf08d110b4cb8cce8e3c349f4e2fca" }, "downloads": -1, "filename": "struct2tensor-0.39.0-cp38-cp38-manylinux2010_x86_64.manylinux_2_12_x86_64.whl", "has_sig": false, "md5_digest": "dc07878045e5d2143e887d888a842ed5", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 2238690, "upload_time": "2022-05-11T19:25:42", "upload_time_iso_8601": "2022-05-11T19:25:42.003766Z", "url": "https://files.pythonhosted.org/packages/f0/a4/77ea9d24ecd01f611ee89a9a5d64897951fa8c38da349fab3a7bf4b1097f/struct2tensor-0.39.0-cp38-cp38-manylinux2010_x86_64.manylinux_2_12_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "619d3e2e2dcdf5dc4ade228095d1e117", "sha256": "e0e55573080079daa615871867e5a6091ac7cea5d30bf6810c282d0198a0e8a0" }, "downloads": -1, "filename": "struct2tensor-0.39.0-cp39-cp39-macosx_10_14_x86_64.whl", "has_sig": false, "md5_digest": "619d3e2e2dcdf5dc4ade228095d1e117", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 1823593, "upload_time": "2022-05-11T20:57:59", "upload_time_iso_8601": "2022-05-11T20:57:59.492399Z", "url": "https://files.pythonhosted.org/packages/39/a4/077eccbdaf640beb90a6e8c8acdb07d8812cf9ca62958c700a7dee6df4aa/struct2tensor-0.39.0-cp39-cp39-macosx_10_14_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1317b267d42c3bb23e85b4a2fbf6e288", "sha256": "c41461c90ae6ef687c7453bea64162526cbfece55f047aa29b053025af0665ae" }, "downloads": -1, "filename": "struct2tensor-0.39.0-cp39-cp39-manylinux2010_x86_64.manylinux_2_12_x86_64.whl", "has_sig": false, "md5_digest": "1317b267d42c3bb23e85b4a2fbf6e288", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 2238691, "upload_time": "2022-05-11T19:24:38", "upload_time_iso_8601": "2022-05-11T19:24:38.967638Z", "url": "https://files.pythonhosted.org/packages/54/6b/524b557716515fa9d69be901d53d2b5743b96c3c4fa0420e8b05cacb9b3b/struct2tensor-0.39.0-cp39-cp39-manylinux2010_x86_64.manylinux_2_12_x86_64.whl", "yanked": false, "yanked_reason": null } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "80416b037b65370a42860546cfa69443", "sha256": "553a1ea6713f8495b8bc6426348c27b59fcc37c11304fef0b52345d8af979767" }, "downloads": -1, "filename": "struct2tensor-0.39.0-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "80416b037b65370a42860546cfa69443", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 1823593, "upload_time": "2022-05-11T20:47:16", "upload_time_iso_8601": "2022-05-11T20:47:16.100981Z", "url": "https://files.pythonhosted.org/packages/3e/33/51f3b03b6e27b665232336d0626b76c39cd42289189e6c258f8a816053e0/struct2tensor-0.39.0-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a9c366026196bcd1ee3060f538c0a103", "sha256": "a350f6b1a7ca149c0605a69f3e0977e225c31e3e8fe8945bb06cb5c9e31bf0e9" }, "downloads": -1, "filename": "struct2tensor-0.39.0-cp37-cp37m-manylinux2010_x86_64.manylinux_2_12_x86_64.whl", "has_sig": false, "md5_digest": "a9c366026196bcd1ee3060f538c0a103", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 2238692, "upload_time": "2022-05-11T19:20:58", "upload_time_iso_8601": "2022-05-11T19:20:58.789025Z", "url": "https://files.pythonhosted.org/packages/92/75/810e4fb650bf7795da5f7fe6a4eee7e24298d4cda9bd35e3a40baca86665/struct2tensor-0.39.0-cp37-cp37m-manylinux2010_x86_64.manylinux_2_12_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ce7161ff02e0366900f3beabc53ac49c", "sha256": "25662a677b446ad2672d96a2e483758bffb4a2418ac008c6a030d155a6467974" }, "downloads": -1, "filename": "struct2tensor-0.39.0-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "ce7161ff02e0366900f3beabc53ac49c", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 1823590, "upload_time": "2022-05-11T20:38:31", "upload_time_iso_8601": "2022-05-11T20:38:31.606634Z", "url": "https://files.pythonhosted.org/packages/f9/bb/b382372f4a99821870119713b8d0532fd556864395f05643917a039e8568/struct2tensor-0.39.0-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "dc07878045e5d2143e887d888a842ed5", "sha256": "120349f4b5ababd5fdaa2e075cc7359085cf08d110b4cb8cce8e3c349f4e2fca" }, "downloads": -1, "filename": "struct2tensor-0.39.0-cp38-cp38-manylinux2010_x86_64.manylinux_2_12_x86_64.whl", "has_sig": false, "md5_digest": "dc07878045e5d2143e887d888a842ed5", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 2238690, "upload_time": "2022-05-11T19:25:42", "upload_time_iso_8601": "2022-05-11T19:25:42.003766Z", "url": "https://files.pythonhosted.org/packages/f0/a4/77ea9d24ecd01f611ee89a9a5d64897951fa8c38da349fab3a7bf4b1097f/struct2tensor-0.39.0-cp38-cp38-manylinux2010_x86_64.manylinux_2_12_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "619d3e2e2dcdf5dc4ade228095d1e117", "sha256": "e0e55573080079daa615871867e5a6091ac7cea5d30bf6810c282d0198a0e8a0" }, "downloads": -1, "filename": "struct2tensor-0.39.0-cp39-cp39-macosx_10_14_x86_64.whl", "has_sig": false, "md5_digest": "619d3e2e2dcdf5dc4ade228095d1e117", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 1823593, "upload_time": "2022-05-11T20:57:59", "upload_time_iso_8601": "2022-05-11T20:57:59.492399Z", "url": "https://files.pythonhosted.org/packages/39/a4/077eccbdaf640beb90a6e8c8acdb07d8812cf9ca62958c700a7dee6df4aa/struct2tensor-0.39.0-cp39-cp39-macosx_10_14_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1317b267d42c3bb23e85b4a2fbf6e288", "sha256": "c41461c90ae6ef687c7453bea64162526cbfece55f047aa29b053025af0665ae" }, "downloads": -1, "filename": "struct2tensor-0.39.0-cp39-cp39-manylinux2010_x86_64.manylinux_2_12_x86_64.whl", "has_sig": false, "md5_digest": "1317b267d42c3bb23e85b4a2fbf6e288", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 2238691, "upload_time": "2022-05-11T19:24:38", "upload_time_iso_8601": "2022-05-11T19:24:38.967638Z", "url": "https://files.pythonhosted.org/packages/54/6b/524b557716515fa9d69be901d53d2b5743b96c3c4fa0420e8b05cacb9b3b/struct2tensor-0.39.0-cp39-cp39-manylinux2010_x86_64.manylinux_2_12_x86_64.whl", "yanked": false, "yanked_reason": null } ], "vulnerabilities": [] }