{ "info": { "author": "\u738b\u632f\u534e(Zhenhua WANG)", "author_email": "i@jackwish.net", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Environment :: Console", "Intended Audience :: Developers", "License :: OSI Approved :: Apache Software License", "Natural Language :: English", "Operating System :: OS Independent", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Topic :: Scientific/Engineering :: Artificial Intelligence" ], "description": "Easily Parse TFLite Models with Python\n======================================\n\n![Build and Test](https://github.com/jackwish/tflite/workflows/Build%20and%20Test/badge.svg)\n\nThis [`tflite` package](https://pypi.org/project/tflite/) parses TensorFlow Lite (TFLite) models (`*.tflite`), which are built by [TFLite converter](https://www.tensorflow.org/lite/convert). For background, please refer to [Introducing TFLite Parser Python Package](https://jackwish.net/2020/introducing-tflite-parser-package.html).\n\n\n## Usage\n\nInstall the package and use it like what you build from the TensorFlow codebase.\nIt's recommended to install the version that same as the TensorFlow that generates the TFLite model.\n\n```sh\npip install tensorflow==2.3.0\npip install tflite==2.3.0\n```\n\n\n## Enhanced API\n\nThe generated python package is friendly to use sometimes.\nWe have introduce several enhancements:\n\n* **Easy import**: You don't need to import every classes and funtions in `tflite` ([example](tests/test_original_import.py)), but instead with a sigle `import tflite` ([example](https://github.com/jackwish/tflite/blob/master/tests/test_mobilenet.py)).\n* **Builtin opcode helper**: The opcode is _encoded_ as digits which is hard to parse for human. Two APIs added to make it easy to use.\n * [`tflite.opcode2name()`](https://github.com/jackwish/tflite/blob/master/tflite/utils.py#L1): get the type name of given opcode.\n * [`tflite.BUILTIN_OPCODE2NAME`](https://github.com/jackwish/tflite/blob/master/tflite/utils.py#L9): a dict that maps the opcode to name of all the builtin operators.\n\n\n## Compatibility Handling\n\nTensorFlow sometimes leaves compability hanlding of the TFLite model to the users.\nAs these are API breaking change that can be easily fixed, we do this in the `tflite` package.\n\n* [`tflite.OperatorCode.BuiltinCode()`](https://github.com/jackwish/tflite/blob/master/tflite/OperatorCode.py#L43): maintains API compability in `2.4.0`, see [this issue](https://github.com/tensorflow/tensorflow/issues/46663).\n\n\n## Contributing Updates\n\nAs the operator definition may change across different TensorFlow versions, this package needs to be updated accordingly. If you notice that the package is out of date, please feel free to contribute new versions. This is pretty simple, instructions as below.\n\n1. [Fork the repository](https://help.github.com/en/github/getting-started-with-github/fork-a-repo), and download it.\n2. Install additional depdendency via `pip install -r requirements.txt`. And install [flatbuffer compiler](https://google.github.io/flatbuffers/flatbuffers_guide_using_schema_compiler.html) (you may need to [manually build it](https://google.github.io/flatbuffers/flatbuffers_guide_building.html)).\n3. Generate the code for update. Tools have been prepared, there are prompt for actions.\n 1. [Download](scripts/update-schema.sh) `schema.fbs` for a new version.\n 2. [Update](scripts/gen-op-list.py) the builtin operator mapping.\n 3. [Update](scripts/update-importing.py) the classes and functions import of submodules.\n 4. [Update](scripts/gen-doc.sh) the API document.\n 5. Update the versioning in [setup.py](setup.py).\n 6. [Build](scripts/build.sh) and [Test](tests) (simply `pytest`) around. Don't forget to re-install the newly built `tflite` package before testing it.\n4. Push your change and open [Pull Request](https://help.github.com/en/github/collaborating-with-issues-and-pull-requests/about-pull-requests).\n5. The maintainer will take the responsibility to upload change to PyPI when merged.\n\n\n## Resources\n\n* [PyPI page](https://pypi.org/project/tflite/).\n* [GitHub page](https://github.com/jackwish/tflite).\n* [Module list](https://jackwish.net/tflite/docs).\n* [TensorFlow Lite converter](https://www.tensorflow.org/lite/convert).\n\n\n## License\n\nApache License Version 2.0 as TensorFlow's.\n\n\n## Disclaimer\n\nThe `schema.fbs` is obtained from TensorFlow directly. Maintainer of this package had tried to [contact](assets/disclaimer.eml) TensorFlow maintainers for licensing issues, but received no reply. Ownership or maintainship is open to transfer or close if there were any issue.\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": "https://jackwish.net/tflite", "keywords": "tflite,tensorflow", "license": "Apache License 2.0", "maintainer": "", "maintainer_email": "", "name": "tflite", "package_url": "https://pypi.org/project/tflite/", "platform": "", "project_url": "https://pypi.org/project/tflite/", "project_urls": { "Bug Reports": "https://github.com/jackwish/tflite/issues", "Homepage": "https://jackwish.net/tflite", "Source": "https://github.com/jackwish/tflite" }, "release_url": "https://pypi.org/project/tflite/2.4.0/", "requires_dist": [ "flatbuffers", "numpy" ], "requires_python": "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,<4,>=2.7", "summary": "Parsing TensorFlow Lite Models (*.tflite) Easily", "version": "2.4.0", "yanked": false, "yanked_reason": null }, "last_serial": 9305968, "releases": { "0.0.1a0": [ { "comment_text": "", "digests": { "md5": "0bcb3d5a045697e20e1ecfad47f618ca", "sha256": "e8f3005617e09fe936e777b7c6cc660161f4d771b41db40d140d9c39f964caff" }, "downloads": -1, "filename": "tflite-0.0.1a0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "0bcb3d5a045697e20e1ecfad47f618ca", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <4", "size": 74071, "upload_time": "2019-10-10T09:22:10", "upload_time_iso_8601": "2019-10-10T09:22:10.662785Z", "url": "https://files.pythonhosted.org/packages/b1/2a/94aaaae22e82f28870b61c0f18526c198407c07388c39879b38a2c3fda8a/tflite-0.0.1a0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.0.2": [], "0.0.2.post0": [ { "comment_text": "", "digests": { "md5": "2f9e32f9f2c5b7c0b65bbee32a78732e", "sha256": "c72a80ab738e4186f9165fea9903e6c412dc639cde7d88af9c5ca796dedf09df" }, "downloads": -1, "filename": "tflite-0.0.2.post0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "2f9e32f9f2c5b7c0b65bbee32a78732e", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <4", "size": 75374, "upload_time": "2019-10-11T05:56:19", "upload_time_iso_8601": "2019-10-11T05:56:19.491594Z", "url": "https://files.pythonhosted.org/packages/aa/16/7fa065ad718f1bf05b3ce624944771922a32446c4ad20578e8dc07450acd/tflite-0.0.2.post0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "1.14.0": [ { "comment_text": "", "digests": { "md5": "ae2fdd8aa666196bdad371a7f8ad7086", "sha256": "6539bef8b372b4804df141ad9bf4e3ec405a6f2baabfccf2ae5f6f726af12e1d" }, "downloads": -1, "filename": "tflite-1.14.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ae2fdd8aa666196bdad371a7f8ad7086", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <4", "size": 75713, "upload_time": "2019-10-25T02:29:54", "upload_time_iso_8601": "2019-10-25T02:29:54.477400Z", "url": "https://files.pythonhosted.org/packages/9c/13/08c0f01f6c004903e7e967076abf437f2c6c004e77d49f6e9fa192900b9b/tflite-1.14.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "1.14.0.post1": [ { "comment_text": "", "digests": { "md5": "a9636b199f22a1a473d5dff169acf20e", "sha256": "823e2f27c590004e7bf9bd0016c935e5af8fb3bc9689d03ce00ba8b61c79b064" }, "downloads": -1, "filename": "tflite-1.14.0.post1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "a9636b199f22a1a473d5dff169acf20e", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <4", "size": 73914, "upload_time": "2019-10-25T07:08:28", "upload_time_iso_8601": "2019-10-25T07:08:28.418843Z", "url": "https://files.pythonhosted.org/packages/6b/a1/f2c75b2d8ab78de550b99d73dba5a44ef2253ecac2022d9d0b1702d3fa75/tflite-1.14.0.post1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "1.15.0": [ { "comment_text": "", "digests": { "md5": "26e285e1194373503b461885c88f391e", "sha256": "c4eac132e4dcc0854c607a5b6c90638025c5491811c23a36dae8f2ec97d0cbdf" }, "downloads": -1, "filename": "tflite-1.15.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "26e285e1194373503b461885c88f391e", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <4", "size": 79433, "upload_time": "2019-10-25T02:55:42", "upload_time_iso_8601": "2019-10-25T02:55:42.643206Z", "url": "https://files.pythonhosted.org/packages/64/c9/29ad83d877da97643b5ff1a84e51e29166d2f25c4780904311f4e7ba8793/tflite-1.15.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "1.15.0.post1": [ { "comment_text": "", "digests": { "md5": "0c556054184b7198cda576dac8349146", "sha256": "56d33e63fa26016eda262379e0d3fa85541f9a05ec8700e6bad91918f3c0d7f9" }, "downloads": -1, "filename": "tflite-1.15.0.post1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "0c556054184b7198cda576dac8349146", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <4", "size": 77440, "upload_time": "2019-10-25T07:10:14", "upload_time_iso_8601": "2019-10-25T07:10:14.490237Z", "url": "https://files.pythonhosted.org/packages/46/07/e6233472f647bd5698c3a2e2b2a82e15daf03e1a6d9b5b02e636a7a84663/tflite-1.15.0.post1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "1.15.2": [ { "comment_text": "", "digests": { "md5": "281ff3822a0128d0320e29ec012062f3", "sha256": "a5e99c4e8e1b85ba70f9cb503daed3585b94c2ca1e9ef40f8492164378565f2f" }, "downloads": -1, "filename": "tflite-1.15.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "281ff3822a0128d0320e29ec012062f3", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <4", "size": 80340, "upload_time": "2020-02-11T11:55:07", "upload_time_iso_8601": "2020-02-11T11:55:07.700258Z", "url": "https://files.pythonhosted.org/packages/dd/a1/9a98a01a72b496bc3b2699c8cb89e988aa98b19031f09eacd4044ef29ba8/tflite-1.15.2-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "2.0.0": [ { "comment_text": "", "digests": { "md5": "2950612f03af274fdaccca856e338b57", "sha256": "1445605bec4aa40db16d57d88d7c9bea5c212983ed7d659b0eb6f7ba720656d8" }, "downloads": -1, "filename": "tflite-2.0.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "2950612f03af274fdaccca856e338b57", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <4", "size": 79450, "upload_time": "2019-10-25T03:06:10", "upload_time_iso_8601": "2019-10-25T03:06:10.462733Z", "url": "https://files.pythonhosted.org/packages/37/1b/bd3145d6187537ac933433832b9d77be727ca91f8d5a8c4206cfe335af30/tflite-2.0.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "2.0.0.post1": [ { "comment_text": "", "digests": { "md5": "262a902e856edf5e6ae4565d207a88a1", "sha256": "853c280531cde0c1354700a165a5426d023592bb34eecee26e745db5af24eda5" }, "downloads": -1, "filename": "tflite-2.0.0.post1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "262a902e856edf5e6ae4565d207a88a1", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <4", "size": 77459, "upload_time": "2019-10-25T06:43:37", "upload_time_iso_8601": "2019-10-25T06:43:37.151594Z", "url": "https://files.pythonhosted.org/packages/77/4a/06db17600e2c169f49d2245f15b44bef7749485114d6ff5f2e286e5dfee5/tflite-2.0.0.post1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "2.0.0.post2": [ { "comment_text": "", "digests": { "md5": "5835e53c6c8fa168c063befaf6f0c1fd", "sha256": "29f6fb6685e04566a48bb03dc676ba4a608c95d8f38b2c5e4f12ada1ff5fdcea" }, "downloads": -1, "filename": "tflite-2.0.0.post2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "5835e53c6c8fa168c063befaf6f0c1fd", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <4", "size": 77416, "upload_time": "2019-10-25T07:05:27", "upload_time_iso_8601": "2019-10-25T07:05:27.299370Z", "url": "https://files.pythonhosted.org/packages/d1/fe/5b63837c6e9d60f9f60fdba7a87d8e913517d926d2ee39a2f87c5c814895/tflite-2.0.0.post2-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "2.0.1": [ { "comment_text": "", "digests": { "md5": "03fb924ac5f988fab3e7ea8a9ccd8b86", "sha256": "496445455b436879643e0c45c948211d91ae4be66aeb5d534908696b72dce081" }, "downloads": -1, "filename": "tflite-2.0.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "03fb924ac5f988fab3e7ea8a9ccd8b86", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <4", "size": 79614, "upload_time": "2020-02-11T12:02:03", "upload_time_iso_8601": "2020-02-11T12:02:03.494868Z", "url": "https://files.pythonhosted.org/packages/3a/63/72632334b11ca609804170f4ff9476a815b8be5439e77428c9dc6e77ba94/tflite-2.0.1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "2.1.0": [ { "comment_text": "", "digests": { "md5": "e3cdce015a55acc3c9cc7e02caa8039e", "sha256": "7b51610d8cd08bb198038b5bfb294fd838a9371291c9ee8172e9163c59da27f4" }, "downloads": -1, "filename": "tflite-2.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e3cdce015a55acc3c9cc7e02caa8039e", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <4", "size": 71824, "upload_time": "2020-01-09T08:39:18", "upload_time_iso_8601": "2020-01-09T08:39:18.250774Z", "url": "https://files.pythonhosted.org/packages/b3/d9/c90049612d2a1b7645c476854a1389eaaf958fd1641f58da1eaf1ca8f07a/tflite-2.1.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "2.2.0": [ { "comment_text": "", "digests": { "md5": "2b30f548d7246dae74a911c02015f0fe", "sha256": "1be887e4390b8e97a18fbb7e4d6fddee4c4882390d22f8edca18dfba2902bed7" }, "downloads": -1, "filename": "tflite-2.2.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "2b30f548d7246dae74a911c02015f0fe", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <4", "size": 89274, "upload_time": "2020-05-09T02:43:09", "upload_time_iso_8601": "2020-05-09T02:43:09.352595Z", "url": "https://files.pythonhosted.org/packages/9e/83/c3ad8f1b31b432a762e418c415e25604d80e26b1444349aeba8cec21d751/tflite-2.2.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "2.3.0": [ { "comment_text": "", "digests": { "md5": "587baf16d7531d5d2704b940202d38ba", "sha256": "22c92718c7359cb6a993314edd30812259ef907e0f9325c40565775fb638bd9f" }, "downloads": -1, "filename": "tflite-2.3.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "587baf16d7531d5d2704b940202d38ba", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <4", "size": 79089, "upload_time": "2020-08-04T12:36:55", "upload_time_iso_8601": "2020-08-04T12:36:55.658786Z", "url": "https://files.pythonhosted.org/packages/52/27/ad85e415b6022f72e40b667e16c9479a3080b936cca177a3611a1792e1ff/tflite-2.3.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "efbb76246cb9c5d30b8eaad2dfb8d027", "sha256": "360b5b67db872750ce8b0330c7b19792694174efa4c35521a8c2c015b53b34dc" }, "downloads": -1, "filename": "tflite-2.3.0.tar.gz", "has_sig": false, "md5_digest": "efbb76246cb9c5d30b8eaad2dfb8d027", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <4", "size": 24600, "upload_time": "2020-08-04T12:36:57", "upload_time_iso_8601": "2020-08-04T12:36:57.762781Z", "url": "https://files.pythonhosted.org/packages/59/1b/4b75414efa0a48e97c6a81dadbc1051cbacd4f5d9ed684c0f027685e75f1/tflite-2.3.0.tar.gz", "yanked": false, "yanked_reason": null } ], "2.4.0": [ { "comment_text": "", "digests": { "md5": "3d32842219e3a4519afd2e2a33cbc4e2", "sha256": "0796f6ce6eb2aef4a318f5509e5fb0ce808e29cd3094801b4abbb1d8575a28cd" }, "downloads": -1, "filename": "tflite-2.4.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "3d32842219e3a4519afd2e2a33cbc4e2", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,<4,>=2.7", "size": 87032, "upload_time": "2021-02-03T12:57:23", "upload_time_iso_8601": "2021-02-03T12:57:23.549180Z", "url": "https://files.pythonhosted.org/packages/46/32/71250e71ec9f8656e45842a343f2fe6c2723787577e70cb9169b57471103/tflite-2.4.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d645518cc2dda14f1f4666353b1d7260", "sha256": "0510db1b48a3eec86bf9bb8d2749cd9d6d26d6a4fb329fd141bde5b4404932d1" }, "downloads": -1, "filename": "tflite-2.4.0.tar.gz", "has_sig": false, "md5_digest": "d645518cc2dda14f1f4666353b1d7260", "packagetype": "sdist", "python_version": "source", "requires_python": "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,<4,>=2.7", "size": 30525, "upload_time": "2021-02-03T12:57:24", "upload_time_iso_8601": "2021-02-03T12:57:24.401030Z", "url": "https://files.pythonhosted.org/packages/17/37/04ede3c0b7834551c1f427b589220e796cd228800e0f08d3a00c2b1a1d06/tflite-2.4.0.tar.gz", "yanked": false, "yanked_reason": null } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "3d32842219e3a4519afd2e2a33cbc4e2", "sha256": "0796f6ce6eb2aef4a318f5509e5fb0ce808e29cd3094801b4abbb1d8575a28cd" }, "downloads": -1, "filename": "tflite-2.4.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "3d32842219e3a4519afd2e2a33cbc4e2", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,<4,>=2.7", "size": 87032, "upload_time": "2021-02-03T12:57:23", "upload_time_iso_8601": "2021-02-03T12:57:23.549180Z", "url": "https://files.pythonhosted.org/packages/46/32/71250e71ec9f8656e45842a343f2fe6c2723787577e70cb9169b57471103/tflite-2.4.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d645518cc2dda14f1f4666353b1d7260", "sha256": "0510db1b48a3eec86bf9bb8d2749cd9d6d26d6a4fb329fd141bde5b4404932d1" }, "downloads": -1, "filename": "tflite-2.4.0.tar.gz", "has_sig": false, "md5_digest": "d645518cc2dda14f1f4666353b1d7260", "packagetype": "sdist", "python_version": "source", "requires_python": "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,<4,>=2.7", "size": 30525, "upload_time": "2021-02-03T12:57:24", "upload_time_iso_8601": "2021-02-03T12:57:24.401030Z", "url": "https://files.pythonhosted.org/packages/17/37/04ede3c0b7834551c1f427b589220e796cd228800e0f08d3a00c2b1a1d06/tflite-2.4.0.tar.gz", "yanked": false, "yanked_reason": null } ], "vulnerabilities": [] }