{ "info": { "author": "Devon Klompmaker", "author_email": "devon.klompmaker@aofl.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 2 - Pre-Alpha", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Natural Language :: English", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7" ], "description": "# Coeus-Unity\n\n[pypi-build-status]: https://img.shields.io/pypi/v/coeus-test-unity.svg\n[travis-ci-status]: https://img.shields.io/travis/AgeOfLearning/coeus-unity-python-framework.svg\n\n[![pypi][pypi-build-status]](https://pypi.python.org/pypi/coeus-test-unity)\n[![travis][travis-ci-status]](https://travis-ci.org/AgeOfLearning/coeus-unity-python-framework)\n\n\n## About\nCoeus-Unity is a collection of commands and assertions built on `coeus-test` package for python. These commands support remote integration tests in Unity with the use of the C# Coeus test framework.\n\n### Contributors\n- [@greg-morchower-aofl](https://github.com/greg-morchower-aofl)\n- [@leonidumanskiy](https://github.com/leonidumanskiy)\n\n## Setup\nSimply install the requirement into your package. \n\n```python\npip install coeus-test-unity\n```\n\n## Commands\nCommands offer no response validation. You can use assertions for that.\n\n```python\nimport commands\n\nresponse = commands.query_transform_exists(cli, \"My/Transform Hierarchy/Object (Clone)\")\nresponse = commands.query_scene_loaded(cli, \"AppSetup\")\nresponse = commands.query_renderer_visible(cli, \"My/Target/Object (Clone)\")\n\nresponse = commands.await_transform_exists(cli, \"My/Transform Hierarchy/Object (Clone)\")\n# Waits for renderer to become not visible based on False...\nresponse = commands.await_renderer_visible(cli, \"My/Transform Hierarchy/Object (Clone)\", False)\nresponse = commands.await_scene_loaded(cli, \"AppSetup\")\n\n# Finds a FieldInfo | PropertyInfo on the component and attempts to assign the value (String | Number | Boolean)\ncommands.assign_component_value(cli, \"My/Transform/Target\", \"InputField\", \"text\", \"Hello World\")\n\n# Finds a FieldInfo | PropertyInfo on the component and attempts to obtain its value\nvalue = commands.fetch_component_value(cli, \"My/Transform/Target\", \"InputField\", \"text\")\n\n```\n\n## Assertions\nSince commands only assert the response message, they don't verify the state being requested; for this we can use the assertions.\n\n```python\nimport assertions\n\n# Fails immediately if transform doesn't exist...\nassertions.assert_transform_exists(cli, \"Some/Path\")\n\n# Fails immediately if scene not loaded...\nassertions.assert_scene_loaded(cli, \"MyScene\")\n\n# Awaits for the scene to be loaded, fails when exceeded...\nassertions.assert_await_scene_loaded(cli, \"MyScene\")\n\n# Awaits for a transform to exist by timeout, fails when exceeded...\nassertions.assert_await_transform_exists(cli, \"Some/Path\", timeout_seconds=10)\n\n# Awaits for a renderer to be visible by timeout, fails when exceeded...\nassertions.assert_await_renderer_visible(cli, \"Some/Path\", timeout_seconds=10)\n\n# Awaits for all transforms to exist by timeout, fails when exceeded...\nassertions.assert_await_all_transforms_exist(cli, [\"Some/Path1\", \"Some/Path2\"], timeout_seconds=10)\n\n# Awaits for any of the transforms to exist by timeout, fails when exceeded...\nassertions.assert_await_any_transforms_exist(cli, [\"Some/Path1\", \"Some/Path2\"], timeout_seconds=10)\n\n# Checks if FieldInfo | PropertyInfo on the component equals to the provided value\nassertions.assert_component_value_equals(cli, \"My/Transform/Target\", \"InputField\", \"text\", \"password\")\n\n# Awaits a FieldInfo | PropertyInfo on the component to become the provided value\nassertions.assert_await_component_value_equals(cli, \"My/Transform/Target\", \"InputField\", \"text\", \"password\")\n\n```\n\n## Advanced\n\n### Transform Path Variables\nIf your client supports variable replacement, you can simply pass them into your paths. For instance if you have different variations on transform path names based on some predictable variable, you can pass those in for replacement.\n\n```python\n# {deviceFormfactor} is replaced in client...\nassertions.assert_await_transform_exists(cli, \"Kiosk-{deviceFormFactor}(Clone\"), timeout_seconds=10)\n```\n\n### Transform References\nIf two or more sibling transforms have the same name, the transform path is ambiguous. This makes it difficult to specify the correct transform, as the example below illustrates:\n\n```python\n# Suppose both buttons have the same transform path: \"Path/To/Menu/Button\"\n\n# Fetch button0 position using transform path\nbutton0_position = commands.fetch_transform_screen_position(cli, \"Path/To/Menu/Button\")\n\n# Can't fetch button1 position using transform path because transform path is ambiguous\nbutton1_position = # ???\n```\n\nTo resolve the ambiguity, you can use a transform reference, which supplements the transform path with sibling indices to yield a unique path for each transform. Use the `fetch_transform` command to obtain a transform reference:\n\n```python\n# Suppose both buttons have the same transform path: \"Path/To/Menu/Button\"\n\n# Obtain a transform reference\nmenu = commands.fetch_transform(cli, \"Path/To/Menu\")\n\n# Fetch button0 position using transform reference\nbutton0_position = commands.fetch_transform_screen_position(cli, menu.children[0])\n\n# Fetch button1 position using transform reference\nbutton1_position = commands.fetch_transform_screen_position(cli, menu.children[1])\n```\n\n> *Warning:* Transform references are only valid as long as the transform hierarchy doesn't change. If the hierarchy changes (e.g. a transform is created or deleted, or the sibling order changes), you must call `fetch_transform` again to obtain updated transform references.\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://github.com/AgeOfLearning/coeus-unity-python-framework", "keywords": "coeus-test-unity", "license": "BSD 3-Clause License", "maintainer": "", "maintainer_email": "", "name": "coeus-test-unity", "package_url": "https://pypi.org/project/coeus-test-unity/", "platform": "", "project_url": "https://pypi.org/project/coeus-test-unity/", "project_urls": { "Homepage": "https://github.com/AgeOfLearning/coeus-unity-python-framework" }, "release_url": "https://pypi.org/project/coeus-test-unity/0.1.16/", "requires_dist": [ "coeus-test (>=0.1.8)" ], "requires_python": "", "summary": "Unity commands and responses for coeus-python-framework.", "version": "0.1.16" }, "last_serial": 5637158, "releases": { "0.1.0": [ { "comment_text": "", "digests": { "md5": "dc9c5bbb7ddd8d18cae481594c1d82de", "sha256": "5c25995cd58b31c88fa6c38e144d37ded6d7b2423cdb38e9657b94d535bae8ef" }, "downloads": -1, "filename": "coeus_test_unity-0.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "dc9c5bbb7ddd8d18cae481594c1d82de", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 4632, "upload_time": "2018-11-26T20:32:46", "url": "https://files.pythonhosted.org/packages/98/9f/895548c89be4b1d1a11f5fb694d93f4653c72f771b9e2d63908734a9e1de/coeus_test_unity-0.1.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "247236cee204475393526f1d123918a3", "sha256": "7c3730acbf9c2c0e19aa39d977c75236c7711df47c5bb93ea1848b30d0706087" }, "downloads": -1, "filename": "coeus-test-unity-0.1.0.tar.gz", "has_sig": false, "md5_digest": "247236cee204475393526f1d123918a3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3002, "upload_time": "2018-11-26T20:32:48", "url": "https://files.pythonhosted.org/packages/98/a1/5a4910db906b5749745a1d81adec1d7ec407993f3739c09b67cb39e7f15b/coeus-test-unity-0.1.0.tar.gz" } ], "0.1.1": [ { "comment_text": "", "digests": { "md5": "8c4ff0f8ae9647b7c4ae526f166cc1ed", "sha256": "c6244d48b1778d001aef8266cc69d0a1e604880637cbe2866b4e4942a62b8f57" }, "downloads": -1, "filename": "coeus_test_unity-0.1.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "8c4ff0f8ae9647b7c4ae526f166cc1ed", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 4723, "upload_time": "2018-11-26T21:43:37", "url": "https://files.pythonhosted.org/packages/6a/4f/a797295b7ca338b3be0ca382b4878c273a728f3ebb9046a9d16b098a39db/coeus_test_unity-0.1.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3b6448aab95fdaee067f49945661c554", "sha256": "c77018d6303b96414113847c671809787a2ab3cd4ffd6b38a3c3af55a912e90f" }, "downloads": -1, "filename": "coeus-test-unity-0.1.1.tar.gz", "has_sig": false, "md5_digest": "3b6448aab95fdaee067f49945661c554", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3112, "upload_time": "2018-11-26T21:43:38", "url": "https://files.pythonhosted.org/packages/c6/cf/fb3835f990b158f51cd91bacea97a112c28c4d1c9d08b80731f97167c659/coeus-test-unity-0.1.1.tar.gz" } ], "0.1.10": [ { "comment_text": "", "digests": { "md5": "de764392776ee356f398a72fe779816c", "sha256": "1e17512b676354ca47c712404d8bd172017cde18d0389ff8b193f8cc45e17caf" }, "downloads": -1, "filename": "coeus_test_unity-0.1.10-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "de764392776ee356f398a72fe779816c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 6255, "upload_time": "2019-01-03T00:47:54", "url": "https://files.pythonhosted.org/packages/51/58/7ae674e6751756344fd858c0c8edadbabc184f214f875480c08500ad896c/coeus_test_unity-0.1.10-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5309ba1294e34b3cc16be58c6f7a2e25", "sha256": "813497ac07683e82fbf266cc7ba34d8f2842a3a3398cec9c6c7e3724a20f22aa" }, "downloads": -1, "filename": "coeus-test-unity-0.1.10.tar.gz", "has_sig": false, "md5_digest": "5309ba1294e34b3cc16be58c6f7a2e25", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4746, "upload_time": "2019-01-03T00:47:55", "url": "https://files.pythonhosted.org/packages/d8/dc/806cfcd12aea8da7e4e539b88f0a21b36fa0a6ca1f3754177e2807681947/coeus-test-unity-0.1.10.tar.gz" } ], "0.1.11": [ { "comment_text": "", "digests": { "md5": "1c8c9c0f5a5894f41aa0ee74809a5141", "sha256": "1d865dd99a27b0d7677a21b89929bdff67c841340a6f428bfdc6aedc84778669" }, "downloads": -1, "filename": "coeus_test_unity-0.1.11-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "1c8c9c0f5a5894f41aa0ee74809a5141", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 6250, "upload_time": "2019-01-03T01:04:56", "url": "https://files.pythonhosted.org/packages/be/06/71c36ee27fba33f3a2cfef78f91df6e88c6c245b0e047ea51f0c94d122e2/coeus_test_unity-0.1.11-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b14e4527d2ec97c6f6525fece4fa1a00", "sha256": "d3e5c2814ffe8b6b41bfa6dc846ed6cc9594f32eb48f39b080735ddcdd24d171" }, "downloads": -1, "filename": "coeus-test-unity-0.1.11.tar.gz", "has_sig": false, "md5_digest": "b14e4527d2ec97c6f6525fece4fa1a00", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4745, "upload_time": "2019-01-03T01:04:57", "url": "https://files.pythonhosted.org/packages/34/f6/8b696539ae7a4765c2a03818801df15a65c444deda19d7e30aa505618457/coeus-test-unity-0.1.11.tar.gz" } ], "0.1.12": [ { "comment_text": "", "digests": { "md5": "4557083f5aa2696d92ca79376f16c494", "sha256": "8d94406633df4451b72e25af48555d599a0be4744fbb91eceaedb8b5f75d1770" }, "downloads": -1, "filename": "coeus_test_unity-0.1.12-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "4557083f5aa2696d92ca79376f16c494", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 6300, "upload_time": "2019-04-30T23:48:44", "url": "https://files.pythonhosted.org/packages/07/dd/18e26f433f31bc41b631ad89cc92a53d69ef837d5254d0722935ce455968/coeus_test_unity-0.1.12-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1abb8a5705ada46de050d6c44858b7f7", "sha256": "b443109c77d7d1e722c7c475480c1aa0dad2bd6506794da86af73b92dbcb9acd" }, "downloads": -1, "filename": "coeus-test-unity-0.1.12.tar.gz", "has_sig": false, "md5_digest": "1abb8a5705ada46de050d6c44858b7f7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4794, "upload_time": "2019-04-30T23:48:46", "url": "https://files.pythonhosted.org/packages/a1/f4/ccb0c87f8f15103ba4caaaee1ef1b86ce3be5d54822ed039524f7df66982/coeus-test-unity-0.1.12.tar.gz" } ], "0.1.13": [ { "comment_text": "", "digests": { "md5": "c92b74b93474e7fe40ecedfad66854f4", "sha256": "90fc2cebe1bab3d457ba40dd0078093fdc9c4aee6fb68d50f1e5ddf3592c4b4b" }, "downloads": -1, "filename": "coeus_test_unity-0.1.13-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c92b74b93474e7fe40ecedfad66854f4", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 6576, "upload_time": "2019-05-01T18:37:01", "url": "https://files.pythonhosted.org/packages/28/c2/09a7b4a30a36f19a0d74cc4de669f9179fc216bccfbbe348fcd9d5ba972d/coeus_test_unity-0.1.13-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "510f8eb4384e2c4b478f066c71f4f974", "sha256": "83d8ebe0f88ea45aa2b63aadad989c7ac6f87727487e8d3734cfa0ab013cdced" }, "downloads": -1, "filename": "coeus-test-unity-0.1.13.tar.gz", "has_sig": false, "md5_digest": "510f8eb4384e2c4b478f066c71f4f974", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4923, "upload_time": "2019-05-01T18:37:03", "url": "https://files.pythonhosted.org/packages/34/58/1082b85e1433eb24e868f4fc93bbc2d28f0c6413374cdd2c885de28c3e52/coeus-test-unity-0.1.13.tar.gz" } ], "0.1.14": [ { "comment_text": "", "digests": { "md5": "f7d9cb9054956f50485e911160160f70", "sha256": "9d81e7a678738fadc156d3035a1724939d8415f553ea71956dcb9dadcd649e4e" }, "downloads": -1, "filename": "coeus_test_unity-0.1.14-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f7d9cb9054956f50485e911160160f70", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 6662, "upload_time": "2019-05-01T19:56:15", "url": "https://files.pythonhosted.org/packages/6a/5a/03d159b343b55f1dffc19bc76a9e9437b1192b93b3a5f5677042e7d93063/coeus_test_unity-0.1.14-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "86a91925d95fa34039ffb0323fbef911", "sha256": "08aad0b6a52595ff43b12f845adb28464efd938147748727c9dd41a81379d109" }, "downloads": -1, "filename": "coeus-test-unity-0.1.14.tar.gz", "has_sig": false, "md5_digest": "86a91925d95fa34039ffb0323fbef911", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5033, "upload_time": "2019-05-01T19:56:16", "url": "https://files.pythonhosted.org/packages/e5/e2/c32e73cd33c676e5cea92fb7b2197fdd837937cbc7ca32f1b9fdfcc2e9f5/coeus-test-unity-0.1.14.tar.gz" } ], "0.1.15": [ { "comment_text": "", "digests": { "md5": "05427d6624f5f645800446edd9a3aafa", "sha256": "67cc9884557ca703fd0ef9390c8075aef002e7573aac880392db596c7eb097f8" }, "downloads": -1, "filename": "coeus_test_unity-0.1.15-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "05427d6624f5f645800446edd9a3aafa", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 9965, "upload_time": "2019-07-30T21:50:04", "url": "https://files.pythonhosted.org/packages/f1/8b/c9edc40e4eba8d928478717d8e74948970ecc333441e705daf277313171a/coeus_test_unity-0.1.15-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "aa0a15652134fe56c93d9b854c1822a6", "sha256": "073f82ef46fa1ff09c2fc3bf0dd8ed3275d3b8f6170328180688e7ac213dc18e" }, "downloads": -1, "filename": "coeus-test-unity-0.1.15.tar.gz", "has_sig": false, "md5_digest": "aa0a15652134fe56c93d9b854c1822a6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9831, "upload_time": "2019-07-30T21:50:06", "url": "https://files.pythonhosted.org/packages/c0/00/696404573e56a7e1ad400c1f90565db87b543d629c991333f3ef972a6634/coeus-test-unity-0.1.15.tar.gz" } ], "0.1.16": [ { "comment_text": "", "digests": { "md5": "0c888b72012899bfccf0d5fc239e964b", "sha256": "b4f750b0f446b8db35106ffc76111c592fefd2296ee6289c8f324a1a82850b1f" }, "downloads": -1, "filename": "coeus_test_unity-0.1.16-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "0c888b72012899bfccf0d5fc239e964b", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 9954, "upload_time": "2019-08-06T01:02:31", "url": "https://files.pythonhosted.org/packages/05/60/900bacdce4b4ce95d3e6b9e31ab7beadec8090df3aaf1b334b8957e3ea70/coeus_test_unity-0.1.16-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "592dfba666a70da8b82e944ca960e31d", "sha256": "5e9f956995a1c087aba3622c0234fd0b52fe353d10a4ada6d2779855f8f966c2" }, "downloads": -1, "filename": "coeus-test-unity-0.1.16.tar.gz", "has_sig": false, "md5_digest": "592dfba666a70da8b82e944ca960e31d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9819, "upload_time": "2019-08-06T01:02:33", "url": "https://files.pythonhosted.org/packages/18/c4/1d37e0e8824bbb7bcbc90f5fa9fc4a25a929010d2944bd26d3d417209fbc/coeus-test-unity-0.1.16.tar.gz" } ], "0.1.2": [ { "comment_text": "", "digests": { "md5": "f3eb63d0aa1813943bcf2aea4f600170", "sha256": "c80390a77400950ce70a2e5c8ad9bcca44f153dde714ce49af8a54aff05d288c" }, "downloads": -1, "filename": "coeus_test_unity-0.1.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f3eb63d0aa1813943bcf2aea4f600170", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 4781, "upload_time": "2018-11-26T22:57:03", "url": "https://files.pythonhosted.org/packages/18/9d/aae95772c7ff61d17ac37617c6f63a07464dc985835e9b4af79fa09afb9f/coeus_test_unity-0.1.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1ef2c97c3ee1ac650857881f14728121", "sha256": "9cf3e3c5b79bb68b601908df1d60787ce47dcc57afca7b454243347c65b0d4c2" }, "downloads": -1, "filename": "coeus-test-unity-0.1.2.tar.gz", "has_sig": false, "md5_digest": "1ef2c97c3ee1ac650857881f14728121", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3147, "upload_time": "2018-11-26T22:57:04", "url": "https://files.pythonhosted.org/packages/a2/41/6745c6573ac2f8fac0b13f5f9398814c6f360c10ce41de795d118dd1b752/coeus-test-unity-0.1.2.tar.gz" } ], "0.1.3": [ { "comment_text": "", "digests": { "md5": "e22d50ecb6d1de15dcbdd03c763b7b0d", "sha256": "6b48923cce517e3ab693176b70cd358f9e9c0079d337fc8f58c57c2b94b3a63f" }, "downloads": -1, "filename": "coeus_test_unity-0.1.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e22d50ecb6d1de15dcbdd03c763b7b0d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 4806, "upload_time": "2018-11-27T22:30:57", "url": "https://files.pythonhosted.org/packages/32/cd/a1182122739515f6034f6f5fb4facb41d61e1f9c84487406b35f0c6149bf/coeus_test_unity-0.1.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7ef2d0167323ccc5ac79be8b7e8269e3", "sha256": "e8a2ca6e0e753fe4c3aa46ff55d7b64fdd47ed71ab114c3e9558e13367d0618d" }, "downloads": -1, "filename": "coeus-test-unity-0.1.3.tar.gz", "has_sig": false, "md5_digest": "7ef2d0167323ccc5ac79be8b7e8269e3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3176, "upload_time": "2018-11-27T22:30:58", "url": "https://files.pythonhosted.org/packages/df/24/b1dae6a4b3d7b461574d6cbb838f278bfc07a02758233c19ed0c202171f6/coeus-test-unity-0.1.3.tar.gz" } ], "0.1.4": [ { "comment_text": "", "digests": { "md5": "171779df707ae37c0ca63bee6582018d", "sha256": "a48709e026bd0a3f2ca087f2f4f6fb530a9b3e7eb5baff9ead6f8c1c52341491" }, "downloads": -1, "filename": "coeus_test_unity-0.1.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "171779df707ae37c0ca63bee6582018d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 5491, "upload_time": "2018-11-28T02:34:41", "url": "https://files.pythonhosted.org/packages/28/4e/9e83c104db26784a244e7eef7c5063fae3bc18de9fc28c23ea22807fc622/coeus_test_unity-0.1.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d0dca3405736b07f8b4a97729ebfbf9a", "sha256": "11e679d728a3914cb5b134605aa4a6199ff7cd13052e7cb95b31c2d628b8fdf4" }, "downloads": -1, "filename": "coeus-test-unity-0.1.4.tar.gz", "has_sig": false, "md5_digest": "d0dca3405736b07f8b4a97729ebfbf9a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3708, "upload_time": "2018-11-28T02:34:42", "url": "https://files.pythonhosted.org/packages/85/e8/5c1283eefa47395395b52558583584635a6c1f6bc07539fad68f201f30fa/coeus-test-unity-0.1.4.tar.gz" } ], "0.1.5": [ { "comment_text": "", "digests": { "md5": "1b688a37013a31eeb0c828e84d7554e6", "sha256": "e6cd5b49002369fcbdca54c08250ffe6c1c2d91ec314cc7c07ffaca7ebeed441" }, "downloads": -1, "filename": "coeus_test_unity-0.1.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "1b688a37013a31eeb0c828e84d7554e6", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 5521, "upload_time": "2018-11-29T21:50:15", "url": "https://files.pythonhosted.org/packages/6a/93/a9b0346d1f9e6cc167cfac32b5a2489b058a4635c3a6d166a4117e147cd7/coeus_test_unity-0.1.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4552079fbc2c21f7ffa9c3247abfee4f", "sha256": "5843a4eba5271e32a9147b568fb562b831ae2ffb4d5fb28dba65cd3c5aa1812c" }, "downloads": -1, "filename": "coeus-test-unity-0.1.5.tar.gz", "has_sig": false, "md5_digest": "4552079fbc2c21f7ffa9c3247abfee4f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3728, "upload_time": "2018-11-29T21:50:16", "url": "https://files.pythonhosted.org/packages/85/b6/9a2bf214e88dc3fa252460baf971c384dca4bf412afe890cc534019a2c16/coeus-test-unity-0.1.5.tar.gz" } ], "0.1.6": [ { "comment_text": "", "digests": { "md5": "d93d345cd3e1e9d49301cd9b9dbcf3c6", "sha256": "cc8aa3b51a434294b1e770039ccc00f029a5ff244f17847e604320893d33307d" }, "downloads": -1, "filename": "coeus_test_unity-0.1.6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "d93d345cd3e1e9d49301cd9b9dbcf3c6", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 5695, "upload_time": "2018-12-03T23:21:33", "url": "https://files.pythonhosted.org/packages/15/19/ae0851dd532078d01c2f444a3e3aaf914a85c9d4cf206cc74882cdfdbf41/coeus_test_unity-0.1.6-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c209c835419ca434a3b076216516f317", "sha256": "ca7c4daacacde3dd2d46d0fe7901ed54a6283f347fafdb3d36f79ca78f32b968" }, "downloads": -1, "filename": "coeus-test-unity-0.1.6.tar.gz", "has_sig": false, "md5_digest": "c209c835419ca434a3b076216516f317", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3884, "upload_time": "2018-12-03T23:21:34", "url": "https://files.pythonhosted.org/packages/56/81/4519a0a85a48b76fbec85b1f98200d04d01488c53f8841cdfda5ebc9a0c1/coeus-test-unity-0.1.6.tar.gz" } ], "0.1.7": [ { "comment_text": "", "digests": { "md5": "b3dcc323855c8696b70c8af81c2c0ec2", "sha256": "439580f93fc7a9b0886dcfdce6780a470d8786cf3a4984cc384c8568b24ad9d2" }, "downloads": -1, "filename": "coeus_test_unity-0.1.7-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b3dcc323855c8696b70c8af81c2c0ec2", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 6118, "upload_time": "2018-12-04T20:00:53", "url": "https://files.pythonhosted.org/packages/2a/42/38a3f3522cfbf80600696c8ea8c1346c76b39b06d26e9b1c5be9978a66e3/coeus_test_unity-0.1.7-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "944941b369fa94263ae7825209bd018f", "sha256": "0d43ca7cd5061412b2f98921ee8e3290e7a221e390925bce45d39a691bd185f0" }, "downloads": -1, "filename": "coeus-test-unity-0.1.7.tar.gz", "has_sig": false, "md5_digest": "944941b369fa94263ae7825209bd018f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4430, "upload_time": "2018-12-04T20:00:54", "url": "https://files.pythonhosted.org/packages/4c/59/d3d28ecbf103ecfba39e386ee8d7ab36098405bac32c30a2b6a9071b2e33/coeus-test-unity-0.1.7.tar.gz" } ], "0.1.8": [ { "comment_text": "", "digests": { "md5": "2c86de6bd3d3df3fc93827897a6cafc1", "sha256": "b62f64625753c161b951211180eadfd69277307f411ce21b486e29723a4fc3e2" }, "downloads": -1, "filename": "coeus_test_unity-0.1.8-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "2c86de6bd3d3df3fc93827897a6cafc1", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 6388, "upload_time": "2018-12-05T00:25:48", "url": "https://files.pythonhosted.org/packages/69/af/b933e28bc95a420bad3ab65c7255a4d2928c7275602c97eff7cce348d6e6/coeus_test_unity-0.1.8-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5bce870f83b9950b4b68ee251a5d6af0", "sha256": "1f5280c00239d214a9b89f6265563f14d441e1660e540d8edfc0da20fce92aa3" }, "downloads": -1, "filename": "coeus-test-unity-0.1.8.tar.gz", "has_sig": false, "md5_digest": "5bce870f83b9950b4b68ee251a5d6af0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4724, "upload_time": "2018-12-05T00:25:49", "url": "https://files.pythonhosted.org/packages/b5/23/4f4418837466c08bb54b8bd2c8dea73603b672a2e984396767958da3c765/coeus-test-unity-0.1.8.tar.gz" } ], "0.1.9": [ { "comment_text": "", "digests": { "md5": "04f6ec0a0dd9ffb87f5208f1a5754aba", "sha256": "9ed215ae5e3c593cf1e3431991579b7f62f2ec60c725f88d99626688e9b00140" }, "downloads": -1, "filename": "coeus_test_unity-0.1.9-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "04f6ec0a0dd9ffb87f5208f1a5754aba", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 6232, "upload_time": "2019-01-02T23:46:43", "url": "https://files.pythonhosted.org/packages/6d/37/26b58433279c11b6b9b1a16b9ffd1ab583dda00ff2cfe72cce439f2e55d3/coeus_test_unity-0.1.9-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "48500b34b7b91dd9975107fd2757d23b", "sha256": "5b5a2278b7bbe25b67f03e66b7641e0bd8a97afa532a4d5bec8e73487e5a6fe3" }, "downloads": -1, "filename": "coeus-test-unity-0.1.9.tar.gz", "has_sig": false, "md5_digest": "48500b34b7b91dd9975107fd2757d23b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4738, "upload_time": "2019-01-02T23:46:45", "url": "https://files.pythonhosted.org/packages/e4/59/f30872a23f4ca673fd55fbf81d36a81b70d4c67164afa14eef28dd425eb6/coeus-test-unity-0.1.9.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "0c888b72012899bfccf0d5fc239e964b", "sha256": "b4f750b0f446b8db35106ffc76111c592fefd2296ee6289c8f324a1a82850b1f" }, "downloads": -1, "filename": "coeus_test_unity-0.1.16-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "0c888b72012899bfccf0d5fc239e964b", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 9954, "upload_time": "2019-08-06T01:02:31", "url": "https://files.pythonhosted.org/packages/05/60/900bacdce4b4ce95d3e6b9e31ab7beadec8090df3aaf1b334b8957e3ea70/coeus_test_unity-0.1.16-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "592dfba666a70da8b82e944ca960e31d", "sha256": "5e9f956995a1c087aba3622c0234fd0b52fe353d10a4ada6d2779855f8f966c2" }, "downloads": -1, "filename": "coeus-test-unity-0.1.16.tar.gz", "has_sig": false, "md5_digest": "592dfba666a70da8b82e944ca960e31d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9819, "upload_time": "2019-08-06T01:02:33", "url": "https://files.pythonhosted.org/packages/18/c4/1d37e0e8824bbb7bcbc90f5fa9fc4a25a929010d2944bd26d3d417209fbc/coeus-test-unity-0.1.16.tar.gz" } ] }