{ "info": { "author": "Matteo Cafasso", "author_email": "noxdafox@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Intended Audience :: Developers", "License :: OSI Approved :: BSD License", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 3", "Programming Language :: Python :: Implementation :: PyPy" ], "description": "CLIPS Python bindings\n=====================\n\nPython CFFI_ bindings for the \u2018C\u2019 Language Integrated Production System CLIPS_ 6.31.\n\n:Source: https://github.com/noxdafox/clipspy\n:Documentation: https://clipspy.readthedocs.io\n:Download: https://pypi.python.org/pypi/clipspy\n\n|travis badge| |docs badge|\n\n.. |travis badge| image:: https://travis-ci.org/noxdafox/clipspy.svg?branch=master\n :target: https://travis-ci.org/noxdafox/clipspy\n :alt: Build Status\n.. |docs badge| image:: https://readthedocs.org/projects/clipspy/badge/?version=latest\n :target: http://clipspy.readthedocs.io/en/latest/?badge=latest\n :alt: Documentation Status\n\n\nInitially developed at NASA\u2019s Johnson Space Center, CLIPS is a rule-based programming language useful for creating expert and production systems where a heuristic solution is easier to implement and maintain than an imperative one. CLIPS is designed to facilitate the development of software to model human knowledge or expertise.\n\nCLIPSPy brings CLIPS capabilities within the Python ecosystem.\n\nInstallation\n------------\n\nLinux\n+++++\n\nOn Linux, CLIPSPy is packaged for `x86_64` architectures as a wheel according to PEP-513_ guidelines.\nMost of the distributions should be supported.\n\n.. code:: bash\n\n $ [sudo] pip install clipspy\n\nWindows\n+++++++\n\nCLIPSPy comes as a wheel for most of the Python versions and architectures.\n\n.. code:: batch\n\n > pip install clipspy\n\nBuilding from sources\n+++++++++++++++++++++\n\nThe provided Makefile takes care of retrieving the CLIPS source code and compiling the Python bindings together with it.\n\n.. code:: bash\n\n $ make\n $ sudo make install\n\nPlease check the documentation_ for more information regarding building CLIPSPy from sources.\n\nExample\n-------\n\n.. code:: python\n\n from clips import Environment, Symbol\n\n environment = Environment()\n\n # load constructs into the environment\n environment.load('constructs.clp')\n\n # assert a fact as string\n environment.assert_string('(a-fact)')\n\n # retrieve a fact template\n template = environment.find_template('a-fact')\n\n # create a new fact from the template\n fact = template.new_fact()\n\n # implied (ordered) facts are accessed as lists\n fact.append(42)\n fact.extend((\"foo\", \"bar\"))\n\n # assert the fact within the environment\n fact.assertit()\n\n # retrieve another fact template\n template = environment.find_template('another-fact')\n fact = template.new_fact()\n\n # template (unordered) facts are accessed as dictionaries\n fact[\"slot-name\"] = Symbol(\"foo\")\n\n fact.assertit()\n\n # execute the activations in the agenda\n environment.run()\n\n.. _CLIPS: http://www.clipsrules.net/\n.. _CFFI: https://cffi.readthedocs.io/en/latest/index.html\n.. _PEP-513: https://www.python.org/dev/peps/pep-0513/\n.. _documentation: https://clipspy.readthedocs.io\n\n\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/noxdafox/clipspy", "keywords": "clips python cffi expert-system", "license": "BSD", "maintainer": "", "maintainer_email": "", "name": "clipspy", "package_url": "https://pypi.org/project/clipspy/", "platform": "", "project_url": "https://pypi.org/project/clipspy/", "project_urls": { "Homepage": "https://github.com/noxdafox/clipspy" }, "release_url": "https://pypi.org/project/clipspy/0.3.3/", "requires_dist": [ "cffi (>=1.0.0)", "enum34; python_version<'3'" ], "requires_python": "", "summary": "CLIPS Python bindings", "version": "0.3.3" }, "last_serial": 5972307, "releases": { "0.0.1": [ { "comment_text": "", "digests": { "md5": "1258eb52346dad15933417240a58075d", "sha256": "8df2656b4b3a0f9bb3fdddfce38ccafb22b3b5e807c1baf882a8623c39b48a7b" }, "downloads": -1, "filename": "clipspy-0.0.1.tar.gz", "has_sig": false, "md5_digest": "1258eb52346dad15933417240a58075d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13143, "upload_time": "2017-10-05T18:46:00", "url": "https://files.pythonhosted.org/packages/3a/4c/675105a0b70c815048fea1dd52cf26b6ab268e920e87a2504daaa0fac34f/clipspy-0.0.1.tar.gz" } ], "0.0.2": [ { "comment_text": "", "digests": { "md5": "f8080044555379cbe8960e17d5d812b2", "sha256": "036f92f4aeaa04ad240d1f1df128bba1badd5b21928e3dd05cba31f1042729b2" }, "downloads": -1, "filename": "clipspy-0.0.2.tar.gz", "has_sig": false, "md5_digest": "f8080044555379cbe8960e17d5d812b2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14948, "upload_time": "2017-10-05T18:56:53", "url": "https://files.pythonhosted.org/packages/86/d2/3b1b7f6e372451aa894677c67df140907ef6a460a0605b55aabb64c21eaa/clipspy-0.0.2.tar.gz" } ], "0.0.3": [ { "comment_text": "", "digests": { "md5": "2fb14143dc4d326dc3c80fd2cda652fd", "sha256": "ea4b510204781a4c754cac9508f3920f6c555078c3d59253914e6eb8a5e3f32f" }, "downloads": -1, "filename": "clipspy-0.0.3.tar.gz", "has_sig": false, "md5_digest": "2fb14143dc4d326dc3c80fd2cda652fd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15332, "upload_time": "2017-10-05T19:02:23", "url": "https://files.pythonhosted.org/packages/61/6e/55bacfd43957abcfaa26c4ce047b1a37ef11ae8973fbfd1b9bc27853fd53/clipspy-0.0.3.tar.gz" } ], "0.0.4": [ { "comment_text": "", "digests": { "md5": "3a97f52a712d34a084b9437c7f8130f6", "sha256": "45c23c020371d7b8db1a58da4d696f9653067c2a92c57732167bed84cc493446" }, "downloads": -1, "filename": "clipspy-0.0.4.tar.gz", "has_sig": false, "md5_digest": "3a97f52a712d34a084b9437c7f8130f6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15560, "upload_time": "2017-10-05T19:40:50", "url": "https://files.pythonhosted.org/packages/37/2f/83a6cc1f2c2415c5cfb85bcde0fb3b900c5b952fb55714a1e7ea58391c3b/clipspy-0.0.4.tar.gz" } ], "0.0.5": [ { "comment_text": "", "digests": { "md5": "0a243e8b317bdc273c70e4b74b605a21", "sha256": "d378fbd6135abada614e09268ee6974eb0bc3e31c669d6593f5035edb28deedd" }, "downloads": -1, "filename": "clipspy-0.0.5.tar.gz", "has_sig": false, "md5_digest": "0a243e8b317bdc273c70e4b74b605a21", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15566, "upload_time": "2017-10-05T20:30:32", "url": "https://files.pythonhosted.org/packages/e4/bb/0ee022eeda456cfe2cf7581a8708830ab23fc1f5d63918f2feac83e89815/clipspy-0.0.5.tar.gz" } ], "0.0.6": [ { "comment_text": "", "digests": { "md5": "41cef750ca19ba0fb3a28bf0e67f7adb", "sha256": "e00d94f58e10c5b33513907f9424515f50b720e879d5d9a0ce31944f1d37d72c" }, "downloads": -1, "filename": "clipspy-0.0.6.tar.gz", "has_sig": false, "md5_digest": "41cef750ca19ba0fb3a28bf0e67f7adb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18825, "upload_time": "2017-10-05T20:36:51", "url": "https://files.pythonhosted.org/packages/da/67/dafbaa6ba7345eb7c5e267887156db14734dc89a67976161eb5d9208642c/clipspy-0.0.6.tar.gz" } ], "0.0.7": [ { "comment_text": "", "digests": { "md5": "7add85d0cb8f1b94021582a259cb5e96", "sha256": "9bf51b6fefd7f32bebca550e6df45ae918360d7dfb35f12709327d2479bed5ca" }, "downloads": -1, "filename": "clipspy-0.0.7.tar.gz", "has_sig": false, "md5_digest": "7add85d0cb8f1b94021582a259cb5e96", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18812, "upload_time": "2017-10-05T20:44:48", "url": "https://files.pythonhosted.org/packages/9a/d8/e484335c34c3391a1bc2ef8df8a15f3ba07f2fb9514ebec967ea43823289/clipspy-0.0.7.tar.gz" } ], "0.0.8": [ { "comment_text": "", "digests": { "md5": "8a39a1df9d0fc5e05f101c295a2c92cb", "sha256": "b5c3ea6e1e55ec78346c89bbfb5d7b0d4bdd668307746905354aca5d9df45626" }, "downloads": -1, "filename": "clipspy-0.0.8.tar.gz", "has_sig": false, "md5_digest": "8a39a1df9d0fc5e05f101c295a2c92cb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20593, "upload_time": "2017-10-06T23:32:33", "url": "https://files.pythonhosted.org/packages/cb/69/039643da1b88cea272a1fd111b961c88c2c75ca1555ea2c3c4bd5e96d2cf/clipspy-0.0.8.tar.gz" } ], "0.0.9": [ { "comment_text": "", "digests": { "md5": "e5e5e0aa14855076ed487ba8496214a7", "sha256": "af1cc20c0aa1b9937b54f566fddbdd2dfec265316507bb4ead22124a50289394" }, "downloads": -1, "filename": "clipspy-0.0.9.tar.gz", "has_sig": false, "md5_digest": "e5e5e0aa14855076ed487ba8496214a7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22579, "upload_time": "2017-10-06T23:39:24", "url": "https://files.pythonhosted.org/packages/e0/4a/f6734bcb4d3ab1bba026bb9793a44719842d706925a71466e252e3334cb0/clipspy-0.0.9.tar.gz" } ], "0.1.0": [ { "comment_text": "", "digests": { "md5": "6a6c6e830722d15132181e7fb73fb24c", "sha256": "e547d4e8f9b2a27b6d2ff1beb1a07d6cd189bde7bc1588f1ea1d5f8e52a15f45" }, "downloads": -1, "filename": "clipspy-0.1.0.tar.gz", "has_sig": false, "md5_digest": "6a6c6e830722d15132181e7fb73fb24c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20766, "upload_time": "2017-10-14T10:17:44", "url": "https://files.pythonhosted.org/packages/de/73/dc183e509fba42d4186e56edccd27453df0a4913e2403d5e475a32d127d4/clipspy-0.1.0.tar.gz" } ], "0.1.1": [ { "comment_text": "", "digests": { "md5": "1ca692bbde61f15d06258752ba33a7ae", "sha256": "9582460418b5f45c9c7e23f3a2eadb586d6b039e303a097e895ad189878de9c2" }, "downloads": -1, "filename": "clipspy-0.1.1.tar.gz", "has_sig": false, "md5_digest": "1ca692bbde61f15d06258752ba33a7ae", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20851, "upload_time": "2017-10-28T16:45:38", "url": "https://files.pythonhosted.org/packages/05/85/1a489338c1fcbbdb5f785685388a6a69a2d491d7d2726477729cc97d5d3a/clipspy-0.1.1.tar.gz" } ], "0.1.2": [ { "comment_text": "", "digests": { "md5": "3290b95a8710d979581935bb529b2aa8", "sha256": "8a2fb1934c47d526dcc127be6aa88f2c0d4113142744f97827c10abd9312388e" }, "downloads": -1, "filename": "clipspy-0.1.2.tar.gz", "has_sig": false, "md5_digest": "3290b95a8710d979581935bb529b2aa8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20935, "upload_time": "2017-11-11T09:56:25", "url": "https://files.pythonhosted.org/packages/03/cb/1522ef6ac715c35cef48cb12121417f08f44244f7cffb1e08c0c5c5a20bf/clipspy-0.1.2.tar.gz" } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "14694b8245c8d74aa7a03f43804ef801", "sha256": "274a107d31430706716ad74f7fa3d5141729abf1df2382b1b725e6c8d38804c4" }, "downloads": -1, "filename": "clipspy-0.2.0-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "14694b8245c8d74aa7a03f43804ef801", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 416034, "upload_time": "2017-12-01T23:21:18", "url": "https://files.pythonhosted.org/packages/fa/a6/37f632ed4b4129be3acb7485c2d61e4afbde56217ff7e24b454b3016dfd5/clipspy-0.2.0-cp35-cp35m-win32.whl" }, { "comment_text": "", "digests": { "md5": "c385747b8cbefc6bd95366f7aeb52ce0", "sha256": "edb80dd3ecd10c5b9c5360556cdebcaa80555fd8c0d8116452fda4b2653b3be9" }, "downloads": -1, "filename": "clipspy-0.2.0-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "c385747b8cbefc6bd95366f7aeb52ce0", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 478061, "upload_time": "2017-12-01T23:31:08", "url": "https://files.pythonhosted.org/packages/f0/77/88a1b2944d348942a30ef7f336d7abec6d606c7691a99300ae871110f2b7/clipspy-0.2.0-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "2d9325ee4a02e8701a3763f1444277a2", "sha256": "f02c00387c33ac8454e3d49ae99a5348418ed7483271ed8ecc0e52bb1938268e" }, "downloads": -1, "filename": "clipspy-0.2.0-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "2d9325ee4a02e8701a3763f1444277a2", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 415907, "upload_time": "2017-12-01T23:34:17", "url": "https://files.pythonhosted.org/packages/45/b2/cfc4a1623471ea1abb683824bc252d7f04992e65358d8dc227feaf9061f0/clipspy-0.2.0-cp36-cp36m-win32.whl" }, { "comment_text": "", "digests": { "md5": "56eb04f57e2f222df61d7df8d4fc1ffe", "sha256": "ee7e0cc363edbd80d15fec16cb5480a43852fc8ca6b436764067b05bcd79464d" }, "downloads": -1, "filename": "clipspy-0.2.0-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "56eb04f57e2f222df61d7df8d4fc1ffe", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 478065, "upload_time": "2017-12-01T23:40:50", "url": "https://files.pythonhosted.org/packages/0b/20/eccd03477782ab4e3349e79ae3374aaa7fe34f99844c6c8716814c72a520/clipspy-0.2.0-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "db475817b8ba570fd8d573c2f85902d3", "sha256": "09dd2aaed9b7ae232c231cd1b0419f976c0ed2674e0ea7d82b6fc865b65eb6b9" }, "downloads": -1, "filename": "clipspy-0.2.0.tar.gz", "has_sig": false, "md5_digest": "db475817b8ba570fd8d573c2f85902d3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21037, "upload_time": "2017-11-12T22:06:38", "url": "https://files.pythonhosted.org/packages/9a/79/d89abae5c55b73b3524d35d699a91a419efa6022c388a95ff80a3c6b9e87/clipspy-0.2.0.tar.gz" } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "5762b56ebf441201bdee6060d727db7d", "sha256": "ccd2559a64e366ad56637af70253d30a959ee697e13d163637f18f1fbbeecf81" }, "downloads": -1, "filename": "clipspy-0.2.1.tar.gz", "has_sig": false, "md5_digest": "5762b56ebf441201bdee6060d727db7d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21072, "upload_time": "2017-12-08T23:31:47", "url": "https://files.pythonhosted.org/packages/90/2e/2bf3e3e17b07b0b8c49ec339db577395f514eb3331feb23bace11482917d/clipspy-0.2.1.tar.gz" } ], "0.2.2": [ { "comment_text": "", "digests": { "md5": "78369531d5134e4b0d80b214ac0571cf", "sha256": "e5d97c156a832e55745d10d18fddd111899017c82bd7e778187fe30e6a08f95c" }, "downloads": -1, "filename": "clipspy-0.2.2.tar.gz", "has_sig": false, "md5_digest": "78369531d5134e4b0d80b214ac0571cf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21407, "upload_time": "2017-12-10T13:05:58", "url": "https://files.pythonhosted.org/packages/3b/ef/872187ffd77cf5f5a2eafda977a21e195a6b548f80dae8c3819091cc2cf3/clipspy-0.2.2.tar.gz" } ], "0.2.3": [ { "comment_text": "", "digests": { "md5": "94b8832af5441dd6658322640ffd8575", "sha256": "f7901741108c55465e2c73415a65ba36d1aaf2c88d3b537eecdfe097ac5d3ddc" }, "downloads": -1, "filename": "clipspy-0.2.3.tar.gz", "has_sig": false, "md5_digest": "94b8832af5441dd6658322640ffd8575", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19454, "upload_time": "2017-12-24T17:18:43", "url": "https://files.pythonhosted.org/packages/26/b3/b5956897abcef1ea56f950d47e1ef19a8cd93913a126d1a33af00feb0a76/clipspy-0.2.3.tar.gz" } ], "0.2.4": [ { "comment_text": "", "digests": { "md5": "7288bff9f070faa19041602bfffa31aa", "sha256": "3cca503dd8967fd28489b692c6904da671e1340e1e1a33dd091319c249720e07" }, "downloads": -1, "filename": "clipspy-0.2.4-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "7288bff9f070faa19041602bfffa31aa", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 416153, "upload_time": "2018-08-01T21:03:51", "url": "https://files.pythonhosted.org/packages/fe/eb/a56f741019756d27666cb4730be5078500c53531ef5c6b9e7da02f14a7d8/clipspy-0.2.4-cp35-cp35m-win32.whl" }, { "comment_text": "", "digests": { "md5": "ad9bb3220015cc84b7dcd2f065aece1d", "sha256": "ff265a63e6fe92629196cc9f81808e1fc08c03a35cdcb7d2ed480ae97fce267a" }, "downloads": -1, "filename": "clipspy-0.2.4-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "ad9bb3220015cc84b7dcd2f065aece1d", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 478232, "upload_time": "2018-08-01T21:03:53", "url": "https://files.pythonhosted.org/packages/46/75/d962b8d6ca7ecfdebe6b8db58a3dda12e39f79722ba3dd73d6783c96de71/clipspy-0.2.4-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "13372de6781ab44213103e6c00039b07", "sha256": "e5c2ea115fd4184ddf3e24b78a91fd979d8917f09c5c594d91cfdc874ec5afb9" }, "downloads": -1, "filename": "clipspy-0.2.4-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "13372de6781ab44213103e6c00039b07", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 416070, "upload_time": "2018-08-01T21:03:55", "url": "https://files.pythonhosted.org/packages/da/e5/4097a748bcfa48d890a10fadb3e96983ffd20bb9908a29c5e09d37949692/clipspy-0.2.4-cp36-cp36m-win32.whl" }, { "comment_text": "", "digests": { "md5": "7bf7bd3b56b1c6da4776c249fa200060", "sha256": "8f649c69b4ed5b012b12a48ba95c72cc61878aaafa0925ac1d53df54754cccf1" }, "downloads": -1, "filename": "clipspy-0.2.4-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "7bf7bd3b56b1c6da4776c249fa200060", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 476700, "upload_time": "2018-08-01T21:03:58", "url": "https://files.pythonhosted.org/packages/4b/f9/d8e66953ecc18c323aae5340e5f3ac636a1f6b267890f9ac08c0f68a018b/clipspy-0.2.4-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "fd6f1e5a84c87e87e8429c8d51c3a4c5", "sha256": "2243e3ddc9bcf8f198ef94f941bbfe8265812f59acd07fda5000008378527480" }, "downloads": -1, "filename": "clipspy-0.2.4-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "fd6f1e5a84c87e87e8429c8d51c3a4c5", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 414383, "upload_time": "2018-07-30T20:47:00", "url": "https://files.pythonhosted.org/packages/8f/a1/92cc82047b7c2b646015b11d91862ae7274eda9fccd1723e04495cf3cd7d/clipspy-0.2.4-cp37-cp37m-win32.whl" }, { "comment_text": "", "digests": { "md5": "44b6f501f1130acb9da14af56afeb81d", "sha256": "96caf6d0843ba35aaaaee4eb7714241ba4249ad45201ae7469a015de8612e1e5" }, "downloads": -1, "filename": "clipspy-0.2.4-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "44b6f501f1130acb9da14af56afeb81d", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 476697, "upload_time": "2018-07-30T20:47:03", "url": "https://files.pythonhosted.org/packages/e2/66/f31407774ee4dc486de406cdc84dbaf32af1a41037ebfb3c5c22d950d6e2/clipspy-0.2.4-cp37-cp37m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "f6bb2e586e6a2f95decf73bbf31c06ae", "sha256": "beb27c59aaf65cd7031d5174cef822102abed207665152597ece7a5d5f0708ba" }, "downloads": -1, "filename": "clipspy-0.2.4.tar.gz", "has_sig": false, "md5_digest": "f6bb2e586e6a2f95decf73bbf31c06ae", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19713, "upload_time": "2017-12-25T17:57:19", "url": "https://files.pythonhosted.org/packages/d2/e9/5c3b0e9b6f504c24de16f2a37bea8fe872e9f66edcf1fea2b7d235a310cd/clipspy-0.2.4.tar.gz" } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "29362bbeba5106988a5c6b11a38eb676", "sha256": "a44da627ae01f9a5c53eef6755cac19986d4ed80e0ca7936beedc7837fc94142" }, "downloads": -1, "filename": "clipspy-0.3.0-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "29362bbeba5106988a5c6b11a38eb676", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 416276, "upload_time": "2018-10-21T20:03:58", "url": "https://files.pythonhosted.org/packages/d8/c2/888f03a5dbb96bee1bcff3ebd5a3e88f444fe5972a42cae39149b467b54b/clipspy-0.3.0-cp35-cp35m-win32.whl" }, { "comment_text": "", "digests": { "md5": "0f090f075fffd6a01d2b2968f39e0f2c", "sha256": "cabcfd5ccc9eddf3ed7a644319ed80d4c0add9efadb8602a6901943492cc06cc" }, "downloads": -1, "filename": "clipspy-0.3.0-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "0f090f075fffd6a01d2b2968f39e0f2c", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 478357, "upload_time": "2018-10-21T20:04:00", "url": "https://files.pythonhosted.org/packages/36/fe/3aa6bf9346b36c6a5159e9202025fa440128e7ff7031191c22e368b358b9/clipspy-0.3.0-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "f78ea56df54aa345f7a23a1dded6c2a1", "sha256": "4e28d8ad3ed23638fe8175bf348989d94d653aca29cba20e67ca81ccb9e8390a" }, "downloads": -1, "filename": "clipspy-0.3.0-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "f78ea56df54aa345f7a23a1dded6c2a1", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 416192, "upload_time": "2018-10-21T20:04:02", "url": "https://files.pythonhosted.org/packages/4e/44/d648438ec8ad2ce64fe64a153663651db1b6db69987d22cc3665fd91fdd1/clipspy-0.3.0-cp36-cp36m-win32.whl" }, { "comment_text": "", "digests": { "md5": "50418494ef52b830bd8d61d1dfd85e00", "sha256": "2d5b4fb6e269d05faca4230dfed666352ca8d87e2195805534acce9576598233" }, "downloads": -1, "filename": "clipspy-0.3.0-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "50418494ef52b830bd8d61d1dfd85e00", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 476826, "upload_time": "2018-10-21T20:04:05", "url": "https://files.pythonhosted.org/packages/0f/c8/ac8386173892d2c28061fb25f9840a62fbd7fc366e9007fb828ff8961991/clipspy-0.3.0-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "14cc5bda4f5e4675a4e537640b711df2", "sha256": "ff5ffb4aca8e49a13735ad654b86009f85b7300e644cdbdeac585a1f7de8ef47" }, "downloads": -1, "filename": "clipspy-0.3.0-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "14cc5bda4f5e4675a4e537640b711df2", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 414510, "upload_time": "2018-10-21T20:04:09", "url": "https://files.pythonhosted.org/packages/57/73/2f1f99189e8b8ac33ea03a54f9cc933aba9f67742b410c374fc9d2f76336/clipspy-0.3.0-cp37-cp37m-win32.whl" }, { "comment_text": "", "digests": { "md5": "2eb617cf6b188b15eeafc41e8abefb94", "sha256": "f27d37685cfaf1f5f038199f49942ec4f10e87fa5dfec3706a999f6a9d546111" }, "downloads": -1, "filename": "clipspy-0.3.0-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "2eb617cf6b188b15eeafc41e8abefb94", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 476822, "upload_time": "2018-10-21T20:04:14", "url": "https://files.pythonhosted.org/packages/66/1c/eb9c005b6878659cf704c6fce0a953873001dae9c937636fc9cb7d78adf9/clipspy-0.3.0-cp37-cp37m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "12a295fe8576de87d7e85d0f472dd9b6", "sha256": "6f28c6e0e331e038181e87118846f2dedcb78b47a07542e68784da5e3e506785" }, "downloads": -1, "filename": "clipspy-0.3.0.tar.gz", "has_sig": false, "md5_digest": "12a295fe8576de87d7e85d0f472dd9b6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21833, "upload_time": "2018-10-20T13:52:55", "url": "https://files.pythonhosted.org/packages/90/8c/10f69c782a54ddbb35a4629f03bcdd1a2610522db5d43415bb30b0707ab8/clipspy-0.3.0.tar.gz" } ], "0.3.1": [ { "comment_text": "", "digests": { "md5": "ced896a1fbeb5e04ab25eefa5fc0202f", "sha256": "740f8e65f34628b3bd1139749572031fc0a4aea1913eed84e84b95a1e8d0880d" }, "downloads": -1, "filename": "clipspy-0.3.1.tar.gz", "has_sig": false, "md5_digest": "ced896a1fbeb5e04ab25eefa5fc0202f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22851, "upload_time": "2019-02-08T16:12:10", "url": "https://files.pythonhosted.org/packages/b2/36/58f51e62e1e2a42e141ecff8f57c51dd6fd394c7af466ebd302cbc3a5793/clipspy-0.3.1.tar.gz" } ], "0.3.2": [ { "comment_text": "", "digests": { "md5": "af7faef357d09fa2365211e3e3775640", "sha256": "6ce31b3fa6f1a1d2fcb64121d3cd0b628a103b3ba7767f168a6e0bacb4047cf2" }, "downloads": -1, "filename": "clipspy-0.3.2-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "af7faef357d09fa2365211e3e3775640", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 687975, "upload_time": "2019-10-14T16:23:30", "url": "https://files.pythonhosted.org/packages/78/e6/e3a0c9ccb6d417968c27e4e93a984b93fa9824f5ef2934b4cdbefa3597e5/clipspy-0.3.2-cp27-cp27m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "f0e31f9fd495ca0779a6c8ae08e7bcdd", "sha256": "b3c0142b7069fc86897c8021ee1f6333a27ad9da9339e36ec29004046e3354be" }, "downloads": -1, "filename": "clipspy-0.3.2-cp27-cp27m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "f0e31f9fd495ca0779a6c8ae08e7bcdd", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 687976, "upload_time": "2019-10-14T16:23:33", "url": "https://files.pythonhosted.org/packages/60/91/8634593f23befa20fbfd5c54bc050e9e72e1e73f9e1f8c0f131cba97b160/clipspy-0.3.2-cp27-cp27m-manylinux2010_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "b4211238bcb4e95c1245d053340c368b", "sha256": "29bce461f4e691dff80f33cc8f31fe6b1b3c3affe88500d0ff5308254028735b" }, "downloads": -1, "filename": "clipspy-0.3.2-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "b4211238bcb4e95c1245d053340c368b", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 687972, "upload_time": "2019-10-14T16:23:36", "url": "https://files.pythonhosted.org/packages/52/14/bb3f79c40bbe4921cd476c2c6a4d1b2d083baf2d51ef3cdbf5a1e81287e0/clipspy-0.3.2-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "d2c35995e4da2f18f99e840d40ad580e", "sha256": "59be4e9314ed64b6f5e22f0b8c3e277852a19935fb48e83c1993dbeaedac391e" }, "downloads": -1, "filename": "clipspy-0.3.2-cp27-cp27mu-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "d2c35995e4da2f18f99e840d40ad580e", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 687974, "upload_time": "2019-10-14T16:23:40", "url": "https://files.pythonhosted.org/packages/49/a5/2085637651ba33a4c9845e516ed6a0104ecd3a61caeee62d9de9d3446b20/clipspy-0.3.2-cp27-cp27mu-manylinux2010_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "aa115aea44922d4f65eae11e3d18f731", "sha256": "f37931c17ceed83ec1e5d934d75ca65a08cb21bb33ef0a314b4e514639bf72b5" }, "downloads": -1, "filename": "clipspy-0.3.2-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "aa115aea44922d4f65eae11e3d18f731", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 684128, "upload_time": "2019-10-14T16:23:43", "url": "https://files.pythonhosted.org/packages/e5/4b/6487a277e6f65e55fd3994a75765eb0f7727e6247e2e85cc6d1c658aea7d/clipspy-0.3.2-cp34-cp34m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "ab8621dda8687d0d9ed161dfc45ed5b8", "sha256": "95680a39706802f1641dad4a7bb529dc64ae62656f1c383b67e77191fc1f6e78" }, "downloads": -1, "filename": "clipspy-0.3.2-cp34-cp34m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "ab8621dda8687d0d9ed161dfc45ed5b8", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 684130, "upload_time": "2019-10-14T16:23:46", "url": "https://files.pythonhosted.org/packages/5b/4f/9c33128c168896c13805c87b20bec9718e7b8d14bd61a60e81ad48a16786/clipspy-0.3.2-cp34-cp34m-manylinux2010_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "7a80a7ac20e8577027b8fafb5e6dceaa", "sha256": "672ebf6a63ab23bdab0b4b758de74e33b7b40d77b85f699201e75785112d4892" }, "downloads": -1, "filename": "clipspy-0.3.2-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "7a80a7ac20e8577027b8fafb5e6dceaa", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 684175, "upload_time": "2019-10-14T16:23:49", "url": "https://files.pythonhosted.org/packages/04/7d/2480a33372db162686f2503cb1eb8540bd70808fe78db90f3bbffc99ff41/clipspy-0.3.2-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "35b81c3c0e4cbf249aedba71ca8f7214", "sha256": "74d33d65012b74d0961331fa75cbf8076550a5eef136f6b1f5e1b32c62c2228c" }, "downloads": -1, "filename": "clipspy-0.3.2-cp35-cp35m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "35b81c3c0e4cbf249aedba71ca8f7214", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 684181, "upload_time": "2019-10-14T16:23:51", "url": "https://files.pythonhosted.org/packages/81/50/3776ae351ed23ab354ac33f5c2d9eef8957c532a805f72699cd4c5e541ea/clipspy-0.3.2-cp35-cp35m-manylinux2010_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "d42e856910b214b9106bd240ea97af49", "sha256": "d641c9d1907102dcf839bd23b52018248ef6a2168fd53cf4b7a2b6e3ae751840" }, "downloads": -1, "filename": "clipspy-0.3.2-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "d42e856910b214b9106bd240ea97af49", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 417559, "upload_time": "2019-02-09T19:40:29", "url": "https://files.pythonhosted.org/packages/0b/5e/c2e33482424e45aed20ff8ef34e211dc1334201690b35d838c7841528b00/clipspy-0.3.2-cp35-cp35m-win32.whl" }, { "comment_text": "", "digests": { "md5": "f78f647fefc6db034597ca96ebc40ad8", "sha256": "804f09d8a1518133bad54220d673f9076887139515d02bcccff0012c9d7eec70" }, "downloads": -1, "filename": "clipspy-0.3.2-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "f78f647fefc6db034597ca96ebc40ad8", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 479636, "upload_time": "2019-02-09T19:40:41", "url": "https://files.pythonhosted.org/packages/b5/e3/582396fa9c4e910276de2199f5a89801a3ff8621cd081f6f2e8cc79f6470/clipspy-0.3.2-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "1e6da3b0b471fdc246de502622dffc3e", "sha256": "b4abec33629174ff316a7cd95a7c1f5f72883eebe16c40c4ac245601ce5518ba" }, "downloads": -1, "filename": "clipspy-0.3.2-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "1e6da3b0b471fdc246de502622dffc3e", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 683745, "upload_time": "2019-10-14T16:23:54", "url": "https://files.pythonhosted.org/packages/94/fc/4097dbc79f4345f50647fd266926dee7757295e9531af6b5220c02755332/clipspy-0.3.2-cp36-cp36m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "29adef881bf4d58fe4b3c2cb4b70083b", "sha256": "5cfc945b839b326b20668a5665d3727cfea120bc4e0b4f59f0daaacf502bf426" }, "downloads": -1, "filename": "clipspy-0.3.2-cp36-cp36m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "29adef881bf4d58fe4b3c2cb4b70083b", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 683749, "upload_time": "2019-10-14T16:23:58", "url": "https://files.pythonhosted.org/packages/6c/3d/2b4d301fed4a92873b20f49f3a76e9f68973ba51269cb9edfad382bb666d/clipspy-0.3.2-cp36-cp36m-manylinux2010_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "722cbe6e6c02fb5fa7da4d417d1ba9dd", "sha256": "23150ee7cf9e168cf8c66d424a16d391f7d6dd387cfeba77a3697edac8084e2a" }, "downloads": -1, "filename": "clipspy-0.3.2-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "722cbe6e6c02fb5fa7da4d417d1ba9dd", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 417474, "upload_time": "2019-02-09T19:40:49", "url": "https://files.pythonhosted.org/packages/eb/e5/4b7f533508906f47534f0248e29a714841673da5895dff4d2d29e77c1af7/clipspy-0.3.2-cp36-cp36m-win32.whl" }, { "comment_text": "", "digests": { "md5": "35df39d9695bd41b2c223f6934b361b1", "sha256": "ab9d491da271154eb8158b182eac8c83f78f9cba57447b94e129bfd15ffee793" }, "downloads": -1, "filename": "clipspy-0.3.2-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "35df39d9695bd41b2c223f6934b361b1", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 477550, "upload_time": "2019-02-09T19:40:54", "url": "https://files.pythonhosted.org/packages/6d/11/54035546d528f4a001950b4c139ab361d35e8649880c8f457b67ad14d3d7/clipspy-0.3.2-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "8329a41e944f65f70747805717e122f8", "sha256": "f3012388af6a04af5f482cdd3fcb4c6b2041b1981731ec1680d385d326a1c4ab" }, "downloads": -1, "filename": "clipspy-0.3.2-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "8329a41e944f65f70747805717e122f8", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 683752, "upload_time": "2019-10-14T16:24:01", "url": "https://files.pythonhosted.org/packages/9a/f3/6aec32c47b633f07401eb17e4a0dfe2c9847a6ace95a1cf4042175ab89b4/clipspy-0.3.2-cp37-cp37m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "ad9d555c35cbb6731f15318c24e873b2", "sha256": "a40933de0b5e676037d72aad00074a4f7b260e0cf21945c77c0062d15ddf3500" }, "downloads": -1, "filename": "clipspy-0.3.2-cp37-cp37m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "ad9d555c35cbb6731f15318c24e873b2", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 683755, "upload_time": "2019-10-14T16:24:05", "url": "https://files.pythonhosted.org/packages/a5/fa/815a8c5b3426cd3f1825886061616c6624cff8678b21c884563f17f27565/clipspy-0.3.2-cp37-cp37m-manylinux2010_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "0fd0750dd8e0c93757bae09f609ea24a", "sha256": "79cb1dfed3a4dfce5573d5a841ef29a673bcb8ec466e85b66c03c40c14e6223d" }, "downloads": -1, "filename": "clipspy-0.3.2-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "0fd0750dd8e0c93757bae09f609ea24a", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 415234, "upload_time": "2019-02-09T19:40:57", "url": "https://files.pythonhosted.org/packages/26/21/99f3771993f7a6538254151b49f1f78fa3afa061270416081f52e5eb1832/clipspy-0.3.2-cp37-cp37m-win32.whl" }, { "comment_text": "", "digests": { "md5": "b99a3cf941c998ed214a38d256a9b237", "sha256": "ede338afb8367fe1f49735350b68f395e66335e2275d49f4ff1db5c9f1d8bdf9" }, "downloads": -1, "filename": "clipspy-0.3.2-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "b99a3cf941c998ed214a38d256a9b237", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 477549, "upload_time": "2019-02-09T19:41:03", "url": "https://files.pythonhosted.org/packages/1a/31/e146e3145f30721ca83f8ae4e85b7e349a8f1ddb54a19c5206d1ae588447/clipspy-0.3.2-cp37-cp37m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "f61ff8d72336ad959a8046994eab4ee7", "sha256": "12ed616aede4917e0743f818dc5f22bd2fde7a9fd150325013010f9451d87ebb" }, "downloads": -1, "filename": "clipspy-0.3.2-cp38-cp38-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "f61ff8d72336ad959a8046994eab4ee7", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 686276, "upload_time": "2019-10-14T16:24:08", "url": "https://files.pythonhosted.org/packages/bc/d0/f501931679699e66fbecc7f6cfc0cbade99f42073e89faf484ed055358b5/clipspy-0.3.2-cp38-cp38-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "4b0243544c8f83bee26b5b7d61acf031", "sha256": "d3d5d50a7cfcbae0406d4be3babb18335966be91847885d46024a894b3da5dc0" }, "downloads": -1, "filename": "clipspy-0.3.2-cp38-cp38-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "4b0243544c8f83bee26b5b7d61acf031", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 686280, "upload_time": "2019-10-14T16:24:11", "url": "https://files.pythonhosted.org/packages/38/c7/03a406493a06b5c222bc2f55d7abf5e8524f03c3a0178de33545256c7778/clipspy-0.3.2-cp38-cp38-manylinux2010_x86_64.whl" } ], "0.3.3": [ { "comment_text": "", "digests": { "md5": "140a3dc779ba62cd37d1da0edcd46484", "sha256": "eb9fce6008abf9a714e73d1f3daecd3430af0231876196a3af4ab6da356d8139" }, "downloads": -1, "filename": "clipspy-0.3.3-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "140a3dc779ba62cd37d1da0edcd46484", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 687979, "upload_time": "2019-10-14T16:38:36", "url": "https://files.pythonhosted.org/packages/cf/fa/99e0cdd9cfb503fe28d9e6c1d1dce434eb757d821c48db74a5e7a6f32735/clipspy-0.3.3-cp27-cp27m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "682f28a36434828414d3cb1c2b24e190", "sha256": "dce73da3b0ca010b0832cfa0d906aabb292631df0d44a4df59b3c86e4aef9a13" }, "downloads": -1, "filename": "clipspy-0.3.3-cp27-cp27m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "682f28a36434828414d3cb1c2b24e190", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 687981, "upload_time": "2019-10-14T16:38:39", "url": "https://files.pythonhosted.org/packages/c5/9b/0c0925b765f0979dd1f7631fa4fd8be6fbd7165707cf6b6dd09332a3b4c7/clipspy-0.3.3-cp27-cp27m-manylinux2010_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "b702eb4f3a85443d325eb79d3e55367c", "sha256": "f8dd5b2b981a7280271326cc38498b4f966814bb3c2e08faac30d87eec2a0297" }, "downloads": -1, "filename": "clipspy-0.3.3-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "b702eb4f3a85443d325eb79d3e55367c", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 687974, "upload_time": "2019-10-14T16:38:43", "url": "https://files.pythonhosted.org/packages/6b/52/ab1c4196a1e1ce835088a91bbda5acf2487d09bf4f5942a9cd7b6843584a/clipspy-0.3.3-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "7304385f8b9348e24af30c68a1628119", "sha256": "93d9e32225ac28d11eb79b6ad8fc9591d4981c806916d7751e943b5afebe89c9" }, "downloads": -1, "filename": "clipspy-0.3.3-cp27-cp27mu-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "7304385f8b9348e24af30c68a1628119", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 687974, "upload_time": "2019-10-14T16:38:46", "url": "https://files.pythonhosted.org/packages/9d/8d/dd0f31297fdc0e11055a6db6d909de3ce34393dd735b48db03ffcc7744cd/clipspy-0.3.3-cp27-cp27mu-manylinux2010_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "64565fb7019bba59f2ff7457e18a0964", "sha256": "76da5e59b4d95361df8baf33ab695f2a983493b78b538be557c343224eecb676" }, "downloads": -1, "filename": "clipspy-0.3.3-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "64565fb7019bba59f2ff7457e18a0964", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 684112, "upload_time": "2019-10-14T16:38:49", "url": "https://files.pythonhosted.org/packages/d7/5a/d29559236fc9a4f06d182d64b6e592e9fb111b192b1e2ba8df1ef0c24aa1/clipspy-0.3.3-cp34-cp34m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "08963a35dd50a23f5807888ea77af0f0", "sha256": "275aef1baf41484a0d9e79a8172993177eba6526c10454102198b0623338b631" }, "downloads": -1, "filename": "clipspy-0.3.3-cp34-cp34m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "08963a35dd50a23f5807888ea77af0f0", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 684116, "upload_time": "2019-10-14T16:38:52", "url": "https://files.pythonhosted.org/packages/d9/d3/8d3521b88d5c8b9f163fe28d6cdc7fe86768e21fc768b68f07ac6d436550/clipspy-0.3.3-cp34-cp34m-manylinux2010_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "e24ef3974b4a3ad7985a5508ecef0fbd", "sha256": "7c49e8ee9b12d1f971d9cc8f888b2f70b97061d42d3462324059594b19a9a11f" }, "downloads": -1, "filename": "clipspy-0.3.3-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "e24ef3974b4a3ad7985a5508ecef0fbd", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 684160, "upload_time": "2019-10-14T16:38:55", "url": "https://files.pythonhosted.org/packages/e8/32/3f820a357ac4d13bda7abec94a0095b58328f08a85178592bdd67bc658bf/clipspy-0.3.3-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "5d40ebdfb4c41e72aa34c565729bfa5c", "sha256": "852a71f1fed50d3bca1c424211d7197653ec5306a83a361dbefaeed743e50336" }, "downloads": -1, "filename": "clipspy-0.3.3-cp35-cp35m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "5d40ebdfb4c41e72aa34c565729bfa5c", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 684165, "upload_time": "2019-10-14T16:38:59", "url": "https://files.pythonhosted.org/packages/f9/33/480e77df62f27426f671fbd92f5f4db7376eefe718165f8dfc08b2004218/clipspy-0.3.3-cp35-cp35m-manylinux2010_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "5958e4d67bb4403ce22a3fc3211be3b7", "sha256": "a53273be52bb42f6fe1ee0519371a41b95d4f0773eaab19c955bdfc57bfcd442" }, "downloads": -1, "filename": "clipspy-0.3.3-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "5958e4d67bb4403ce22a3fc3211be3b7", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 683749, "upload_time": "2019-10-14T16:39:03", "url": "https://files.pythonhosted.org/packages/0b/65/1355ea9aa86e857a8e4e541166e1e7b6256bffef4ef1d08ac94ff72880c2/clipspy-0.3.3-cp36-cp36m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "8f5c3b3c3d45438a630d45e52f3e3674", "sha256": "fc3cce8974261aa56e448c0d86e4565f124afc39c31a0afa90c3f927d6945d4e" }, "downloads": -1, "filename": "clipspy-0.3.3-cp36-cp36m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "8f5c3b3c3d45438a630d45e52f3e3674", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 683754, "upload_time": "2019-10-14T16:39:06", "url": "https://files.pythonhosted.org/packages/36/bb/39e2bd6b4565ec7bf5605f234756c48ae5288724c0b328ee009f5219567e/clipspy-0.3.3-cp36-cp36m-manylinux2010_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "85154d78e9b2641bd0d9300741ba3254", "sha256": "2ee034786e219dcac6efe569afcfbb2424367c4c8edd51f5389bc7ba54cb4db6" }, "downloads": -1, "filename": "clipspy-0.3.3-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "85154d78e9b2641bd0d9300741ba3254", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 683750, "upload_time": "2019-10-14T16:39:10", "url": "https://files.pythonhosted.org/packages/1d/ea/387c3578967778ba81920d357410a04c8432ff138600cd6a0b42bbb7736d/clipspy-0.3.3-cp37-cp37m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "c833c1bd3e2aaa40748042198b94a113", "sha256": "fed1a234cfa691ec528295fb22b778f3639f1591747c6b95402a1bd3f48a87c7" }, "downloads": -1, "filename": "clipspy-0.3.3-cp37-cp37m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "c833c1bd3e2aaa40748042198b94a113", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 683752, "upload_time": "2019-10-14T16:39:14", "url": "https://files.pythonhosted.org/packages/3c/79/dd5027bb195879ebccfa5058b3cce52dee9c78ccdd6f91fd65b51fefd8ea/clipspy-0.3.3-cp37-cp37m-manylinux2010_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "89d6494dcd4882259527ca21e2494e35", "sha256": "b880dd5d90f84714cd74c2ee5cf283b696672f7294a814c74755328aa40b832d" }, "downloads": -1, "filename": "clipspy-0.3.3-cp38-cp38-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "89d6494dcd4882259527ca21e2494e35", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 686293, "upload_time": "2019-10-14T16:39:17", "url": "https://files.pythonhosted.org/packages/c7/f2/9d8a4a7037d9d539230e20f5bf626701b5b950b1ec3267d79e15a4c73113/clipspy-0.3.3-cp38-cp38-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "4642f303f6b21d0f4222bd3c6508aeb6", "sha256": "2203616fe16cdc3e3b4040854d3b6bedaffa1dd2f5d1820152bd0bd214d3f863" }, "downloads": -1, "filename": "clipspy-0.3.3-cp38-cp38-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "4642f303f6b21d0f4222bd3c6508aeb6", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 686299, "upload_time": "2019-10-14T16:39:21", "url": "https://files.pythonhosted.org/packages/cf/4f/e521cf3a405bbcc7449834f45795dada4032db4248168593b961288df2d7/clipspy-0.3.3-cp38-cp38-manylinux2010_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "0b833bd9e90f53bb51f30843d297f847", "sha256": "e68d4f5bbb13caffef3d1aa90d4daa3264cd3458d75ae60640126447b6c41819" }, "downloads": -1, "filename": "clipspy-0.3.3.tar.gz", "has_sig": false, "md5_digest": "0b833bd9e90f53bb51f30843d297f847", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22758, "upload_time": "2019-10-14T16:40:15", "url": "https://files.pythonhosted.org/packages/10/e8/87c3293255eb3beb328c2c0af7e9b768b066c395417c626dfc3a04e5b725/clipspy-0.3.3.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "140a3dc779ba62cd37d1da0edcd46484", "sha256": "eb9fce6008abf9a714e73d1f3daecd3430af0231876196a3af4ab6da356d8139" }, "downloads": -1, "filename": "clipspy-0.3.3-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "140a3dc779ba62cd37d1da0edcd46484", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 687979, "upload_time": "2019-10-14T16:38:36", "url": "https://files.pythonhosted.org/packages/cf/fa/99e0cdd9cfb503fe28d9e6c1d1dce434eb757d821c48db74a5e7a6f32735/clipspy-0.3.3-cp27-cp27m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "682f28a36434828414d3cb1c2b24e190", "sha256": "dce73da3b0ca010b0832cfa0d906aabb292631df0d44a4df59b3c86e4aef9a13" }, "downloads": -1, "filename": "clipspy-0.3.3-cp27-cp27m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "682f28a36434828414d3cb1c2b24e190", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 687981, "upload_time": "2019-10-14T16:38:39", "url": "https://files.pythonhosted.org/packages/c5/9b/0c0925b765f0979dd1f7631fa4fd8be6fbd7165707cf6b6dd09332a3b4c7/clipspy-0.3.3-cp27-cp27m-manylinux2010_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "b702eb4f3a85443d325eb79d3e55367c", "sha256": "f8dd5b2b981a7280271326cc38498b4f966814bb3c2e08faac30d87eec2a0297" }, "downloads": -1, "filename": "clipspy-0.3.3-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "b702eb4f3a85443d325eb79d3e55367c", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 687974, "upload_time": "2019-10-14T16:38:43", "url": "https://files.pythonhosted.org/packages/6b/52/ab1c4196a1e1ce835088a91bbda5acf2487d09bf4f5942a9cd7b6843584a/clipspy-0.3.3-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "7304385f8b9348e24af30c68a1628119", "sha256": "93d9e32225ac28d11eb79b6ad8fc9591d4981c806916d7751e943b5afebe89c9" }, "downloads": -1, "filename": "clipspy-0.3.3-cp27-cp27mu-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "7304385f8b9348e24af30c68a1628119", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 687974, "upload_time": "2019-10-14T16:38:46", "url": "https://files.pythonhosted.org/packages/9d/8d/dd0f31297fdc0e11055a6db6d909de3ce34393dd735b48db03ffcc7744cd/clipspy-0.3.3-cp27-cp27mu-manylinux2010_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "64565fb7019bba59f2ff7457e18a0964", "sha256": "76da5e59b4d95361df8baf33ab695f2a983493b78b538be557c343224eecb676" }, "downloads": -1, "filename": "clipspy-0.3.3-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "64565fb7019bba59f2ff7457e18a0964", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 684112, "upload_time": "2019-10-14T16:38:49", "url": "https://files.pythonhosted.org/packages/d7/5a/d29559236fc9a4f06d182d64b6e592e9fb111b192b1e2ba8df1ef0c24aa1/clipspy-0.3.3-cp34-cp34m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "08963a35dd50a23f5807888ea77af0f0", "sha256": "275aef1baf41484a0d9e79a8172993177eba6526c10454102198b0623338b631" }, "downloads": -1, "filename": "clipspy-0.3.3-cp34-cp34m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "08963a35dd50a23f5807888ea77af0f0", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 684116, "upload_time": "2019-10-14T16:38:52", "url": "https://files.pythonhosted.org/packages/d9/d3/8d3521b88d5c8b9f163fe28d6cdc7fe86768e21fc768b68f07ac6d436550/clipspy-0.3.3-cp34-cp34m-manylinux2010_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "e24ef3974b4a3ad7985a5508ecef0fbd", "sha256": "7c49e8ee9b12d1f971d9cc8f888b2f70b97061d42d3462324059594b19a9a11f" }, "downloads": -1, "filename": "clipspy-0.3.3-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "e24ef3974b4a3ad7985a5508ecef0fbd", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 684160, "upload_time": "2019-10-14T16:38:55", "url": "https://files.pythonhosted.org/packages/e8/32/3f820a357ac4d13bda7abec94a0095b58328f08a85178592bdd67bc658bf/clipspy-0.3.3-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "5d40ebdfb4c41e72aa34c565729bfa5c", "sha256": "852a71f1fed50d3bca1c424211d7197653ec5306a83a361dbefaeed743e50336" }, "downloads": -1, "filename": "clipspy-0.3.3-cp35-cp35m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "5d40ebdfb4c41e72aa34c565729bfa5c", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 684165, "upload_time": "2019-10-14T16:38:59", "url": "https://files.pythonhosted.org/packages/f9/33/480e77df62f27426f671fbd92f5f4db7376eefe718165f8dfc08b2004218/clipspy-0.3.3-cp35-cp35m-manylinux2010_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "5958e4d67bb4403ce22a3fc3211be3b7", "sha256": "a53273be52bb42f6fe1ee0519371a41b95d4f0773eaab19c955bdfc57bfcd442" }, "downloads": -1, "filename": "clipspy-0.3.3-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "5958e4d67bb4403ce22a3fc3211be3b7", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 683749, "upload_time": "2019-10-14T16:39:03", "url": "https://files.pythonhosted.org/packages/0b/65/1355ea9aa86e857a8e4e541166e1e7b6256bffef4ef1d08ac94ff72880c2/clipspy-0.3.3-cp36-cp36m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "8f5c3b3c3d45438a630d45e52f3e3674", "sha256": "fc3cce8974261aa56e448c0d86e4565f124afc39c31a0afa90c3f927d6945d4e" }, "downloads": -1, "filename": "clipspy-0.3.3-cp36-cp36m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "8f5c3b3c3d45438a630d45e52f3e3674", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 683754, "upload_time": "2019-10-14T16:39:06", "url": "https://files.pythonhosted.org/packages/36/bb/39e2bd6b4565ec7bf5605f234756c48ae5288724c0b328ee009f5219567e/clipspy-0.3.3-cp36-cp36m-manylinux2010_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "85154d78e9b2641bd0d9300741ba3254", "sha256": "2ee034786e219dcac6efe569afcfbb2424367c4c8edd51f5389bc7ba54cb4db6" }, "downloads": -1, "filename": "clipspy-0.3.3-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "85154d78e9b2641bd0d9300741ba3254", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 683750, "upload_time": "2019-10-14T16:39:10", "url": "https://files.pythonhosted.org/packages/1d/ea/387c3578967778ba81920d357410a04c8432ff138600cd6a0b42bbb7736d/clipspy-0.3.3-cp37-cp37m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "c833c1bd3e2aaa40748042198b94a113", "sha256": "fed1a234cfa691ec528295fb22b778f3639f1591747c6b95402a1bd3f48a87c7" }, "downloads": -1, "filename": "clipspy-0.3.3-cp37-cp37m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "c833c1bd3e2aaa40748042198b94a113", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 683752, "upload_time": "2019-10-14T16:39:14", "url": "https://files.pythonhosted.org/packages/3c/79/dd5027bb195879ebccfa5058b3cce52dee9c78ccdd6f91fd65b51fefd8ea/clipspy-0.3.3-cp37-cp37m-manylinux2010_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "89d6494dcd4882259527ca21e2494e35", "sha256": "b880dd5d90f84714cd74c2ee5cf283b696672f7294a814c74755328aa40b832d" }, "downloads": -1, "filename": "clipspy-0.3.3-cp38-cp38-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "89d6494dcd4882259527ca21e2494e35", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 686293, "upload_time": "2019-10-14T16:39:17", "url": "https://files.pythonhosted.org/packages/c7/f2/9d8a4a7037d9d539230e20f5bf626701b5b950b1ec3267d79e15a4c73113/clipspy-0.3.3-cp38-cp38-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "4642f303f6b21d0f4222bd3c6508aeb6", "sha256": "2203616fe16cdc3e3b4040854d3b6bedaffa1dd2f5d1820152bd0bd214d3f863" }, "downloads": -1, "filename": "clipspy-0.3.3-cp38-cp38-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "4642f303f6b21d0f4222bd3c6508aeb6", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 686299, "upload_time": "2019-10-14T16:39:21", "url": "https://files.pythonhosted.org/packages/cf/4f/e521cf3a405bbcc7449834f45795dada4032db4248168593b961288df2d7/clipspy-0.3.3-cp38-cp38-manylinux2010_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "0b833bd9e90f53bb51f30843d297f847", "sha256": "e68d4f5bbb13caffef3d1aa90d4daa3264cd3458d75ae60640126447b6c41819" }, "downloads": -1, "filename": "clipspy-0.3.3.tar.gz", "has_sig": false, "md5_digest": "0b833bd9e90f53bb51f30843d297f847", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22758, "upload_time": "2019-10-14T16:40:15", "url": "https://files.pythonhosted.org/packages/10/e8/87c3293255eb3beb328c2c0af7e9b768b066c395417c626dfc3a04e5b725/clipspy-0.3.3.tar.gz" } ] }