{ "info": { "author": "Yoav Aner", "author_email": "yoav@gingerlime.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "Intended Audience :: System Administrators", "License :: OSI Approved :: MIT License", "Natural Language :: English", "Programming Language :: Python", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7" ], "description": "# Gimel\n\n[![Build Status](https://travis-ci.org/Alephbet/gimel.svg?branch=master)](https://travis-ci.org/Alephbet/gimel)\n[![PyPI](https://img.shields.io/pypi/v/gimel.svg)](https://pypi.python.org/pypi/gimel)\n\n[a Scaleable A/B testing backend in ~100 lines of code (and for free*)](http://blog.gingerlime.com/2016/a-scaleable-ab-testing-backend-in-100-lines-of-code-and-for-free/)\n\n## What is it?\n\nan A/B testing backend using AWS Lambda/API Gateway + Redis\n\nKey Features:\n\n* Highly scalable due to the nature of AWS Lambda\n* High performance and low memory footprint using Redis HyperLogLog\n* Cost Effective\n* Easy deployment using `gimel deploy`. No need to twiddle with AWS.\n\n## Looking for contributors\n\n[click here for more info](https://github.com/Alephbet/gimel/issues/2)\n\n## What does Gimel mean?\n\nGimel (\u05d2\u05b4\u05bc\u05d9\u05de\u05b5\u05dc) is the 3rd letter of the Hebrew Alphabet. The letter (\u05d2) also looks visually similar to the greek Lambda\n(\u03bb).\n\n## Installation / Quick Start\n\nYou will need a live instance of redis accessible online from AWS. Then run:\n\n```bash\n$ pip install gimel\n$ gimel configure\n$ gimel deploy\n```\n\n![](https://s3.amazonaws.com/gingerlime-images/gimel-deploy.gif \"gimel deploy\")\n\nIt will automatically configure your AWS Lambda functions, API gateway and produce a JS snippet ready to use\nfor tracking your experiments.\n\n## Architecture\n\n![](https://s3.amazonaws.com/gingerlime-images/gimel-architecture.png \"Architecture\")\n\n### Client\n\nI suggest looking at [Alephbet](https://github.com/Alephbet/alephbet) to get more details, but at a high level, the client runs on the end-user browser. It will randomly pick a variant and execute a javascript function to 'activate' it. When a goal is reached -- user performs a certain action, this also include the pseudo-goal of *participating* in the experiment -- then an event is sent to the backend. An event typically looks something like \"experiment ABC, variant red, user participated\", or \"experiment XYZ, variant blue, check out goal reached\".\n\nAlephbet might send duplicate events, but each event should include a `uuid` to allow the backend to de-duplicate it. More below\n\n### Data Store - Redis HyperLogLog\n\nThe data store keeps a tally of each event that comes into the system. Being able to count unique events (de-duplication) was important to keep an accurate count. One approach would be to store each event in an entry / database row / document, and then run some kind of a unique count on it. Or we could use a nifty algorithm called [HyperLogLog](https://en.wikipedia.org/wiki/HyperLogLog). HyperLogLog allows you to count unique counts without storing each and every item.\n\nIn terms of storage space, redis HyperLogLog offers a fixed size of 12k per counter. This gives us ample space for storing experiment data with low memory footprint.\n\n### Backend - AWS Lambda / API Gateway\n\nThe backend had to take care of a few simple types of requests:\n\n* track an event - receive a (HTTP) request with some json data -- experiment name, variant, goal and uuid, and then push it to redis.\n* extract the counters for a specific experiment, or all experiments into some json that can be presented on the dashboard.\n\n### Dashboard\n\nNew! access your dashboard with `gimel dashboard`\n\n![](https://s3.amazonaws.com/gingerlime-images/gimel-dashboard.gif \"gimel dashboard\")\n\n## How does tracking work?\n\nCheck out [Alephbet](https://github.com/Alephbet/alephbet).\n\n## Command Reference\n\n* `gimel --help` - prints a help screen.\n* `gimel configure` - opens your editor so you can edit the config.json file. Use it to update your redis settings.\n* `gimel preflight` - runs preflight checks to make sure you have access to AWS, redis etc.\n* `gimel deploy` - deploys the code and configs to AWS automatically.\n\n## Advanced\n\n### custom API endpoints\n\nIf you want to use different API endpoints, you can add your own `extra_wiring` into the `config.json` file (e.g. using\n`gimel configure`).\n\nfor example, this will add a `.../prod/my_tracking_endpoint` URL pointing to the `gimel-track` lambda:\n\n```json\n{\n \"redis\": {\n ...\n },\n \"extra_wiring\": [\n {\n \"lambda\": {\n \"FunctionName\": \"gimel-track\",\n \"Handler\": \"gimel.track\",\n \"MemorySize\": 128,\n \"Timeout\": 3\n },\n \"api_gateway\": {\n \"pathPart\": \"my_tracking_endpoint\",\n \"method\": {\n \"httpMethod\": \"GET\",\n \"apiKeyRequired\": false,\n \"requestParameters\": {\n \"method.request.querystring.namespace\": false,\n \"method.request.querystring.experiment\": false,\n \"method.request.querystring.variant\": false,\n \"method.request.querystring.event\": false,\n \"method.request.querystring.uuid\": false\n }\n }\n }\n }\n ]\n}\n```\n\nsee [WIRING](https://github.com/Alephbet/gimel/blob/52830737835119692f3a3c157fe090adabf58150/gimel/deploy.py#L81)\n\n## Privacy, Ad-blockers (GDPR etc)\n\nGimel provides a backend for A/B test experiment data. This data is aggregated and does *not* contain any personal information at all. It merely stores the total number of actions with a certain variation against another.\n\nAs such, Gimel should meet privacy requirements of GDPR and similar privacy regulations.\n\nNevertheless, important disclaimers:\n\n* I am not a lawyer, and it's entirely up to you if and how you decide to use Gimel. Please check with your local regulations and get legal advice to decide on your own.\n* Some ad-blockers are extra vigilent, and would block requests with the `track` keyword in the URL. Therefore, track requests to Gimel might be blocked by default. As the library author, I make no attempts to conceal the fact that a form of tracking is necessary to run A/B tests, even if I believe it to be respecting privacy.\n* Users who decide to use Gimel can, if they wish, assign a different endpoint that might get past ad-blockers, but that's entirely up to them. see [custom API endpoints](#custom-api-endpoints) on how this can be achieved.\n* As with almost any tool, it can be use for good or evil. Some A/B tests can be seen as manipulative, unfair or otherwise illegitimate. Again, use your own moral compass to decide whether or not it's ok to use A/B testing, or specific A/B tests.\n\n## License\n\nGimel is distributed under the MIT license. All 3rd party libraries and components are distributed under their\nrespective license terms.\n\n```\nCopyright (C) 2016 Yoav Aner\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated\ndocumentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the\nrights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit\npersons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the\nSoftware.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE\nWARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\nOTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n```\n\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/Alephbet/gimel", "keywords": "", "license": "", "maintainer": "", "maintainer_email": "", "name": "gimel", "package_url": "https://pypi.org/project/gimel/", "platform": "", "project_url": "https://pypi.org/project/gimel/", "project_urls": { "Homepage": "https://github.com/Alephbet/gimel" }, "release_url": "https://pypi.org/project/gimel/1.4.0/", "requires_dist": [ "awscli (>=1.10.21)", "jmespath (>=0.9.0)", "boto3 (>=1.3.0)", "click (>=6.6)", "redis (>=2.10.5)" ], "requires_python": "", "summary": "Run your own A/B testing backend on AWS Lambda", "version": "1.4.0" }, "last_serial": 5694281, "releases": { "1.0.0": [ { "comment_text": "", "digests": { "md5": "864e6f561db67d9db5690a1236e0d029", "sha256": "66ba33e5873b8691ede5afd632f61c220aeffecc1a6ca9d97b1c6e2787dd5baf" }, "downloads": -1, "filename": "gimel-1.0.0.tar.gz", "has_sig": false, "md5_digest": "864e6f561db67d9db5690a1236e0d029", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 113813, "upload_time": "2016-05-07T15:27:04", "url": "https://files.pythonhosted.org/packages/0f/db/26a06f2d6888666134f5e1d3fd86d7060c87e2267364cb07a1b77f0ca07a/gimel-1.0.0.tar.gz" } ], "1.0.1": [ { "comment_text": "", "digests": { "md5": "39372c286fdf1eae3065062617af0a70", "sha256": "f8d04b70eb3775dcf844ccddd185317173b3d1c8bbeb01ecbe3459ea7c371aa6" }, "downloads": -1, "filename": "gimel-1.0.1.tar.gz", "has_sig": false, "md5_digest": "39372c286fdf1eae3065062617af0a70", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 113781, "upload_time": "2016-05-09T15:50:39", "url": "https://files.pythonhosted.org/packages/ea/eb/b54ebbf14e2e4aff00bdbfc2051b6a531777fd9131bb829045b087b72b38/gimel-1.0.1.tar.gz" } ], "1.0.2": [ { "comment_text": "", "digests": { "md5": "a7cb8a8d11988ad4dda8960c7984be53", "sha256": "5a5ba7b88090582160031b9492c68a08cbdac729533c094b80d2902d6007fb98" }, "downloads": -1, "filename": "gimel-1.0.2.tar.gz", "has_sig": false, "md5_digest": "a7cb8a8d11988ad4dda8960c7984be53", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 113941, "upload_time": "2016-05-09T15:57:45", "url": "https://files.pythonhosted.org/packages/b8/70/0a625a0a26765a661ed6cd24c01010a5949336327ac91613d8aa1a253ec7/gimel-1.0.2.tar.gz" } ], "1.0.3": [ { "comment_text": "", "digests": { "md5": "739dbb36338bb4ab9f163131e88c0605", "sha256": "ebe9cc9d18df97fc89e78488abd935ccabbece78713f4da3f5fd7ae425719cb8" }, "downloads": -1, "filename": "gimel-1.0.3.tar.gz", "has_sig": false, "md5_digest": "739dbb36338bb4ab9f163131e88c0605", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 61939, "upload_time": "2016-05-11T12:17:06", "url": "https://files.pythonhosted.org/packages/ca/3f/7cd526f7de47b255c909ffce0f9937f9d98e7c67ca146f1b64cd0ba69d95/gimel-1.0.3.tar.gz" } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "f9e5460caae877ffe18dbd16ff861fa7", "sha256": "9c26591d16c374f100498873be3b4212982e3bd77e3678dffc6869f413f96b04" }, "downloads": -1, "filename": "gimel-1.1.0.tar.gz", "has_sig": false, "md5_digest": "f9e5460caae877ffe18dbd16ff861fa7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 62345, "upload_time": "2016-06-08T19:46:20", "url": "https://files.pythonhosted.org/packages/14/a2/82085787b778d422ee2c7beb0a8f93cfba5b6106501e432a153c061739f1/gimel-1.1.0.tar.gz" } ], "1.2.0": [ { "comment_text": "", "digests": { "md5": "a2266df136a67cc44ded0c65f44d5329", "sha256": "17e05d4b635bb91b003e644d278871fbef7aa16e794c0e1c91571ce0c7c6684b" }, "downloads": -1, "filename": "gimel-1.2.0.tar.gz", "has_sig": false, "md5_digest": "a2266df136a67cc44ded0c65f44d5329", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 110620, "upload_time": "2016-07-09T16:03:35", "url": "https://files.pythonhosted.org/packages/77/92/8098d521a42a249486593957e3a45d8522ec34e69b49a64f884f275e2ab4/gimel-1.2.0.tar.gz" } ], "1.2.1": [ { "comment_text": "", "digests": { "md5": "875a895579bdbf09609539ab37f254aa", "sha256": "73add9bb65e42e602b0d7b09fe2d7a16f23f25a1d18e7ebd0d5a6d517a09988d" }, "downloads": -1, "filename": "gimel-1.2.1.tar.gz", "has_sig": false, "md5_digest": "875a895579bdbf09609539ab37f254aa", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 110629, "upload_time": "2016-09-24T09:01:56", "url": "https://files.pythonhosted.org/packages/a1/8d/8065802074d3196db2a669a2d7657719de10bba25015f824ef0c0d58abfd/gimel-1.2.1.tar.gz" } ], "1.2.2": [ { "comment_text": "", "digests": { "md5": "e7e83f3727e5bea47496d0f2d653717e", "sha256": "5d06726b78025f68e08e816dd212966678b6ce80d77b0333a502a25980f8c0f4" }, "downloads": -1, "filename": "gimel-1.2.2-py2-none-any.whl", "has_sig": false, "md5_digest": "e7e83f3727e5bea47496d0f2d653717e", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 131931, "upload_time": "2017-11-05T15:00:20", "url": "https://files.pythonhosted.org/packages/6c/c1/74a15c2a4ca2b45b78f3e18544af16fd2fb15ec586c14fbfacedf2c0bd51/gimel-1.2.2-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b2e3e692ad19324805c0ba01e6961841", "sha256": "f5ed133fc1ea2d9aab22fb6669c273ae4e4a3b35968c35528e68c41d38f88c5a" }, "downloads": -1, "filename": "gimel-1.2.2.tar.gz", "has_sig": false, "md5_digest": "b2e3e692ad19324805c0ba01e6961841", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 110640, "upload_time": "2017-11-05T15:00:22", "url": "https://files.pythonhosted.org/packages/1b/af/b2628d7b102e251c14d492c46dc63cd6840f43947df29487a70be53d9fb7/gimel-1.2.2.tar.gz" } ], "1.2.3": [ { "comment_text": "", "digests": { "md5": "9aed48f62acf1e4d961b40189496cec3", "sha256": "e2697d9ee510ba115c585821a10d548bdf1c83bcbc2906b9b9df767723f59338" }, "downloads": -1, "filename": "gimel-1.2.3-py2-none-any.whl", "has_sig": false, "md5_digest": "9aed48f62acf1e4d961b40189496cec3", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 131980, "upload_time": "2017-11-11T08:36:29", "url": "https://files.pythonhosted.org/packages/9e/d3/e3192a2e98e82a4f878086c7a878e8eb99dfe8cb09da20f60f9755271cc6/gimel-1.2.3-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "53e7b3b65584a6779724eed3692704b3", "sha256": "0be87afb7c61a9536f353dbaee82517f64e8018640102751106f2de498c18f24" }, "downloads": -1, "filename": "gimel-1.2.3.tar.gz", "has_sig": false, "md5_digest": "53e7b3b65584a6779724eed3692704b3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 110693, "upload_time": "2017-11-11T08:36:31", "url": "https://files.pythonhosted.org/packages/3f/d6/6c66f7dba5ace705212b4605111fce480d6ea35672fe8e933d50612ccb70/gimel-1.2.3.tar.gz" } ], "1.2.4": [ { "comment_text": "", "digests": { "md5": "3141961372a38b26d365fbc897f8799e", "sha256": "e7a490b70d14996b335a94f73adb92221f891efe759ab0bacd14922206ff3ab6" }, "downloads": -1, "filename": "gimel-1.2.4-py2-none-any.whl", "has_sig": false, "md5_digest": "3141961372a38b26d365fbc897f8799e", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 131987, "upload_time": "2019-02-06T05:34:18", "url": "https://files.pythonhosted.org/packages/12/75/d900fabc15fb18304d37ad5b5df97bdef6eb87acb1b091a17b16c5a4d6ff/gimel-1.2.4-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "13a81fac5625c2c08d300704f68778b7", "sha256": "e272cffe56d6481fe10877a2edb3da2ff3cc856a1b5d4598d2fb6d40cb09c5df" }, "downloads": -1, "filename": "gimel-1.2.4.tar.gz", "has_sig": false, "md5_digest": "13a81fac5625c2c08d300704f68778b7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 110706, "upload_time": "2019-02-06T05:34:20", "url": "https://files.pythonhosted.org/packages/4f/72/e441f9ce2cb3103c356ad11f662efa101ed1793426c30f23dee735518814/gimel-1.2.4.tar.gz" } ], "1.3.0": [ { "comment_text": "", "digests": { "md5": "381da4e828de334f5c22e8ad24e3f35d", "sha256": "a7d5275a94406efb3ba4c7a32a81eda2101ec569dd96865472c6a8646b04991e" }, "downloads": -1, "filename": "gimel-1.3.0-py2-none-any.whl", "has_sig": false, "md5_digest": "381da4e828de334f5c22e8ad24e3f35d", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 132083, "upload_time": "2019-02-13T07:13:42", "url": "https://files.pythonhosted.org/packages/84/3b/e5c01b531008580d4d36e09c3b8212868036880792c19e47f8ed7818e2a0/gimel-1.3.0-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "041ffc5fe6fefc49ffdfeadf1f67c271", "sha256": "f104cf1b42f3140def35a7758748323b1c4a7b1ba3999c4ba09e6b5c6841c589" }, "downloads": -1, "filename": "gimel-1.3.0.tar.gz", "has_sig": false, "md5_digest": "041ffc5fe6fefc49ffdfeadf1f67c271", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 110779, "upload_time": "2019-02-13T07:13:52", "url": "https://files.pythonhosted.org/packages/89/09/ea195820d4502bc7406ac56a078886581c0307c39138aec52cc1b4eaf649/gimel-1.3.0.tar.gz" } ], "1.3.1": [ { "comment_text": "", "digests": { "md5": "0c3c2607f64bb0f85979d243e2bdb240", "sha256": "164046c5a717abe7d10a434cf3297df5f0f4cfd47f677bed3dfc9760e0de8691" }, "downloads": -1, "filename": "gimel-1.3.1-py3-none-any.whl", "has_sig": false, "md5_digest": "0c3c2607f64bb0f85979d243e2bdb240", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 180106, "upload_time": "2019-07-06T18:02:23", "url": "https://files.pythonhosted.org/packages/ef/2a/728e72c302f6b67512042e53ce53aaaf51517f8f11b64f20d480f2c0fa31/gimel-1.3.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d20f85695f60f572d17d486f8608a9d5", "sha256": "6f0dd3364de8de6a3fd56c40c968fff2afb6920f4db35d04ae299ca4c35d8be9" }, "downloads": -1, "filename": "gimel-1.3.1.tar.gz", "has_sig": false, "md5_digest": "d20f85695f60f572d17d486f8608a9d5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 158172, "upload_time": "2019-07-06T18:02:25", "url": "https://files.pythonhosted.org/packages/5e/29/0406362c9efcc22b892ee750e8dd244f318689b1d8ba2a47e2618862aa22/gimel-1.3.1.tar.gz" } ], "1.3.2": [ { "comment_text": "", "digests": { "md5": "fbb9b4c461c179181384bea30b63570a", "sha256": "ae9869313ec7ef8e060a1b547f4553ee2b2149093e209ea932a615864885e916" }, "downloads": -1, "filename": "gimel-1.3.2-py3-none-any.whl", "has_sig": false, "md5_digest": "fbb9b4c461c179181384bea30b63570a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 180111, "upload_time": "2019-07-06T18:15:12", "url": "https://files.pythonhosted.org/packages/1e/6b/5945b42b63bcc22803c9f2522dd9177cd2ad781205c0b962bbbe206d1ab6/gimel-1.3.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ce68d4c0d4e1a51998ef2d03c9ec4ec4", "sha256": "ce792e7c7eded2e68fdac43f824332d608e25a7a953e54150149628fbda12b68" }, "downloads": -1, "filename": "gimel-1.3.2.tar.gz", "has_sig": false, "md5_digest": "ce68d4c0d4e1a51998ef2d03c9ec4ec4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 158183, "upload_time": "2019-07-06T18:15:14", "url": "https://files.pythonhosted.org/packages/89/d0/3c8479e5bb31a3605ae17eec0a6dd520a095bb6a642862c96107aa1c2724/gimel-1.3.2.tar.gz" } ], "1.3.3": [ { "comment_text": "", "digests": { "md5": "76174215e1dd6c9c2e6c56e8cd8482be", "sha256": "5e1b9e1920a70b0791815947f2c6b907969e89aaedc14bccca67acac3b723081" }, "downloads": -1, "filename": "gimel-1.3.3-py3-none-any.whl", "has_sig": false, "md5_digest": "76174215e1dd6c9c2e6c56e8cd8482be", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 180128, "upload_time": "2019-07-07T05:02:46", "url": "https://files.pythonhosted.org/packages/29/7f/bb4feea646c95820f32d5f77c1e86c3545626ce4b5692bdce90b3e88344c/gimel-1.3.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "953285a62871bc073deedcf905e819ec", "sha256": "0bf894a50f420ed7f130cfed03bdf2123d25385ef8682df783745af3dd03f53d" }, "downloads": -1, "filename": "gimel-1.3.3.tar.gz", "has_sig": false, "md5_digest": "953285a62871bc073deedcf905e819ec", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 158200, "upload_time": "2019-07-07T05:02:48", "url": "https://files.pythonhosted.org/packages/b1/9f/077b9c93687e4f64279acf521ea888ad3365dee313d75290585a1a4f06d6/gimel-1.3.3.tar.gz" } ], "1.4.0": [ { "comment_text": "", "digests": { "md5": "8aeeb9ce0612a8046f17f419c24853e2", "sha256": "c79c6edc17007aea437bd7610b11bdf226906512c59186f5d1090b33fa96d010" }, "downloads": -1, "filename": "gimel-1.4.0-py3-none-any.whl", "has_sig": false, "md5_digest": "8aeeb9ce0612a8046f17f419c24853e2", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 181423, "upload_time": "2019-08-18T11:25:26", "url": "https://files.pythonhosted.org/packages/97/0a/148251cac614f3dc599fc4818f9d4dcdec4d4663f2289e4fc7384abff3dc/gimel-1.4.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "51f93f979d2db0db08b061fde5f6a5ca", "sha256": "cf4ab01e6785ca4a518ee388b61d03297253daa630b6e7afa658bc2cc92b7702" }, "downloads": -1, "filename": "gimel-1.4.0.tar.gz", "has_sig": false, "md5_digest": "51f93f979d2db0db08b061fde5f6a5ca", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 160415, "upload_time": "2019-08-18T11:25:29", "url": "https://files.pythonhosted.org/packages/d3/cf/28f51ff3b545568a48b50587ef55b291cccdae8e1c80702760154c4874ed/gimel-1.4.0.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "8aeeb9ce0612a8046f17f419c24853e2", "sha256": "c79c6edc17007aea437bd7610b11bdf226906512c59186f5d1090b33fa96d010" }, "downloads": -1, "filename": "gimel-1.4.0-py3-none-any.whl", "has_sig": false, "md5_digest": "8aeeb9ce0612a8046f17f419c24853e2", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 181423, "upload_time": "2019-08-18T11:25:26", "url": "https://files.pythonhosted.org/packages/97/0a/148251cac614f3dc599fc4818f9d4dcdec4d4663f2289e4fc7384abff3dc/gimel-1.4.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "51f93f979d2db0db08b061fde5f6a5ca", "sha256": "cf4ab01e6785ca4a518ee388b61d03297253daa630b6e7afa658bc2cc92b7702" }, "downloads": -1, "filename": "gimel-1.4.0.tar.gz", "has_sig": false, "md5_digest": "51f93f979d2db0db08b061fde5f6a5ca", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 160415, "upload_time": "2019-08-18T11:25:29", "url": "https://files.pythonhosted.org/packages/d3/cf/28f51ff3b545568a48b50587ef55b291cccdae8e1c80702760154c4874ed/gimel-1.4.0.tar.gz" } ] }