{ "info": { "author": "Miroslav Shubernetskiy", "author_email": "", "bugtrack_url": null, "classifiers": [ "Development Status :: 2 - Pre-Alpha", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Natural Language :: English", "Programming Language :: Python", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.6" ], "description": "===============\nSQLAlchemy Mock\n===============\n\n.. image:: https://badge.fury.io/py/alchemy-mock.png\n :target: http://badge.fury.io/py/alchemy-mock\n\n.. image:: https://travis-ci.org/miki725/alchemy-mock.png?branch=master\n :target: https://travis-ci.org/miki725/alchemy-mock\n\n.. image:: https://coveralls.io/repos/miki725/alchemy-mock/badge.png?branch=master\n :target: https://coveralls.io/r/miki725/alchemy-mock?branch=master\n\nSQLAlchemy mock helpers.\n\n* Free software: MIT license\n* GitHub: https://github.com/miki725/alchemy-mock\n\nInstalling\n----------\n\nYou can install ``alchemy-mock`` using pip::\n\n $ pip install alchemy-mock\n\nWhy?\n----\n\nSQLAlchemy is awesome. Unittests are great.\nAccessing DB during tests - not so much.\nThis library provides easy way to mock SQLAlchemy's session\nin unittests while preserving ability to do sane asserts.\nNormally SQLAlchemy's expressions cannot be easily compared\nas comparison on binary expression produces yet another binary expression::\n\n >>> type((Model.foo == 5) == (Model.bar == 5))\n \n\nBut they can be compared with this library::\n\n >>> ExpressionMatcher(Model.foo == 5) == (Model.bar == 5)\n False\n\nUsing\n-----\n\n``ExpressionMatcher`` can be directly used::\n\n >>> from alchemy_mock.comparison import ExpressionMatcher\n >>> ExpressionMatcher(Model.foo == 5) == (Model.foo == 5)\n True\n\nAlternatively ``AlchemyMagicMock`` can be used to mock out SQLAlchemy session::\n\n >>> from alchemy_mock.mocking import AlchemyMagicMock\n >>> session = AlchemyMagicMock()\n >>> session.query(Model).filter(Model.foo == 5).all()\n\n >>> session.query.return_value.filter.assert_called_once_with(Model.foo == 5)\n\nIn real world though session can be interacted with multiple times to query some data.\nIn those cases ``UnifiedAlchemyMagicMock`` can be used which combines various calls for easier assertions::\n\n >>> from alchemy_mock.mocking import UnifiedAlchemyMagicMock\n >>> session = UnifiedAlchemyMagicMock()\n\n >>> m = session.query(Model)\n >>> q = m.filter(Model.foo == 5)\n >>> if condition:\n ... q = q.filter(Model.bar > 10).all()\n >>> data1 = q.all()\n >>> data2 = m.filter(Model.note == 'hello world').all()\n\n >>> session.filter.assert_has_calls([\n ... mock.call(Model.foo == 5, Model.bar > 10),\n ... mock.call(Model.note == 'hello world'),\n ... ])\n\nAlso real-data can be stubbed by criteria::\n\n >>> from alchemy_mock.mocking import UnifiedAlchemyMagicMock\n >>> session = UnifiedAlchemyMagicMock(data=[\n ... (\n ... [mock.call.query(Model),\n ... mock.call.filter(Model.foo == 5, Model.bar > 10)],\n ... [Model(foo=5, bar=11)]\n ... ),\n ... (\n ... [mock.call.query(Model),\n ... mock.call.filter(Model.note == 'hello world')],\n ... [Model(note='hello world')]\n ... ),\n ... (\n ... [mock.call.query(AnotherModel),\n ... mock.call.filter(Model.foo == 5, Model.bar > 10)],\n ... [AnotherModel(foo=5, bar=17)]\n ... ),\n ... ])\n >>> session.query(Model).filter(Model.foo == 5).filter(Model.bar > 10).all()\n [Model(foo=5, bar=11)]\n >>> session.query(Model).filter(Model.note == 'hello world').all()\n [Model(note='hello world')]\n >>> session.query(AnotherModel).filter(Model.foo == 5).filter(Model.bar > 10).all()\n [AnotherModel(foo=5, bar=17)]\n >>> session.query(AnotherModel).filter(Model.note == 'hello world').all()\n []\n\nFinally ``UnifiedAlchemyMagicMock`` can partially fake session mutations\nsuch as ``session.add(instance)``. For example::\n\n >>> session = UnifiedAlchemyMagicMock()\n >>> session.add(Model(pk=1, foo='bar'))\n >>> session.add(Model(pk=2, foo='baz'))\n >>> session.query(Model).all()\n [Model(foo='bar'), Model(foo='baz')]\n >>> session.query(Model).get(1)\n Model(foo='bar')\n >>> session.query(Model).get(2)\n Model(foo='baz')\n\nNote that its partially correct since if added models are filtered on,\nsession is unable to actually apply any filters so it returns everything::\n\n >>> session.query(Model).filter(Model.foo == 'bar').all()\n [Model(foo='bar'), Model(foo='baz')]\n\n\n\n\nHistory\n-------\n\n0.4.2 (2019-09-25)\n~~~~~~~~~~~~~~~~~~\n\n* Adding support ``label()`` in ``ExpressionMatcher``. For example ``column.label('foo')``.\n\n0.4.1 (2019-06-26)\n~~~~~~~~~~~~~~~~~~\n\n* Adding support for ``one_or_none()``. Thanks @davidroeca\n\n0.4.0 (2019-06-06)\n~~~~~~~~~~~~~~~~~~\n\n* Adding basic mutation capability with ``add`` and ``add_all``.\n\n0.3.5 (2019-04-13)\n~~~~~~~~~~~~~~~~~~\n\n* Fixing compatibility with latest ``mock``.\n\n0.3.4 (2018-10-03)\n~~~~~~~~~~~~~~~~~~\n\n* Unifying ``limit``.\n\n0.3.3 (2018-09-17)\n~~~~~~~~~~~~~~~~~~\n\n* Unifying ``options`` and ``group_by``.\n\n0.3.2 (2018-06-27)\n~~~~~~~~~~~~~~~~~~\n\n* Added support for ``count()`` and ``get()`` between boundaries.\n\n0.3.1 (2018-03-28)\n~~~~~~~~~~~~~~~~~~\n\n* Added support for ``func`` calls in ``ExpressionMatcher``. For example ``func.lower(column)``.\n\n0.3.0 (2018-01-24)\n~~~~~~~~~~~~~~~~~~\n\n* Added support for ``.one()`` and ``.first()`` methods when stubbing data.\n* Fixed bug which incorrectly unified methods after iterating on mock.\n\n0.2.0 (2018-01-13)\n~~~~~~~~~~~~~~~~~~\n\n* Added ability to stub real-data by filtering criteria.\n See `#2 `_.\n\n0.1.1 (2018-01-12)\n~~~~~~~~~~~~~~~~~~\n\n* Fixed alembic typo in README. oops.\n\n0.1.0 (2018-01-12)\n~~~~~~~~~~~~~~~~~~\n\n* First release on PyPI.\n\n\nCredits\n-------\n\nDevelopment Lead\n~~~~~~~~~~~~~~~~\n\n* Miroslav Shubernetskiy - https://github.com/miki725\n\nContributors\n~~~~~~~~~~~~\n\n* Serkan Hoscai - https://github.com/shosca\n\n\nLicense\n-------\n\nThe MIT License (MIT)\n\nCopyright (c) 2018, Miroslav Shubernetskiy\n\n::\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n THE SOFTWARE.\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/miki725/alchemy-mock", "keywords": "sqlalchemy mock testing", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "alchemy-mock", "package_url": "https://pypi.org/project/alchemy-mock/", "platform": "", "project_url": "https://pypi.org/project/alchemy-mock/", "project_urls": { "Homepage": "https://github.com/miki725/alchemy-mock" }, "release_url": "https://pypi.org/project/alchemy-mock/0.4.2/", "requires_dist": null, "requires_python": "", "summary": "SQLAlchemy mock helpers.", "version": "0.4.2" }, "last_serial": 5886571, "releases": { "0.1.0": [ { "comment_text": "", "digests": { "md5": "99ee136ff7b959463290b7d31f2674f1", "sha256": "214f81e234875eceb20ba78cb1e86c81086d42dec2f05dcd5c032de72db2d773" }, "downloads": -1, "filename": "alchemy_mock-0.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "99ee136ff7b959463290b7d31f2674f1", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 11416, "upload_time": "2018-01-12T17:12:54", "url": "https://files.pythonhosted.org/packages/02/8c/9f087dc5be2e773654f74d021fca2b1d8a52a6f0c49aa0acd7cc4177f760/alchemy_mock-0.1.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3697d3bf7942f5df9ad6c786ba4d7e46", "sha256": "7debfac95164c16ba34753cd755e087c44ba8f01ff13a83963a610a8587174f8" }, "downloads": -1, "filename": "alchemy-mock-0.1.0.tar.gz", "has_sig": false, "md5_digest": "3697d3bf7942f5df9ad6c786ba4d7e46", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7708, "upload_time": "2018-01-12T17:12:52", "url": "https://files.pythonhosted.org/packages/fc/8c/9d742e198be20886e9b5a014a7cda89d8acba7b7c7aba1a6e92342734a5e/alchemy-mock-0.1.0.tar.gz" } ], "0.1.1": [ { "comment_text": "", "digests": { "md5": "706f0e8e08c299efbd35feb4bd92e7dd", "sha256": "85b704b7cb6cbee1bf1dd8ea569fb0e493b3bcd7bcdb0bf6675f3e572639276d" }, "downloads": -1, "filename": "alchemy_mock-0.1.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "706f0e8e08c299efbd35feb4bd92e7dd", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 11463, "upload_time": "2018-01-12T17:21:35", "url": "https://files.pythonhosted.org/packages/eb/4a/9ac0981d46bc696120824bff9e66992e3419e8d944683f8f37d69750784c/alchemy_mock-0.1.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ea600adf36858262a8ec6b588a0a497e", "sha256": "5eee02f6b17e11ca9c42191e6094d4ae9e92deee818d893adcdefad36b1b58fb" }, "downloads": -1, "filename": "alchemy-mock-0.1.1.tar.gz", "has_sig": false, "md5_digest": "ea600adf36858262a8ec6b588a0a497e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7758, "upload_time": "2018-01-12T17:21:33", "url": "https://files.pythonhosted.org/packages/05/d3/e4c69e37023608df7f667784b40623f37b41be90459ef1f277c3ee234b40/alchemy-mock-0.1.1.tar.gz" } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "171a396fb6bf3f4df115280792bb7f9c", "sha256": "54ef3ddffb7bec585d9e4a5cb73098e7f0d55fd6068f09fd8a5357b4d8d99d7a" }, "downloads": -1, "filename": "alchemy_mock-0.2.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "171a396fb6bf3f4df115280792bb7f9c", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 12727, "upload_time": "2018-01-14T02:25:52", "url": "https://files.pythonhosted.org/packages/39/74/f8732b1a91021986f2c4b60ecf13ae94263a5e09cd0165a771625ff8fc2e/alchemy_mock-0.2.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "24054382c7f1fb799dc216a7841b9a3a", "sha256": "9de7e1523e375531497dc159e2220fbc1829332437381129284a1d36f2d2eb3c" }, "downloads": -1, "filename": "alchemy-mock-0.2.0.tar.gz", "has_sig": false, "md5_digest": "24054382c7f1fb799dc216a7841b9a3a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8939, "upload_time": "2018-01-14T02:25:49", "url": "https://files.pythonhosted.org/packages/28/bd/12726d776292a6a6500b4585201aafcab80213f16aa76fcfe3be52b2a578/alchemy-mock-0.2.0.tar.gz" } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "91a24816c2b1c3b42e500af0fc492b86", "sha256": "0cca64c9ac607c2e601beaf4316ec0f58d8c8f04e0b69b7471778c11d1931cc5" }, "downloads": -1, "filename": "alchemy_mock-0.3.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "91a24816c2b1c3b42e500af0fc492b86", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 13192, "upload_time": "2018-01-25T15:39:05", "url": "https://files.pythonhosted.org/packages/bf/ed/8a35cbb4f54d2483091f7e0d95fba89f4a11d72f2c7c63167460c5f0a1a2/alchemy_mock-0.3.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "047129589c5fed4a6c7c6b0cb30fe9a9", "sha256": "868c5d547bfd44ca332de3791acc2cb1581e90c1a34acc4490aa67277a6509a8" }, "downloads": -1, "filename": "alchemy-mock-0.3.0.tar.gz", "has_sig": false, "md5_digest": "047129589c5fed4a6c7c6b0cb30fe9a9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9309, "upload_time": "2018-01-25T15:39:01", "url": "https://files.pythonhosted.org/packages/98/99/e9df0d1ef24b350007c8f86ee960320249712eea72e4480e355a55f3c168/alchemy-mock-0.3.0.tar.gz" } ], "0.3.1": [ { "comment_text": "", "digests": { "md5": "7cec3cbbc59dcbcdf8b82e851cb4d187", "sha256": "438eb2b2ed0e6bf20a6a728143dcc0e9839f455d929d2dcbda96bc189eb6a693" }, "downloads": -1, "filename": "alchemy_mock-0.3.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "7cec3cbbc59dcbcdf8b82e851cb4d187", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 13344, "upload_time": "2018-03-28T14:52:41", "url": "https://files.pythonhosted.org/packages/d0/e7/85cea3aa28defde1dc67d0d9c0bbac015e6b35cbf2e5933f91736439f831/alchemy_mock-0.3.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7347dbc7f91ef07bf6e16392e5d1f5fd", "sha256": "7e16e8e64f92cb6ea717f57f6141a7cca0867e8620bda9bb5c02814e1cf13bee" }, "downloads": -1, "filename": "alchemy-mock-0.3.1.tar.gz", "has_sig": false, "md5_digest": "7347dbc7f91ef07bf6e16392e5d1f5fd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9433, "upload_time": "2018-03-28T14:52:40", "url": "https://files.pythonhosted.org/packages/39/f7/5e1fc4b75794772d2f50a457bf455ff0483475942180afad3859ce282de6/alchemy-mock-0.3.1.tar.gz" } ], "0.3.2": [ { "comment_text": "", "digests": { "md5": "bc89e1c258e7152d5507790cc9e46412", "sha256": "e93d43316f6ccdad5beeb1ede26eab713035af5b2337d2f4483c3be7d55ba184" }, "downloads": -1, "filename": "alchemy_mock-0.3.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "bc89e1c258e7152d5507790cc9e46412", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 11088, "upload_time": "2018-06-28T14:33:11", "url": "https://files.pythonhosted.org/packages/b7/91/cc9e9735be85123fee2e851bdedb50ad968319c6fd417f91785a670d7f3c/alchemy_mock-0.3.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "bd44410e6d488b9c65d6241dd48038cf", "sha256": "537cef034c38d6edf74fb004064e5f1bd214158ef689c20a9998cba6a3dabcb3" }, "downloads": -1, "filename": "alchemy-mock-0.3.2.tar.gz", "has_sig": false, "md5_digest": "bd44410e6d488b9c65d6241dd48038cf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9940, "upload_time": "2018-06-28T14:33:09", "url": "https://files.pythonhosted.org/packages/54/d1/90c9e6b1d80dc1d0f0608935ca17c69b5db768f9f1afb1e4bdbb3dd8ae2b/alchemy-mock-0.3.2.tar.gz" } ], "0.3.3": [ { "comment_text": "", "digests": { "md5": "cd25aaa3a09c4fca8c971f50aa9bc095", "sha256": "fe974f32640db9c27f4009deff4dffd9331d65addbd0923d0990986681e9c393" }, "downloads": -1, "filename": "alchemy_mock-0.3.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "cd25aaa3a09c4fca8c971f50aa9bc095", "packagetype": "bdist_wheel", "python_version": "3.7", "requires_python": null, "size": 11127, "upload_time": "2018-09-17T14:31:09", "url": "https://files.pythonhosted.org/packages/fd/08/18cb50377f2844653570040f35bad2652abdc1b1a8ae5eb68e8d2ab9b391/alchemy_mock-0.3.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "729a70907aaf0a7beb8b68f4a07bf058", "sha256": "6a011d0262f1b6149b633d61dcc6925d192981b3c1efc6b187add01f7d88b77a" }, "downloads": -1, "filename": "alchemy-mock-0.3.3.tar.gz", "has_sig": false, "md5_digest": "729a70907aaf0a7beb8b68f4a07bf058", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12030, "upload_time": "2018-09-17T14:31:06", "url": "https://files.pythonhosted.org/packages/1c/ea/1c8723a236407ef8b9f1eabc24002b9c12703f4a587606c307200a3583da/alchemy-mock-0.3.3.tar.gz" } ], "0.3.4": [ { "comment_text": "", "digests": { "md5": "95a8e10e72d8991b9e8f9baaf2f04671", "sha256": "279b158739c5e055970f7e38ad6db053c7c596367b4864f6a20ef141a3371565" }, "downloads": -1, "filename": "alchemy_mock-0.3.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "95a8e10e72d8991b9e8f9baaf2f04671", "packagetype": "bdist_wheel", "python_version": "3.7", "requires_python": null, "size": 11152, "upload_time": "2018-10-03T20:38:06", "url": "https://files.pythonhosted.org/packages/91/f8/794fd84996b59980542c265bb5c7337dd93618b3e55464c89081b889e543/alchemy_mock-0.3.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b1479309139cc7a8bc8e164d32abad51", "sha256": "944387ab2a12117a49bcf1bb8bbae370a9d022f9bca4c16839cec3cb6ba85a1b" }, "downloads": -1, "filename": "alchemy-mock-0.3.4.tar.gz", "has_sig": false, "md5_digest": "b1479309139cc7a8bc8e164d32abad51", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12067, "upload_time": "2018-10-03T20:38:03", "url": "https://files.pythonhosted.org/packages/2b/1d/4e976c6ef15e6fe0f97c3758de6f6013310e4338bae6ae0acc45009dda92/alchemy-mock-0.3.4.tar.gz" } ], "0.3.5": [ { "comment_text": "", "digests": { "md5": "f524ff21157478f7052b0364d94e982d", "sha256": "5f751191e43fc20c82c2e34e0d680a7395c5a280805c39ed3cb9f6888baf9954" }, "downloads": -1, "filename": "alchemy_mock-0.3.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f524ff21157478f7052b0364d94e982d", "packagetype": "bdist_wheel", "python_version": "3.7", "requires_python": null, "size": 12393, "upload_time": "2019-05-13T16:47:40", "url": "https://files.pythonhosted.org/packages/ed/e7/7953711f6617fb6b787ddc159741380459718e10a2583d3b35e0ad036d1e/alchemy_mock-0.3.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "04a772ac6f6217d16fe7e7e4f51f1fb4", "sha256": "1ba2a966055f772d6b82d331de6624ba8f93671aab1aa1d9fb451631635e5105" }, "downloads": -1, "filename": "alchemy-mock-0.3.5.tar.gz", "has_sig": false, "md5_digest": "04a772ac6f6217d16fe7e7e4f51f1fb4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12072, "upload_time": "2019-05-13T16:47:37", "url": "https://files.pythonhosted.org/packages/6e/66/08459065e1ed5a61c0de0a25638a16b7ffeb91670476a6d4ae7214bb0c3e/alchemy-mock-0.3.5.tar.gz" } ], "0.4.0": [ { "comment_text": "", "digests": { "md5": "060050fcd25de929621eee58a070bf18", "sha256": "4f54296e244ac97a3d4a85100ee3c5786d1bd322508ada80029a2059f8d1cd2b" }, "downloads": -1, "filename": "alchemy_mock-0.4.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "060050fcd25de929621eee58a070bf18", "packagetype": "bdist_wheel", "python_version": "3.7", "requires_python": null, "size": 12995, "upload_time": "2019-06-07T00:19:41", "url": "https://files.pythonhosted.org/packages/5d/ef/30361f200ee0cca4485036b373037358e6e1fb93ce173495e2003387935f/alchemy_mock-0.4.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5ab90a1263a529058ac0394b1fbc4954", "sha256": "e629be391c249bab748325943d802f76ae84824b20f81c9c7d0cfabc105f3d4d" }, "downloads": -1, "filename": "alchemy-mock-0.4.0.tar.gz", "has_sig": false, "md5_digest": "5ab90a1263a529058ac0394b1fbc4954", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13116, "upload_time": "2019-06-07T00:19:40", "url": "https://files.pythonhosted.org/packages/e4/8e/5b001b3d4b3d25337c0d479e0b1341f513074ce992d34658283d90425c63/alchemy-mock-0.4.0.tar.gz" } ], "0.4.1": [ { "comment_text": "", "digests": { "md5": "5ccbf7af3a1b81f09b6b867a0da54b19", "sha256": "64039964c59b959c3f0bc8542d6881a425c974d77096dec377636451ebe9fe9b" }, "downloads": -1, "filename": "alchemy_mock-0.4.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "5ccbf7af3a1b81f09b6b867a0da54b19", "packagetype": "bdist_wheel", "python_version": "3.7", "requires_python": null, "size": 13062, "upload_time": "2019-06-26T18:32:37", "url": "https://files.pythonhosted.org/packages/09/4b/cd078355ab7054a17cc151ea81da25c18ffcef4d94f5bd5fc124e5c12029/alchemy_mock-0.4.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "963d6775a1b1143659162dab457dfc5d", "sha256": "8314f251a9a0ce079c7a328aaecd32c6b7d834c5013e5f3f3645c976fc398124" }, "downloads": -1, "filename": "alchemy-mock-0.4.1.tar.gz", "has_sig": false, "md5_digest": "963d6775a1b1143659162dab457dfc5d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13233, "upload_time": "2019-06-26T18:32:35", "url": "https://files.pythonhosted.org/packages/22/2d/175b1e6bcbae07ae084f54870f4fe299a38ebaf2c7ab273335581755ce17/alchemy-mock-0.4.1.tar.gz" } ], "0.4.2": [ { "comment_text": "", "digests": { "md5": "6a13a25c664f49577204f2c0c66c5f2d", "sha256": "a192d173980ee19c60ed1af4f37e833a2a2395d321adce6fcf2b857497be50d0" }, "downloads": -1, "filename": "alchemy_mock-0.4.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "6a13a25c664f49577204f2c0c66c5f2d", "packagetype": "bdist_wheel", "python_version": "3.7", "requires_python": null, "size": 13166, "upload_time": "2019-09-25T17:54:22", "url": "https://files.pythonhosted.org/packages/b8/00/0f046d4069ab905fcc1ebc651502cc498d1ee1763d332238bef0289f8910/alchemy_mock-0.4.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c577da843234e94569632173bf63f82d", "sha256": "0715d7bc6a09dd9927bdbb9992e36ae1382e2e850ffb110420863a73ee13db01" }, "downloads": -1, "filename": "alchemy-mock-0.4.2.tar.gz", "has_sig": false, "md5_digest": "c577da843234e94569632173bf63f82d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13372, "upload_time": "2019-09-25T17:54:20", "url": "https://files.pythonhosted.org/packages/a7/b9/a2185b0f7ebbc1e09ba96c75b58f93b8d5de53d2a08ae9924a3e79455253/alchemy-mock-0.4.2.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "6a13a25c664f49577204f2c0c66c5f2d", "sha256": "a192d173980ee19c60ed1af4f37e833a2a2395d321adce6fcf2b857497be50d0" }, "downloads": -1, "filename": "alchemy_mock-0.4.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "6a13a25c664f49577204f2c0c66c5f2d", "packagetype": "bdist_wheel", "python_version": "3.7", "requires_python": null, "size": 13166, "upload_time": "2019-09-25T17:54:22", "url": "https://files.pythonhosted.org/packages/b8/00/0f046d4069ab905fcc1ebc651502cc498d1ee1763d332238bef0289f8910/alchemy_mock-0.4.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c577da843234e94569632173bf63f82d", "sha256": "0715d7bc6a09dd9927bdbb9992e36ae1382e2e850ffb110420863a73ee13db01" }, "downloads": -1, "filename": "alchemy-mock-0.4.2.tar.gz", "has_sig": false, "md5_digest": "c577da843234e94569632173bf63f82d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13372, "upload_time": "2019-09-25T17:54:20", "url": "https://files.pythonhosted.org/packages/a7/b9/a2185b0f7ebbc1e09ba96c75b58f93b8d5de53d2a08ae9924a3e79455253/alchemy-mock-0.4.2.tar.gz" } ] }