{ "info": { "author": "Hong Minhee", "author_email": "hong.minhee@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Environment :: Console :: Curses", "Intended Audience :: Developers", "License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)", "Operating System :: MacOS :: MacOS X", "Operating System :: Microsoft :: Windows", "Operating System :: POSIX :: BSD :: FreeBSD", "Operating System :: POSIX :: BSD :: OpenBSD", "Operating System :: POSIX :: Linux", "Programming Language :: Python :: 2.6", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy", "Topic :: Terminals" ], "description": "``iterfzf``: Pythonic interface to ``fzf``\n==========================================\n\n.. image:: https://badge.fury.io/py/iterfzf.svg\n :target: https://pypi.python.org/pypi/iterfzf\n :alt: Latest PyPI version\n\n.. image:: https://travis-ci.org/dahlia/iterfzf.svg\n :alt: Build status (Travis CI)\n :target: https://travis-ci.org/dahlia/iterfzf\n\n.. image:: https://ci.appveyor.com/api/projects/status/cf2eiuymdffvybl7?svg=true\n :target: https://ci.appveyor.com/project/dahlia/iterfzf\n :alt: Build status (AppVeyor)\n\n\nDemo session\n------------\n\n.. image:: https://asciinema.org/a/121028.png\n :target: https://asciinema.org/a/121028\n :alt: iterfzf demo session\n\nSee also the `API reference`_.\n\n\nKey features\n------------\n\n- No dependency but only Python is required. Prebuilt ``fzf`` binary for\n each platform is bundled into wheels. Everything is ready by\n ``pip install iterfzf``. (Note that not wheels of all supported platforms\n are uploaded to PyPI as they don't allow minor platforms e.g. FreeBSD.\n The complete wheels can be found from the `GitHub releases`__.)\n- Consumes an iterable rather than a list. It makes UX way better when the\n input data is long but *streamed* from low latency network.\n It can begin to display items immediately after only *part* of items are\n ready, and *before* the complete items are ready.\n- Supports Python 2.6, 2.7, 3.3 or higher.\n\n__ https://github.com/dahlia/iterfzf/releases\n\n\n.. _api reference:\n\n``iterfzf.iterfzf(iterable, **options)``\n----------------------------------------\n\nConsumes the given ``iterable`` of strings, and displays them using ``fzf``.\nIf a user chooses something it immediately returns the chosen things.\n\nThe following is the full list of parameters. Please pass them as\n**keyword arguments** except for ``iterable`` which comes first:\n\n``iterable`` (required)\n The only required parameter. Every element which this ``iterable`` yields\n is displayed immediately after each one is produced. In other words,\n the passed ``iterable`` is lazily consumed.\n\n It can be an iterable of byte strings (e.g. ``[b'foo', b'bar']``) or of\n Unicode strings (e.g. ``[u'foo', u'bar']``), but must not be\n mixed (e.g. ``[u'foo', b'bar']``). If they are byte strings the function\n returns bytes. If they are Unicode strings it returns Unicode strings.\n See also the ``encoding`` parameter.\n\n``multi``\n ``True`` to let the user to choose more than one. A user can select\n items with tab/shift-tab. If ``multi=True`` the function returns a list of\n strings rather than a string.\n\n ``False`` to make a user possible to choose only one. If ``multi=False``\n it returns a string rather than a list.\n\n For both modes, the function returns ``None`` if nothing is matched or\n a user cancelled.\n\n ``False`` by default.\n\n Corresponds to ``-m``/``--multi`` option.\n\n``print_query``\n If ``True`` the return type is a tuple where the first element is the query\n the user actually typed, and the second element is the selected output as\n described above and depending on the state of ``multi``.\n\n ``False`` by default.\n\n Corresponds to ``--print-query`` option.\n\n *New in version 0.3.0.*\n\n``encoding``\n The text encoding name (e.g. ``'utf-8'``, ``'ascii'``) to be used for\n encoding ``iterable`` values and decoding return values. It's ignored\n when the ``iterable`` values are byte strings.\n\n The Python's default encoding (i.e. ``sys.getdefaultencoding()``) is used\n by default.\n\n``extended``\n ``True`` for extended-search mode. ``False`` to turn it off.\n\n ``True`` by default.\n\n ``True`` corresponds to ``-x``/``--extended`` option, and\n ``False`` corresponds to ``+x``/``--no-extended`` option.\n\n``exact``\n ``False`` for fuzzy matching, and ``True`` for exact matching.\n\n ``False`` by default.\n\n Corresponds to ``-e``/``--exact`` option.\n\n``case_sensitive``\n ``True`` for case sensitivity, and ``False`` for case insensitivity.\n ``None``, the default, for smart-case match.\n\n ``True`` corresponds to ``+i`` option and ``False`` corresponds to\n ``-i`` option.\n\n``query``\n The query string to be filled at first. (It can be removed by a user.)\n\n Empty string by default.\n\n Corresponds to ``-q``/``--query`` option.\n\n``prompt``\n The prompt sequence. ``' >'`` by default.\n\n Corresponds to ``--prompt`` option.\n\n``mouse``\n ``False`` to disable mouse. ``True`` by default.\n\n Corresponds to ``--no-mouse`` option.\n\n\nAuthor and license\n------------------\n\nThe ``iterfzf`` library is written by `Hong Minhee`__ and distributed under\nGPLv3_ or later.\n\nThe ``fzf`` program is written by `Junegunn Choi`__ and distributed under\nMIT license.\n\n__ https://hongminhee.org/\n.. _GPLv3: https://www.gnu.org/licenses/gpl-3.0.html\n__ https://junegunn.kr/\n\n\nChangelog\n---------\n\nVersioning scheme\n~~~~~~~~~~~~~~~~~\n\nNote that ``iterfzf`` does *not* follow `Semantic Versioning`_. The version\nconsists of its own major and minor number followed by the version of bundled\n``fzf``. For example, 1.2.3.4.5 means that ``iterfzf``'s own major version\nis 1, and its own minor version is 2, plus the version of ``fzf`` it bundles\nis 3.4.5.\n\n.. code-block:: text\n\n /---------- 1. iterfzf's major version\n | /------ 3. bundled fzf's major version\n | | /-- 5. bundled fzf's patch version\n | | |\n v v v\n 1.2.3.4.5\n ^ ^\n | |\n | \\---- 4. bundled fzf's minor version\n \\-------- 2. iterfzf's minor version\n\n.. _Semantic Versioning: http://semver.org/\n\n\nVersion 0.4.0.17.3\n~~~~~~~~~~~~~~~~~~\n\nReleased on December 4, 2017. Bundles ``fzf`` 0.17.3.\n\n\nVersion 0.4.0.17.1\n~~~~~~~~~~~~~~~~~~\n\nReleased on October 19, 2017. Bundles ``fzf`` 0.17.1.\n\n- Added missing binary wheels for macOS again. (These were missing from\n 0.3.0.17.1, the previous release.)\n\n\nVersion 0.3.0.17.1\n~~~~~~~~~~~~~~~~~~\n\nReleased on October 16, 2017. Bundles ``fzf`` 0.17.1.\n\n- Added ``print_query`` option. [`#1`__ by George Kettleborough]\n\n__ https://github.com/dahlia/iterfzf/pull/1\n\n\nVersion 0.2.0.17.0\n~~~~~~~~~~~~~~~~~~\n\nReleased on August 27, 2017. Bundles ``fzf`` 0.17.0.\n\n\nVersion 0.2.0.16.11\n~~~~~~~~~~~~~~~~~~~\n\nReleased on July 23, 2017. Bundles ``fzf`` 0.16.11.\n\n\nVersion 0.2.0.16.10\n~~~~~~~~~~~~~~~~~~~\n\nReleased on July 23, 2017. Bundles ``fzf`` 0.16.10.\n\n\nVersion 0.2.0.16.8\n~~~~~~~~~~~~~~~~~~\n\nReleased on June 6, 2017. Bundles ``fzf`` 0.16.8.\n\n- Upgraded ``fzf`` from 0.16.7 to 0.16.8.\n\n\nVersion 0.2.0.16.7\n~~~~~~~~~~~~~~~~~~\n\nReleased on May 20, 2017. Bundles ``fzf`` 0.16.7.\n\n- Made sdists (source distributions) possible to be correctly installed\n so that older ``pip``, can't deal with wheels, also can install ``iterfzf``.\n\n\nVersion 0.1.0.16.7\n~~~~~~~~~~~~~~~~~~\n\nReleased on May 19, 2017. Bundles ``fzf`` 0.16.7. The initial release.\n\n\n", "description_content_type": null, "docs_url": null, "download_url": "https://github.com/dahlia/iterfzf/releases", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/dahlia/iterfzf", "keywords": "fzf", "license": "GPLv3 or later", "maintainer": "", "maintainer_email": "", "name": "iterfzf", "package_url": "https://pypi.org/project/iterfzf/", "platform": "", "project_url": "https://pypi.org/project/iterfzf/", "project_urls": { "Download": "https://github.com/dahlia/iterfzf/releases", "Homepage": "https://github.com/dahlia/iterfzf" }, "release_url": "https://pypi.org/project/iterfzf/0.4.0.17.3/", "requires_dist": [ "setuptools" ], "requires_python": ">=2.6.0", "summary": "Pythonic interface to fzf", "version": "0.4.0.17.3" }, "last_serial": 3385083, "releases": { "0.1.0.16.7": [ { "comment_text": "", "digests": { "md5": "4491876e2e8da3b94b4b4452a7c9da43", "sha256": "3433ebfc79911793952b326b6fd627214ce897fc1fc5758cdb2473b92121acab" }, "downloads": -1, "filename": "iterfzf-0.1.0.16.7-py2.py3-none-macosx_10_10_i386.macosx_10_11_i386.macosx_10_12_i386.whl", "has_sig": false, "md5_digest": "4491876e2e8da3b94b4b4452a7c9da43", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.6.0", "size": 808908, "upload_time": "2017-05-18T21:52:38", "url": "https://files.pythonhosted.org/packages/0f/6b/9002db12df81989532c766784f62efd1c68fd40fab87fec08816f9705069/iterfzf-0.1.0.16.7-py2.py3-none-macosx_10_10_i386.macosx_10_11_i386.macosx_10_12_i386.whl" }, { "comment_text": "", "digests": { "md5": "18745319b83c043d0ef07327bfbef72d", "sha256": "f73782ac5f4a9f5e4844c3fc624edd870d6d36c89bb10320b3e71b4f87a9f4f1" }, "downloads": -1, "filename": "iterfzf-0.1.0.16.7-py2.py3-none-macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.macosx_10_12_intel.macosx_10_12_x86_64.whl", "has_sig": false, "md5_digest": "18745319b83c043d0ef07327bfbef72d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.6.0", "size": 866253, "upload_time": "2017-05-18T21:52:41", "url": "https://files.pythonhosted.org/packages/a9/59/4bde5f4d8c6ac8f61f1b807f5e5d225ed43ff33fe3309c2e36039d20ee42/iterfzf-0.1.0.16.7-py2.py3-none-macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.macosx_10_12_intel.macosx_10_12_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "a687a3370cc0dcb6b14117084bb1977e", "sha256": "d1e08fdab40860f46ed694a9d6edfe9ba9ca316e5d7447fa81f569c97cc82623" }, "downloads": -1, "filename": "iterfzf-0.1.0.16.7-py2.py3-none-manylinux1_i686.whl", "has_sig": false, "md5_digest": "a687a3370cc0dcb6b14117084bb1977e", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.6.0", "size": 811861, "upload_time": "2017-05-18T21:52:47", "url": "https://files.pythonhosted.org/packages/98/56/a3fdb6a3d7f9169e733496d8082130c65c36bde635781e99df8129b6f95b/iterfzf-0.1.0.16.7-py2.py3-none-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "05a20fb949b126341465f8f6f7d97503", "sha256": "5b504c9877876b057bbcae5e9e919a029930c8fa2635707469b91fd299e53e6c" }, "downloads": -1, "filename": "iterfzf-0.1.0.16.7-py2.py3-none-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "05a20fb949b126341465f8f6f7d97503", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.6.0", "size": 811862, "upload_time": "2017-05-18T21:52:50", "url": "https://files.pythonhosted.org/packages/3e/64/394dea629cf08e68a898f60e749918639f3bcce99a20b73064133746ab73/iterfzf-0.1.0.16.7-py2.py3-none-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "56afcbf48510af24ae7e61a770c98058", "sha256": "48753e341636e4b2a49e63cdc9d78e837197fbff25b708ba98140141b3c42c2f" }, "downloads": -1, "filename": "iterfzf-0.1.0.16.7-py2.py3-none-win32.whl", "has_sig": false, "md5_digest": "56afcbf48510af24ae7e61a770c98058", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.6.0", "size": 2304375, "upload_time": "2017-05-18T21:52:54", "url": "https://files.pythonhosted.org/packages/84/58/51f284cda1ec419ee4f7b6155a0bdcc6247939f6a9b2ca1c1416cdb0d4bf/iterfzf-0.1.0.16.7-py2.py3-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "7e3ddc914fe58c7ce4961d09283c359b", "sha256": "4f865a4af874c7a841cb530ee86e73c6e232372abb7efa03a6b7970fcb97cd71" }, "downloads": -1, "filename": "iterfzf-0.1.0.16.7-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "7e3ddc914fe58c7ce4961d09283c359b", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.6.0", "size": 2422145, "upload_time": "2017-05-18T21:52:57", "url": "https://files.pythonhosted.org/packages/f2/42/18b032fea0ea988ec7daa8e86b4f158f9708ad4356da786e05bb9d3c1d0c/iterfzf-0.1.0.16.7-py2.py3-none-win_amd64.whl" } ], "0.2.0.16.10": [ { "comment_text": "", "digests": { "md5": "ebee0f135eb8304a442417bc8e717f6c", "sha256": "459be7d2f0a22807b34d31b194a6a988ca4f60601f8744ba2e147b277266225f" }, "downloads": -1, "filename": "iterfzf-0.2.0.16.10-py2.py3-none-macosx_10_10_i386.macosx_10_11_i386.macosx_10_12_i386.whl", "has_sig": false, "md5_digest": "ebee0f135eb8304a442417bc8e717f6c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.6.0", "size": 809971, "upload_time": "2017-07-23T14:57:47", "url": "https://files.pythonhosted.org/packages/a1/4a/cf3a41b6ebefcc37524b13956859dcad1d5a0d1072f2a012b1306a06bf8f/iterfzf-0.2.0.16.10-py2.py3-none-macosx_10_10_i386.macosx_10_11_i386.macosx_10_12_i386.whl" }, { "comment_text": "", "digests": { "md5": "625b41be7fb082b36362801667fcc3f9", "sha256": "c7b903e701e649ba40aeaf5bc3bd67251d4d198385f1ebd329a3b93822b4a5c4" }, "downloads": -1, "filename": "iterfzf-0.2.0.16.10-py2.py3-none-macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.macosx_10_12_intel.macosx_10_12_x86_64.whl", "has_sig": false, "md5_digest": "625b41be7fb082b36362801667fcc3f9", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.6.0", "size": 866536, "upload_time": "2017-07-23T14:57:51", "url": "https://files.pythonhosted.org/packages/79/40/21718704f59a3f6db010aae239e7228c28b3113892dd03b9b15a0343de80/iterfzf-0.2.0.16.10-py2.py3-none-macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.macosx_10_12_intel.macosx_10_12_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "1b2a13b2e23b7752fb92af20bf449e17", "sha256": "df844243056703f80f483d94648af909f8d6057669f0996cc7208d45b3488935" }, "downloads": -1, "filename": "iterfzf-0.2.0.16.10-py2.py3-none-manylinux1_i686.whl", "has_sig": false, "md5_digest": "1b2a13b2e23b7752fb92af20bf449e17", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.6.0", "size": 813394, "upload_time": "2017-07-23T14:58:02", "url": "https://files.pythonhosted.org/packages/bd/da/7b1515e96ff475115459bd3c871d4ead7f907531fb72a13972734086320d/iterfzf-0.2.0.16.10-py2.py3-none-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "454efb7fa697b41485e0065e2f54dcf5", "sha256": "a74608b1832422804f02bac46340854a15256f98c1c797cb149e849566b5d8bf" }, "downloads": -1, "filename": "iterfzf-0.2.0.16.10-py2.py3-none-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "454efb7fa697b41485e0065e2f54dcf5", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.6.0", "size": 873609, "upload_time": "2017-07-23T14:58:06", "url": "https://files.pythonhosted.org/packages/fc/2d/2e12bf9737ac886bc9a7043421cd1909c78863d60df5cb9dc944db0ca396/iterfzf-0.2.0.16.10-py2.py3-none-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "cf40202b6ccd3168cbef1be724249446", "sha256": "cf5c644b89c2518cae0eb6ba0e450219af5f52b8b8598aaeb73e821cf6f0b0cb" }, "downloads": -1, "filename": "iterfzf-0.2.0.16.10-py2.py3-none-win32.whl", "has_sig": false, "md5_digest": "cf40202b6ccd3168cbef1be724249446", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.6.0", "size": 2247391, "upload_time": "2017-07-23T14:58:13", "url": "https://files.pythonhosted.org/packages/ea/3c/4140dc71e3b1ce20a45e817bec1abb35bdb0de33bcd281611cb1af76548d/iterfzf-0.2.0.16.10-py2.py3-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "9bcab35d66101e4dca729f6e8285badf", "sha256": "990d70db8ac0c52703cc9aa1ee47f4d12a0d7a183683ceb005acf9672b468c89" }, "downloads": -1, "filename": "iterfzf-0.2.0.16.10-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "9bcab35d66101e4dca729f6e8285badf", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.6.0", "size": 2346938, "upload_time": "2017-07-23T14:58:18", "url": "https://files.pythonhosted.org/packages/7d/7a/eea2a3398a8719e5bc771e1ede78517ef24156737d7543bfa5e0130c44bc/iterfzf-0.2.0.16.10-py2.py3-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "fb87832c7995a09ee8e64fd3ff92e6f8", "sha256": "45f7eaec268aed51373fbc36bb63f4a4f546b2ec9a0749894ac32aa5da0b5344" }, "downloads": -1, "filename": "iterfzf-0.2.0.16.10.tar.gz", "has_sig": false, "md5_digest": "fb87832c7995a09ee8e64fd3ff92e6f8", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.6.0", "size": 8640, "upload_time": "2017-07-23T14:58:21", "url": "https://files.pythonhosted.org/packages/29/4a/875a206fe877c628e5b23b15c2206736b162e58d250703e0c421c12dde1f/iterfzf-0.2.0.16.10.tar.gz" } ], "0.2.0.16.11": [ { "comment_text": "", "digests": { "md5": "0f1c43b1f6df361d9975972f98b94b45", "sha256": "9bac8e1e3f6e6d446dd6b6524a0cfb0f05188b9511e7129f2a0f53f85a7ed640" }, "downloads": -1, "filename": "iterfzf-0.2.0.16.11-py2.py3-none-macosx_10_10_i386.macosx_10_11_i386.macosx_10_12_i386.whl", "has_sig": false, "md5_digest": "0f1c43b1f6df361d9975972f98b94b45", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.6.0", "size": 810935, "upload_time": "2017-08-02T14:17:22", "url": "https://files.pythonhosted.org/packages/86/d3/78552a208f6b2f5c44070b92694c6e237b830b16644ebab475e11e40fe8e/iterfzf-0.2.0.16.11-py2.py3-none-macosx_10_10_i386.macosx_10_11_i386.macosx_10_12_i386.whl" }, { "comment_text": "", "digests": { "md5": "727fba9c320642d5fceca549c0f51417", "sha256": "87153d71efd1ede7be61a9885013c8f6203111e3225be235a256f2e597f42bfa" }, "downloads": -1, "filename": "iterfzf-0.2.0.16.11-py2.py3-none-macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.macosx_10_12_intel.macosx_10_12_x86_64.whl", "has_sig": false, "md5_digest": "727fba9c320642d5fceca549c0f51417", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.6.0", "size": 866927, "upload_time": "2017-08-02T14:17:24", "url": "https://files.pythonhosted.org/packages/2c/d4/58ec0f0583cc14585313eabd5e4d086587a2a83ec164f6c56ffb29066cb5/iterfzf-0.2.0.16.11-py2.py3-none-macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.macosx_10_12_intel.macosx_10_12_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "f9de5ab76cfafb0f75e0110f20719a1a", "sha256": "5c67f908027cdbfad132be47feab63f7b76e5967dbd9ac4f83b42ffd6ca0abfc" }, "downloads": -1, "filename": "iterfzf-0.2.0.16.11-py2.py3-none-manylinux1_i686.whl", "has_sig": false, "md5_digest": "f9de5ab76cfafb0f75e0110f20719a1a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.6.0", "size": 814085, "upload_time": "2017-08-02T14:17:32", "url": "https://files.pythonhosted.org/packages/3f/31/eb7010eedb31878a5ca28713ff1dbfce3fd1066a591abdc7df30fbf592cd/iterfzf-0.2.0.16.11-py2.py3-none-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "26ae6b0c2cf1f267a5b2881f5239d874", "sha256": "2b75b55d161ac6d87b9e4269593a91e35b6f656d629f7a452715a2ffb30d8c0a" }, "downloads": -1, "filename": "iterfzf-0.2.0.16.11-py2.py3-none-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "26ae6b0c2cf1f267a5b2881f5239d874", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.6.0", "size": 874200, "upload_time": "2017-08-02T14:17:35", "url": "https://files.pythonhosted.org/packages/8c/11/f7cd67a7fe04cec73f194e94e26a4995b0ff9ef94ba6f66d3b5c5767cf08/iterfzf-0.2.0.16.11-py2.py3-none-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "9a5e5ca01f2c8d6b9d5401c3c06a858a", "sha256": "ea3b59b3d8248797d1a10c854f52d7d8981128bdb75658a638e87b66fe41b72f" }, "downloads": -1, "filename": "iterfzf-0.2.0.16.11-py2.py3-none-win32.whl", "has_sig": false, "md5_digest": "9a5e5ca01f2c8d6b9d5401c3c06a858a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.6.0", "size": 2248675, "upload_time": "2017-08-02T14:17:42", "url": "https://files.pythonhosted.org/packages/1f/f4/33a4aa53cae6b113511fee389eb8b9d2fcd5ef9aaba6029eef93d61d2400/iterfzf-0.2.0.16.11-py2.py3-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "a8b034d7e622619ec554504d6385dfa1", "sha256": "de5352072a6215b5de338cdfd49730814d100d6c9d23d0507a6a3006d48ad88c" }, "downloads": -1, "filename": "iterfzf-0.2.0.16.11-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "a8b034d7e622619ec554504d6385dfa1", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.6.0", "size": 2347232, "upload_time": "2017-08-02T14:17:45", "url": "https://files.pythonhosted.org/packages/c4/2f/18d84b2af617958c646a683eb6c4f806387fdb1747c402f93957251814bf/iterfzf-0.2.0.16.11-py2.py3-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "159e2b50ee51d38b4e9596ca8056ce75", "sha256": "95546c757231359eea45db24b23e157c184656dd0a6f5f8b8a952eedc32003e0" }, "downloads": -1, "filename": "iterfzf-0.2.0.16.11.tar.gz", "has_sig": false, "md5_digest": "159e2b50ee51d38b4e9596ca8056ce75", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.6.0", "size": 8724, "upload_time": "2017-08-02T14:17:49", "url": "https://files.pythonhosted.org/packages/09/5a/3e6a6821173b92b5caa2662c32983dbb79351e6b214911b87376bd98c7f3/iterfzf-0.2.0.16.11.tar.gz" } ], "0.2.0.16.7": [ { "comment_text": "", "digests": { "md5": "bf92d04da72665fa73593acf55b5868f", "sha256": "c92a0fb0dac62113ff8b971e18b988754fe65a24cc26afcb4d89cd1849943a12" }, "downloads": -1, "filename": "iterfzf-0.2.0.16.7-py2.py3-none-macosx_10_10_i386.macosx_10_11_i386.macosx_10_12_i386.whl", "has_sig": false, "md5_digest": "bf92d04da72665fa73593acf55b5868f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.6.0", "size": 809320, "upload_time": "2017-05-20T12:30:07", "url": "https://files.pythonhosted.org/packages/de/26/ce0c5e33188116112eb2ad8e2bd9ad7982c14f3b9e07b552246993833224/iterfzf-0.2.0.16.7-py2.py3-none-macosx_10_10_i386.macosx_10_11_i386.macosx_10_12_i386.whl" }, { "comment_text": "", "digests": { "md5": "1fc0c7a73dd201cf21393d7a87c5b457", "sha256": "afc80763c795be9223085e2e01763270da4df88db8b84f4022b6add517f704f8" }, "downloads": -1, "filename": "iterfzf-0.2.0.16.7-py2.py3-none-macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.macosx_10_12_intel.macosx_10_12_x86_64.whl", "has_sig": false, "md5_digest": "1fc0c7a73dd201cf21393d7a87c5b457", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.6.0", "size": 809346, "upload_time": "2017-05-20T12:30:09", "url": "https://files.pythonhosted.org/packages/41/bf/b0332ccdacf122d7f4025225bef3e381bcdd08ae93f9b1c486a5e61dd7e9/iterfzf-0.2.0.16.7-py2.py3-none-macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.macosx_10_12_intel.macosx_10_12_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "305b329b7e783821a2dfaa57269a74cb", "sha256": "96cc02f40b9f662a26eb3e3411ad48bbc9d562f4fed8d8bca5ba43bfcb2a4881" }, "downloads": -1, "filename": "iterfzf-0.2.0.16.7-py2.py3-none-manylinux1_i686.whl", "has_sig": false, "md5_digest": "305b329b7e783821a2dfaa57269a74cb", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.6.0", "size": 812268, "upload_time": "2017-05-20T12:30:16", "url": "https://files.pythonhosted.org/packages/bf/44/cf9f6e329192beeabd718852c907624dc160cd0b80606adb67280cb62c51/iterfzf-0.2.0.16.7-py2.py3-none-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "aaa74578a4c0d410005437e4c62c2288", "sha256": "197c28f4b5fc4f2dd0c44010b54592c69c36fa848fbb28a1974863296f8fdc3d" }, "downloads": -1, "filename": "iterfzf-0.2.0.16.7-py2.py3-none-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "aaa74578a4c0d410005437e4c62c2288", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.6.0", "size": 873610, "upload_time": "2017-05-20T12:30:19", "url": "https://files.pythonhosted.org/packages/ab/96/747bec69dc3c5c40a4eb860528ac4ee13a1725f1b5dde528b96002fc7811/iterfzf-0.2.0.16.7-py2.py3-none-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "ad353a5aff2fae8593d183f45b8d1d82", "sha256": "b7570e9fe7c89200f390e4fd6c46e71a5afecb6ea4c71cde97a5af672b4fd3ce" }, "downloads": -1, "filename": "iterfzf-0.2.0.16.7-py2.py3-none-win32.whl", "has_sig": false, "md5_digest": "ad353a5aff2fae8593d183f45b8d1d82", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.6.0", "size": 2247467, "upload_time": "2017-05-20T12:30:24", "url": "https://files.pythonhosted.org/packages/e5/94/a929f8fcb432b2b7e778bcb452ee231baf813de5ddd24f5e34b679b07995/iterfzf-0.2.0.16.7-py2.py3-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "745f2f6bd49cd0cc3261b71fd270d251", "sha256": "be9822bee01327697e13f52bfff7a99d128105bfc3308346d3f8cebed2226529" }, "downloads": -1, "filename": "iterfzf-0.2.0.16.7-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "745f2f6bd49cd0cc3261b71fd270d251", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.6.0", "size": 2365238, "upload_time": "2017-05-20T12:30:27", "url": "https://files.pythonhosted.org/packages/e4/2e/0da1cb334866746fac62cd7997a9a3b35218b7a7b6b1fc6a8131bce7a307/iterfzf-0.2.0.16.7-py2.py3-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "04c25f7410ebc6cb509270dfebf24af7", "sha256": "dac65bde201e0ccdb9ab7384247a6e4ae75665b9de79b6a91df666edb368902e" }, "downloads": -1, "filename": "iterfzf-0.2.0.16.7.tar.gz", "has_sig": false, "md5_digest": "04c25f7410ebc6cb509270dfebf24af7", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.6.0", "size": 8534, "upload_time": "2017-05-20T12:30:33", "url": "https://files.pythonhosted.org/packages/ab/87/07793d7a3ee8d236abcd3c1bf8566ebeb7ddf1ced15e79eb2a266f546f2d/iterfzf-0.2.0.16.7.tar.gz" } ], "0.2.0.16.8": [ { "comment_text": "", "digests": { "md5": "3999fff86527e0eaff33e7a4b33b061f", "sha256": "7116c490274a055a390655fa03a4543c3e55224c7e4d545dc18ec2e6640371fe" }, "downloads": -1, "filename": "iterfzf-0.2.0.16.8-py2.py3-none-macosx_10_10_i386.macosx_10_11_i386.macosx_10_12_i386.whl", "has_sig": false, "md5_digest": "3999fff86527e0eaff33e7a4b33b061f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.6.0", "size": 809475, "upload_time": "2017-06-05T15:23:41", "url": "https://files.pythonhosted.org/packages/65/87/9c52ed1dd0d045bab8295224e6ef1a1f5b278af55d55b56becaea4b74090/iterfzf-0.2.0.16.8-py2.py3-none-macosx_10_10_i386.macosx_10_11_i386.macosx_10_12_i386.whl" }, { "comment_text": "", "digests": { "md5": "fa99542e62a8564324d55d3dfe341d95", "sha256": "66b606349853bddcba50c2ac4616df9e0b168e07c8773bb5f2f6d16817d5cf7a" }, "downloads": -1, "filename": "iterfzf-0.2.0.16.8-py2.py3-none-macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.macosx_10_12_intel.macosx_10_12_x86_64.whl", "has_sig": false, "md5_digest": "fa99542e62a8564324d55d3dfe341d95", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.6.0", "size": 867058, "upload_time": "2017-06-05T15:23:43", "url": "https://files.pythonhosted.org/packages/66/dd/adbcc9e68c0d98a77fe7438f7a4ba2737c2b6eec711d648d01103853ec81/iterfzf-0.2.0.16.8-py2.py3-none-macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.macosx_10_12_intel.macosx_10_12_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "9ba8a0d0b50fc8fbc0a1d7aeb690962f", "sha256": "a6cc9611d6ce151295c16c14dafc418e65dcd64e1fc56f60517691d6af5a5b73" }, "downloads": -1, "filename": "iterfzf-0.2.0.16.8-py2.py3-none-manylinux1_i686.whl", "has_sig": false, "md5_digest": "9ba8a0d0b50fc8fbc0a1d7aeb690962f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.6.0", "size": 812539, "upload_time": "2017-06-05T15:23:51", "url": "https://files.pythonhosted.org/packages/f2/cf/e054b0058d47ebc087aabf8307cea5f81b3071c1704c86874dea5ea6da2e/iterfzf-0.2.0.16.8-py2.py3-none-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "a13ca0608b70b2376714d1675697c4fc", "sha256": "e790678eac2c1a5a596b8c910543413da7b0e1ab3e02cc27b00e3473925c9407" }, "downloads": -1, "filename": "iterfzf-0.2.0.16.8-py2.py3-none-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "a13ca0608b70b2376714d1675697c4fc", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.6.0", "size": 874351, "upload_time": "2017-06-05T15:23:54", "url": "https://files.pythonhosted.org/packages/65/c7/3dbb39a28db0315c05d8a849879a82b9fe53a5d3ddb36f4587c9bb7c6547/iterfzf-0.2.0.16.8-py2.py3-none-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "daf96c0a08d706fbf1fbed33e52703de", "sha256": "56f44c82b261b4edcdcdc2ca5de1f8c335275229473401cb2463e1ad5c6e5e14" }, "downloads": -1, "filename": "iterfzf-0.2.0.16.8-py2.py3-none-win32.whl", "has_sig": false, "md5_digest": "daf96c0a08d706fbf1fbed33e52703de", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.6.0", "size": 2247193, "upload_time": "2017-06-05T15:23:59", "url": "https://files.pythonhosted.org/packages/7a/20/6525b345ee7ba19c5fc92ed1d2e921fefb4f0179ff737e2fdf25eb16044f/iterfzf-0.2.0.16.8-py2.py3-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "5102989c87c83a159ef6f642f69c6ed9", "sha256": "f668ade42b814c9e47ae65e509e3b8cc5249a3b2e36e756214149e6c4f882d44" }, "downloads": -1, "filename": "iterfzf-0.2.0.16.8-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "5102989c87c83a159ef6f642f69c6ed9", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.6.0", "size": 2347958, "upload_time": "2017-06-05T15:24:02", "url": "https://files.pythonhosted.org/packages/40/f8/21e4bba5445d27327c8d39d5c22f659bb4fe7bfb1ba52658a75187d9ea3c/iterfzf-0.2.0.16.8-py2.py3-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "da1fb64fe1a5b70d97b55b30274b2ccb", "sha256": "6b9e3bbaefdb50d148925caa71dc3b2b259bee19094d01e64eab8f8f73c51c95" }, "downloads": -1, "filename": "iterfzf-0.2.0.16.8.tar.gz", "has_sig": false, "md5_digest": "da1fb64fe1a5b70d97b55b30274b2ccb", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.6.0", "size": 8601, "upload_time": "2017-06-05T15:24:04", "url": "https://files.pythonhosted.org/packages/3b/d2/e23f19f75e3ef66d11dcf0c5f8cfbb382fb52ddb76f40bf083a28231de94/iterfzf-0.2.0.16.8.tar.gz" } ], "0.2.0.17.0": [ { "comment_text": "", "digests": { "md5": "1874f9d97dcfcb0137fadfbe55463c1e", "sha256": "9bfd1bece40fd573a0a5dd91e538dd94f1baa8403961221a19fa123b7bf1c712" }, "downloads": -1, "filename": "iterfzf-0.2.0.17.0-py2.py3-none-macosx_10_10_i386.macosx_10_11_i386.macosx_10_12_i386.whl", "has_sig": false, "md5_digest": "1874f9d97dcfcb0137fadfbe55463c1e", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.6.0", "size": 856073, "upload_time": "2017-08-27T07:35:39", "url": "https://files.pythonhosted.org/packages/3d/2d/9450a6113101367c445871ba796a82714560624bdb6dee2af40d2307890e/iterfzf-0.2.0.17.0-py2.py3-none-macosx_10_10_i386.macosx_10_11_i386.macosx_10_12_i386.whl" }, { "comment_text": "", "digests": { "md5": "b89c49d0f01b8c2a11878bb1588b68f0", "sha256": "819bba74f007cd9322310f63d6569739362375a20d530a437c3fea5253c2b31f" }, "downloads": -1, "filename": "iterfzf-0.2.0.17.0-py2.py3-none-macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.macosx_10_12_intel.macosx_10_12_x86_64.whl", "has_sig": false, "md5_digest": "b89c49d0f01b8c2a11878bb1588b68f0", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.6.0", "size": 912825, "upload_time": "2017-08-27T07:35:42", "url": "https://files.pythonhosted.org/packages/29/7a/fe5881f53d319438bfcbc15882fc7d3d04231001b6876fd38c1560d472e9/iterfzf-0.2.0.17.0-py2.py3-none-macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.macosx_10_12_intel.macosx_10_12_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "cb275352ed2421e2d9089adc92bd42c7", "sha256": "75caad0d0311e01720a2ab15aaf59c7dc3897f785bc5672302bd8f6d14be1ead" }, "downloads": -1, "filename": "iterfzf-0.2.0.17.0-py2.py3-none-manylinux1_i686.whl", "has_sig": false, "md5_digest": "cb275352ed2421e2d9089adc92bd42c7", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.6.0", "size": 861202, "upload_time": "2017-08-27T07:35:50", "url": "https://files.pythonhosted.org/packages/c6/dc/20a90688633bc588c1969075313d9799823bc3662fd0d3d92b4c9d5decb5/iterfzf-0.2.0.17.0-py2.py3-none-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "b61390c25cd845f434a4cec8fa1b6766", "sha256": "0fec905aea3212874a68c5ebdddd3bbf5b4181930873c98732c7466fe35454c0" }, "downloads": -1, "filename": "iterfzf-0.2.0.17.0-py2.py3-none-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "b61390c25cd845f434a4cec8fa1b6766", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.6.0", "size": 924038, "upload_time": "2017-08-27T07:35:54", "url": "https://files.pythonhosted.org/packages/bd/2c/407f51c8ebac948ceb18ea74b31a11f23ebb82cedab317139fa7343887f8/iterfzf-0.2.0.17.0-py2.py3-none-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "d91d4826f6789ac359f991057684b347", "sha256": "de989f6ca8f9157fb0d3436296c9286b5b5d2a519ec8850c7d958b759dcbbcd9" }, "downloads": -1, "filename": "iterfzf-0.2.0.17.0-py2.py3-none-win32.whl", "has_sig": false, "md5_digest": "d91d4826f6789ac359f991057684b347", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.6.0", "size": 2363814, "upload_time": "2017-08-27T07:35:59", "url": "https://files.pythonhosted.org/packages/55/6a/8f58f332c1d072cf9baca716c11252f2105755a5f67ed63c82bc4c07c032/iterfzf-0.2.0.17.0-py2.py3-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "d0a6edae9e6a6ffc0e934cd1a8ffc786", "sha256": "cabc92adc67e44ef208b2b0aa2f5befd34799c2ea750798f21b94f1594853d84" }, "downloads": -1, "filename": "iterfzf-0.2.0.17.0-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "d0a6edae9e6a6ffc0e934cd1a8ffc786", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.6.0", "size": 2548919, "upload_time": "2017-08-27T07:36:03", "url": "https://files.pythonhosted.org/packages/1c/de/de7e192fe7ae305afc11ccbb04e2a023386c6254553c7b0abd5ddb86d00a/iterfzf-0.2.0.17.0-py2.py3-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "c33f56e9565aa988545e66d1983becca", "sha256": "7c217103a7e26510ee885e2081a5ee0abc8b71aecae84a548d0d448ef89c3cfa" }, "downloads": -1, "filename": "iterfzf-0.2.0.17.0.tar.gz", "has_sig": false, "md5_digest": "c33f56e9565aa988545e66d1983becca", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.6.0", "size": 8757, "upload_time": "2017-08-27T07:36:08", "url": "https://files.pythonhosted.org/packages/34/ac/9d276bf60b109b9f5a8a25e3e903b799e3c713385de7fa02c0d1da908cfe/iterfzf-0.2.0.17.0.tar.gz" } ], "0.3.0.17.1": [ { "comment_text": "", "digests": { "md5": "cf7822aed1869e375d31d647d4a87063", "sha256": "c1daecaeefa38d4cb6d5ce996cbe3cec096a5740468c0ffd178869d0c560e69a" }, "downloads": -1, "filename": "iterfzf-0.3.0.17.1-py2.py3-none-macosx_10_10_i386.macosx_10_11_i386.macosx_10_12_i386.whl", "has_sig": false, "md5_digest": "cf7822aed1869e375d31d647d4a87063", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.6.0", "size": 856149, "upload_time": "2017-10-16T02:55:40", "url": "https://files.pythonhosted.org/packages/57/a2/f08309e055eb098d4cb2d370ff7e42874df63b71100ca1c78a78f92072d7/iterfzf-0.3.0.17.1-py2.py3-none-macosx_10_10_i386.macosx_10_11_i386.macosx_10_12_i386.whl" }, { "comment_text": "", "digests": { "md5": "c2082cd268eb64e03e569115a9aa0e40", "sha256": "be2e46c6ab782a54e8f955ade101249dbcaf2e3cb530946b5ba2eb1b7d569792" }, "downloads": -1, "filename": "iterfzf-0.3.0.17.1-py2.py3-none-macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.macosx_10_12_intel.macosx_10_12_x86_64.whl", "has_sig": false, "md5_digest": "c2082cd268eb64e03e569115a9aa0e40", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.6.0", "size": 913362, "upload_time": "2017-10-16T02:55:42", "url": "https://files.pythonhosted.org/packages/be/03/0a7be2dd805ed1883b82930b050d8edb11a6bf909f224b4b58b5f17475b4/iterfzf-0.3.0.17.1-py2.py3-none-macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.macosx_10_12_intel.macosx_10_12_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "3989207d9a44b90f2447a13037f7668e", "sha256": "a5591b994dc9a496a51165d1228f42cddf8a0514d40e9854406b4fa89831273b" }, "downloads": -1, "filename": "iterfzf-0.3.0.17.1-py2.py3-none-manylinux1_i686.whl", "has_sig": false, "md5_digest": "3989207d9a44b90f2447a13037f7668e", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.6.0", "size": 861510, "upload_time": "2017-10-16T02:55:49", "url": "https://files.pythonhosted.org/packages/fe/31/edd24986590243bd1b10f41bbec8f410baa6687e9f430522096e8d6dd870/iterfzf-0.3.0.17.1-py2.py3-none-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "e0e3927aa83dec38ae7d1d529e1280a7", "sha256": "f8c35c864d10d5cf0ff93ffa054dde964ccbe004385004a2d5615ac44a1602d2" }, "downloads": -1, "filename": "iterfzf-0.3.0.17.1-py2.py3-none-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "e0e3927aa83dec38ae7d1d529e1280a7", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.6.0", "size": 924497, "upload_time": "2017-10-16T02:55:52", "url": "https://files.pythonhosted.org/packages/31/c9/2d38e00b3b781663f67a157969ec17da5b6811a4f9c2a10ee9456b68c4d2/iterfzf-0.3.0.17.1-py2.py3-none-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "9ac27f58b23c1ba78e2b65de2e738179", "sha256": "0b22b56d1e6411ac03be30b0dc055d828c3ad333a1b67359f72dd3885505e011" }, "downloads": -1, "filename": "iterfzf-0.3.0.17.1-py2.py3-none-win32.whl", "has_sig": false, "md5_digest": "9ac27f58b23c1ba78e2b65de2e738179", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.6.0", "size": 2363966, "upload_time": "2017-10-16T02:55:56", "url": "https://files.pythonhosted.org/packages/ff/30/d926cd33b7a0ea4d51bb922f428f0321fcb0fa739b666036b307c40ae7d8/iterfzf-0.3.0.17.1-py2.py3-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "a80f181272b1ecc25dd961493a199e58", "sha256": "ed9771db046fda646afe7fc62357a9ed60cb0a6e2dbd84f41a0aa1e977db9f09" }, "downloads": -1, "filename": "iterfzf-0.3.0.17.1-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "a80f181272b1ecc25dd961493a199e58", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.6.0", "size": 2549980, "upload_time": "2017-10-16T02:55:58", "url": "https://files.pythonhosted.org/packages/f5/f4/4f40ede437aa6d7b91818ae2c6d38ac50f646cdf0378e7cf2dbe6bb38e4d/iterfzf-0.3.0.17.1-py2.py3-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "ac1a8c065d1e310ba3eda5c04a936493", "sha256": "d91dab3dda0b28f218a5c518983575ed0372365029c0b95b90eae474d8223d58" }, "downloads": -1, "filename": "iterfzf-0.3.0.17.1.tar.gz", "has_sig": false, "md5_digest": "ac1a8c065d1e310ba3eda5c04a936493", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.6.0", "size": 9136, "upload_time": "2017-10-16T02:56:01", "url": "https://files.pythonhosted.org/packages/25/ad/e19a5f575fadf951445a90100a26f35871186027ae380722313057c14e8b/iterfzf-0.3.0.17.1.tar.gz" } ], "0.4.0.17.1": [ { "comment_text": "", "digests": { "md5": "082e05c9e8cb601be747027ea75cfb3e", "sha256": "12539922475be85fea5bf6458dffb0125c50e83c6533b6fe29f163df30203dd7" }, "downloads": -1, "filename": "iterfzf-0.4.0.17.1-py2.py3-none-macosx_10_10_i386.macosx_10_11_i386.macosx_10_12_i386.whl", "has_sig": false, "md5_digest": "082e05c9e8cb601be747027ea75cfb3e", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.6.0", "size": 915564, "upload_time": "2017-10-19T04:17:28", "url": "https://files.pythonhosted.org/packages/f6/6b/45cfc3af945cffe53340fad9a1e3d4dc1bf350bb98fee22cb5050c745086/iterfzf-0.4.0.17.1-py2.py3-none-macosx_10_10_i386.macosx_10_11_i386.macosx_10_12_i386.whl" }, { "comment_text": "", "digests": { "md5": "c9bd72e6cf74dcc5446f05b8ccb2b5c4", "sha256": "1c20ffafe6b9b84cb4317b81fbc3fb9444a5b64d2f7bfd212af1d84e6db529dd" }, "downloads": -1, "filename": "iterfzf-0.4.0.17.1-py2.py3-none-macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.macosx_10_12_intel.macosx_10_12_x86_64.whl", "has_sig": false, "md5_digest": "c9bd72e6cf74dcc5446f05b8ccb2b5c4", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.6.0", "size": 913496, "upload_time": "2017-10-19T04:17:31", "url": "https://files.pythonhosted.org/packages/72/ee/fbaf4084222ef40c56b11a39533bf880e59785ce2a3179c003e2d839cb77/iterfzf-0.4.0.17.1-py2.py3-none-macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.macosx_10_12_intel.macosx_10_12_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "64c08f2a6e3cbd539116d38d419beed2", "sha256": "d860cf4fe6c0ca76b804be8b1f8742924bf7e09581681b2ecbc57586e8a21fe1" }, "downloads": -1, "filename": "iterfzf-0.4.0.17.1-py2.py3-none-manylinux1_i686.whl", "has_sig": false, "md5_digest": "64c08f2a6e3cbd539116d38d419beed2", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.6.0", "size": 861643, "upload_time": "2017-10-19T04:17:39", "url": "https://files.pythonhosted.org/packages/80/8e/2e807b2805c091ac9183d418df52c7a25f5d906e86fc4f0e2fb20ef7696d/iterfzf-0.4.0.17.1-py2.py3-none-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "f763c23459cd8a594bfa13681e9841ba", "sha256": "03471a8d711f5b70c9871ded692667cdebeebf6021547464e11c54a0019e49a4" }, "downloads": -1, "filename": "iterfzf-0.4.0.17.1-py2.py3-none-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "f763c23459cd8a594bfa13681e9841ba", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.6.0", "size": 924630, "upload_time": "2017-10-19T04:17:41", "url": "https://files.pythonhosted.org/packages/66/68/1723f5f6c8ebf228455c312fd8974940b454999d228fc3e0b86736112c6f/iterfzf-0.4.0.17.1-py2.py3-none-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "87df24edee2be025654d54a0daf415f7", "sha256": "eeada2d4b737ef7f656abefe72d654a04c9ae7dcbb7d7ad3ffe63b7540b66707" }, "downloads": -1, "filename": "iterfzf-0.4.0.17.1-py2.py3-none-win32.whl", "has_sig": false, "md5_digest": "87df24edee2be025654d54a0daf415f7", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.6.0", "size": 2364099, "upload_time": "2017-10-19T04:17:46", "url": "https://files.pythonhosted.org/packages/9c/5e/c9823895a6c6756aa5175f416122cdb67907e0415436a87c7df20fb86848/iterfzf-0.4.0.17.1-py2.py3-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "abba8ab6f55dec66e6ebbf90cf55a702", "sha256": "39c4957ebd54de02f22cb4f958b8c9d71d3e4269977ff59a65b07baafe4db2e2" }, "downloads": -1, "filename": "iterfzf-0.4.0.17.1-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "abba8ab6f55dec66e6ebbf90cf55a702", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.6.0", "size": 2550113, "upload_time": "2017-10-19T04:17:49", "url": "https://files.pythonhosted.org/packages/df/7e/e7b45083a07a38718c24bb3fdf5c68a121593dafa83e66253a5a139ca4a4/iterfzf-0.4.0.17.1-py2.py3-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "1ee175a6bab0a9c84d0c6da71a461bfa", "sha256": "5b9b306e78ccc58fd84301fa44b5a2ad02f92b38a1760832e183f8fabe0fc38b" }, "downloads": -1, "filename": "iterfzf-0.4.0.17.1.tar.gz", "has_sig": false, "md5_digest": "1ee175a6bab0a9c84d0c6da71a461bfa", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.6.0", "size": 9236, "upload_time": "2017-10-19T04:17:52", "url": "https://files.pythonhosted.org/packages/83/be/52c8c324be332ab60a4a8b5f96c5b53f2b376d4a1949c327bd7a2e5e333d/iterfzf-0.4.0.17.1.tar.gz" } ], "0.4.0.17.3": [ { "comment_text": "", "digests": { "md5": "2609c8317c5261876610b6321b6ab320", "sha256": "15845bb0c56cd415cded441d52ec8a66cd8764a41267f9298b74feed9f1b0bf7" }, "downloads": -1, "filename": "iterfzf-0.4.0.17.3-py2.py3-none-macosx_10_10_i386.macosx_10_11_i386.macosx_10_12_i386.whl", "has_sig": false, "md5_digest": "2609c8317c5261876610b6321b6ab320", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.6.0", "size": 857273, "upload_time": "2017-12-03T18:01:18", "url": "https://files.pythonhosted.org/packages/a1/dc/2b34435d149e51c044be85d0804c57b07536498e55e8bd648cbc507c602f/iterfzf-0.4.0.17.3-py2.py3-none-macosx_10_10_i386.macosx_10_11_i386.macosx_10_12_i386.whl" }, { "comment_text": "", "digests": { "md5": "53ad02f19bb277713743986c0ab4f731", "sha256": "23506cc899b0b4af11c8e2230d986c4da02c11df314d09ed72cdf6c798c77bd2" }, "downloads": -1, "filename": "iterfzf-0.4.0.17.3-py2.py3-none-macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.macosx_10_12_intel.macosx_10_12_x86_64.whl", "has_sig": false, "md5_digest": "53ad02f19bb277713743986c0ab4f731", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.6.0", "size": 914629, "upload_time": "2017-12-03T18:01:21", "url": "https://files.pythonhosted.org/packages/11/56/d2afd57276f9a8d818a6793b02abcddd24fc98370536a9acab90c3aa388a/iterfzf-0.4.0.17.3-py2.py3-none-macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.macosx_10_12_intel.macosx_10_12_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "72ff23bfab711dc1926c85a5f9500356", "sha256": "2e648d026eb75f2c9de9c4568a1840788070ca1c8b7aaf3d940e9e4f5c082d73" }, "downloads": -1, "filename": "iterfzf-0.4.0.17.3-py2.py3-none-manylinux1_i686.whl", "has_sig": false, "md5_digest": "72ff23bfab711dc1926c85a5f9500356", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.6.0", "size": 862475, "upload_time": "2017-12-03T18:01:32", "url": "https://files.pythonhosted.org/packages/bf/33/9cdf70148c65cb7458bb84b88abef3b9e5c57a0b98cdeb92d42a9bb3034d/iterfzf-0.4.0.17.3-py2.py3-none-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "5b4982cf3449f318428130c975cd3073", "sha256": "92efa4a42230e21bdc493502cf5c6995572baa20557e0678963975012ca40dab" }, "downloads": -1, "filename": "iterfzf-0.4.0.17.3-py2.py3-none-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "5b4982cf3449f318428130c975cd3073", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.6.0", "size": 926124, "upload_time": "2017-12-03T18:01:35", "url": "https://files.pythonhosted.org/packages/45/2e/6c9ce456bf1af2aecec5c98057b2b39ac77367e6f21f296d274f5aae41c2/iterfzf-0.4.0.17.3-py2.py3-none-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "1bf207132c30a6afd67782a84fdbf6e6", "sha256": "77fca51c9e4e8396bc5602b22b95d07614838f9b2e4ca00b6fca5e52fff03ba6" }, "downloads": -1, "filename": "iterfzf-0.4.0.17.3-py2.py3-none-win32.whl", "has_sig": false, "md5_digest": "1bf207132c30a6afd67782a84fdbf6e6", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.6.0", "size": 2366922, "upload_time": "2017-12-03T18:01:43", "url": "https://files.pythonhosted.org/packages/8d/d9/d37418f9e98038b021d0afa6fd0966d943ae82edc44bb1090647bb4c88e5/iterfzf-0.4.0.17.3-py2.py3-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "b6b75f240e4f8eef5247dfd17175a8ec", "sha256": "37fd991f845fafc3fce21f3ab0f421cd29a4a6943b7d9f8c4da057b969b98b87" }, "downloads": -1, "filename": "iterfzf-0.4.0.17.3-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "b6b75f240e4f8eef5247dfd17175a8ec", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.6.0", "size": 2553033, "upload_time": "2017-12-03T18:01:47", "url": "https://files.pythonhosted.org/packages/28/0c/fecd214a7b78da5d22e6362dc2c6dde04a7434f51652fc73659f760028e1/iterfzf-0.4.0.17.3-py2.py3-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "8380caf89c10475f66459c576de8fb92", "sha256": "d58497135ea417777e9f518356ca3613198ffa155667a7ac918495cab9c22abb" }, "downloads": -1, "filename": "iterfzf-0.4.0.17.3.tar.gz", "has_sig": false, "md5_digest": "8380caf89c10475f66459c576de8fb92", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.6.0", "size": 9268, "upload_time": "2017-12-03T18:01:52", "url": "https://files.pythonhosted.org/packages/a1/7d/a4a5de90f3cdd825cf9bfcb6ea6270533ec8127b1e328eecf7b499084c59/iterfzf-0.4.0.17.3.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "2609c8317c5261876610b6321b6ab320", "sha256": "15845bb0c56cd415cded441d52ec8a66cd8764a41267f9298b74feed9f1b0bf7" }, "downloads": -1, "filename": "iterfzf-0.4.0.17.3-py2.py3-none-macosx_10_10_i386.macosx_10_11_i386.macosx_10_12_i386.whl", "has_sig": false, "md5_digest": "2609c8317c5261876610b6321b6ab320", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.6.0", "size": 857273, "upload_time": "2017-12-03T18:01:18", "url": "https://files.pythonhosted.org/packages/a1/dc/2b34435d149e51c044be85d0804c57b07536498e55e8bd648cbc507c602f/iterfzf-0.4.0.17.3-py2.py3-none-macosx_10_10_i386.macosx_10_11_i386.macosx_10_12_i386.whl" }, { "comment_text": "", "digests": { "md5": "53ad02f19bb277713743986c0ab4f731", "sha256": "23506cc899b0b4af11c8e2230d986c4da02c11df314d09ed72cdf6c798c77bd2" }, "downloads": -1, "filename": "iterfzf-0.4.0.17.3-py2.py3-none-macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.macosx_10_12_intel.macosx_10_12_x86_64.whl", "has_sig": false, "md5_digest": "53ad02f19bb277713743986c0ab4f731", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.6.0", "size": 914629, "upload_time": "2017-12-03T18:01:21", "url": "https://files.pythonhosted.org/packages/11/56/d2afd57276f9a8d818a6793b02abcddd24fc98370536a9acab90c3aa388a/iterfzf-0.4.0.17.3-py2.py3-none-macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.macosx_10_12_intel.macosx_10_12_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "72ff23bfab711dc1926c85a5f9500356", "sha256": "2e648d026eb75f2c9de9c4568a1840788070ca1c8b7aaf3d940e9e4f5c082d73" }, "downloads": -1, "filename": "iterfzf-0.4.0.17.3-py2.py3-none-manylinux1_i686.whl", "has_sig": false, "md5_digest": "72ff23bfab711dc1926c85a5f9500356", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.6.0", "size": 862475, "upload_time": "2017-12-03T18:01:32", "url": "https://files.pythonhosted.org/packages/bf/33/9cdf70148c65cb7458bb84b88abef3b9e5c57a0b98cdeb92d42a9bb3034d/iterfzf-0.4.0.17.3-py2.py3-none-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "5b4982cf3449f318428130c975cd3073", "sha256": "92efa4a42230e21bdc493502cf5c6995572baa20557e0678963975012ca40dab" }, "downloads": -1, "filename": "iterfzf-0.4.0.17.3-py2.py3-none-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "5b4982cf3449f318428130c975cd3073", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.6.0", "size": 926124, "upload_time": "2017-12-03T18:01:35", "url": "https://files.pythonhosted.org/packages/45/2e/6c9ce456bf1af2aecec5c98057b2b39ac77367e6f21f296d274f5aae41c2/iterfzf-0.4.0.17.3-py2.py3-none-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "1bf207132c30a6afd67782a84fdbf6e6", "sha256": "77fca51c9e4e8396bc5602b22b95d07614838f9b2e4ca00b6fca5e52fff03ba6" }, "downloads": -1, "filename": "iterfzf-0.4.0.17.3-py2.py3-none-win32.whl", "has_sig": false, "md5_digest": "1bf207132c30a6afd67782a84fdbf6e6", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.6.0", "size": 2366922, "upload_time": "2017-12-03T18:01:43", "url": "https://files.pythonhosted.org/packages/8d/d9/d37418f9e98038b021d0afa6fd0966d943ae82edc44bb1090647bb4c88e5/iterfzf-0.4.0.17.3-py2.py3-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "b6b75f240e4f8eef5247dfd17175a8ec", "sha256": "37fd991f845fafc3fce21f3ab0f421cd29a4a6943b7d9f8c4da057b969b98b87" }, "downloads": -1, "filename": "iterfzf-0.4.0.17.3-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "b6b75f240e4f8eef5247dfd17175a8ec", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.6.0", "size": 2553033, "upload_time": "2017-12-03T18:01:47", "url": "https://files.pythonhosted.org/packages/28/0c/fecd214a7b78da5d22e6362dc2c6dde04a7434f51652fc73659f760028e1/iterfzf-0.4.0.17.3-py2.py3-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "8380caf89c10475f66459c576de8fb92", "sha256": "d58497135ea417777e9f518356ca3613198ffa155667a7ac918495cab9c22abb" }, "downloads": -1, "filename": "iterfzf-0.4.0.17.3.tar.gz", "has_sig": false, "md5_digest": "8380caf89c10475f66459c576de8fb92", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.6.0", "size": 9268, "upload_time": "2017-12-03T18:01:52", "url": "https://files.pythonhosted.org/packages/a1/7d/a4a5de90f3cdd825cf9bfcb6ea6270533ec8127b1e328eecf7b499084c59/iterfzf-0.4.0.17.3.tar.gz" } ] }