{ "info": { "author": "Rocky Bernstein", "author_email": "rocky@gnu.org", "bugtrack_url": null, "classifiers": [], "description": "|Linux Build Status| |Windows Build Status| |License| |Supported Python Versions|\n\nSynopsis\n--------\n\nThe *pyficache* module allows one to get any line from any file,\ncaching lines of the file on first access to the file. Although the\nfile may be any file, this package is more tailored to the case\nwhere the file is a Python script.\n\nHere, the file is parsed to determine statement bounderies,\nand a copies of the file syntax-highlighted are also saved.\n\nAlso saved is file information such as when the file was last modified\nand a SHA1 of the file. These are useful in determining if the file\nhas changed and verifying the contents of the file.\n\nBy caching contents, access is sped up when small small random sets of lines\nare read from a single file, in particular in a debugger to show\nsource lines.\n\nA file path can be remapped to another path. This is useful for\nexample when debugging remotely and the remote file path may be\ndifferent from the path on a local filesystem. In the `trepan2 `_\n`debugger `_, *eval* and *exec* strings are\nsaved in a temporary file and then the pseudo-filename `` is\nremapped to that temporary file name.\n\nSimilarly lines within a file can be remapped to other lines. This may\nbe useful in preprocessors or template systems where ones wants to\nmake a correspondence between the template file and the expanded\nPython file as seen in a tool using that underlying Python file such as\na debugger or profiler.\n\nSummary\n-------\n\n.. code:: python\n\nimport pyficache\nfilename = __file__ # e.g. '/tmp/myprogram'\n# return all lines of filename as an array\nlines = pyficache.getlines(filename)\n\n# return line 6, and reload all lines if the file has changed.\nline = pyficache.getline(filename, 6, {'reload_on_change': True})\n\n# return line 6 syntax highlighted via pygments using style 'emacs'\nline = pyficache.getline(filename, 6, {'style': 'emacs'})\n\npyficache.remap_file('/tmp/myprogram.py', 'another-name')\nline_from_alias = pyficache.getline('another-name', 6)\n\nassert __file__, pyficache.remove_remap_file('another-name')\n\n# another-name is no longer an alias for /tmp/myprogram\nassert None, pyficache.remove_remap_file('another-name')\n\n# Clear cache for __file__\npyficache.clear_file_cache(__file__)\n\n# Clear all cached files.\npyficache.clear_file_cache()\n\n# Check for modifications of all cached files.\npyficache.update_cache()\n\nCredits\n-------\n\nThis is a port of the my Ruby linecache_ module which in turn is based\non the Python linecache module.\n\ncoverage_ provides the cool stuff to figure out the lines containing\nPython statements.\n\n.. |License| image:: https://img.shields.io/pypi/l/pyficache.svg\n:target: https://pypi.python.org/pypi/pyfiecache\n:alt: License\n.. _coverage: http://nedbatchelder.com/code/coverage/\n.. _linecache: https://rubygems.org/gems/linecache\n\n.. |Downloads| image:: https://pypip.in/download/pyficache/badge.svg\n.. |Linux Build Status| image:: https://travis-ci.org/rocky/python-filecache.svg\n:target: https://travis-ci.org/rocky/python-filecache/\n.. |Windows Build status| image:: https://img.shields.io/appveyor/ci/rocky/python-filecache/master.svg?label=windows%20build\n:target: https://ci.appveyor.com/project/rocky/python-filecache/branch/master\n.. |Latest Version| image:: https://pypip.in/version/pyficache/badge.svg?text=version\n:target: https://pypi.python.org/pypi/pyficache/\n.. |Supported Python versions| image:: https://pypip.in/py_versions/pyficache/badge.svg\n:target: https://pypi.python.org/pypi/pyficache/\n.. |Supported Python Versions| image:: https://img.shields.io/pypi/pyversions/pyficache.svg\n:target: https://pypi.python.org/pypi/pyficache/", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "http://github.com/rocky/python-filecache", "keywords": "", "license": "GPL", "maintainer": "", "maintainer_email": "", "name": "pyficache", "package_url": "https://pypi.org/project/pyficache/", "platform": "", "project_url": "https://pypi.org/project/pyficache/", "project_urls": { "Homepage": "http://github.com/rocky/python-filecache" }, "release_url": "https://pypi.org/project/pyficache/1.0.1/", "requires_dist": null, "requires_python": "", "summary": "Cache lines and file information which are generally Python programs", "version": "1.0.1" }, "last_serial": 3770408, "releases": { "0.1.0": [ { "comment_text": "", "digests": { "md5": "c248b189a370b2b7c8255ad96cdeee61", "sha256": "5bf146a8e9c3b5e877a1cb6e7978a5f8e129fba39a70e8d859b354b10941ba91" }, "downloads": -1, "filename": "pyficache-0.1.0-py2.5.egg", "has_sig": false, "md5_digest": "c248b189a370b2b7c8255ad96cdeee61", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 9037, "upload_time": "2009-03-08T23:29:17", "url": "https://files.pythonhosted.org/packages/06/e0/d3442c8ea962128f5fd4a7887d9a421d123938d1701c444852dccef32698/pyficache-0.1.0-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "22aed8bdff3d51a3636e1b94695b6edd", "sha256": "2d67ca5a151477168af2f8b5a43ad99529788a63a79cdc77cdec89a9589aac57" }, "downloads": -1, "filename": "pyficache-0.1.0-py2.6.egg", "has_sig": false, "md5_digest": "22aed8bdff3d51a3636e1b94695b6edd", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 9010, "upload_time": "2009-03-08T23:30:53", "url": "https://files.pythonhosted.org/packages/76/3a/78cf3397c9ed742a5a2c9537aaad63e41e7b8428f1ef48af94201005f5e1/pyficache-0.1.0-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "8c4ee733230f45566c74d81a947d2511", "sha256": "7366723beb08d3fd9e3f1235adc6a15f46fcad24e5f142cfe7513babae84f181" }, "downloads": -1, "filename": "pyficache-0.1.0.tar.gz", "has_sig": false, "md5_digest": "8c4ee733230f45566c74d81a947d2511", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19904, "upload_time": "2009-03-08T23:29:16", "url": "https://files.pythonhosted.org/packages/5a/6f/62ed2f472a568ce15974bba9da1308d33269b25a23d39af254ca9adf2c07/pyficache-0.1.0.tar.gz" } ], "0.1.2": [ { "comment_text": "", "digests": { "md5": "dfabf3263d0ac74c78c08ec4e87ce36a", "sha256": "b1cb8dcd07ed1f8925cad00235ec98cda6f406d2a1d81cb2f955fbfb65838f5e" }, "downloads": -1, "filename": "pyficache-0.1.2-py2.5.egg", "has_sig": false, "md5_digest": "dfabf3263d0ac74c78c08ec4e87ce36a", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 1886, "upload_time": "2009-03-15T07:18:39", "url": "https://files.pythonhosted.org/packages/08/95/cf336e7ab492d2d011ec32042a1a4ada6bebe3d50d2688faac1a10124867/pyficache-0.1.2-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "614b4fcd1f0a20148186a3ca781471dc", "sha256": "0b5da242d779843a4c31603140fa843af3fbfd13c3ce96ab0f46ad8a5e9edb24" }, "downloads": -1, "filename": "pyficache-0.1.2-py2.6.egg", "has_sig": false, "md5_digest": "614b4fcd1f0a20148186a3ca781471dc", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 9032, "upload_time": "2009-03-15T07:20:31", "url": "https://files.pythonhosted.org/packages/0c/37/615c0d94a394260bf07e3c7f144e11d9f5b801a0c2928e81e1795f7ef0bf/pyficache-0.1.2-py2.6.egg" } ], "0.1.3": [ { "comment_text": "", "digests": { "md5": "4968136676e82b71bfae52cd38172ea6", "sha256": "715ca57e56d51c4d88890306dee468db0a7bcc830f02f67828fee36add46fa7a" }, "downloads": -1, "filename": "pyficache-0.1.3-py2.5.egg", "has_sig": false, "md5_digest": "4968136676e82b71bfae52cd38172ea6", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 9070, "upload_time": "2009-03-16T03:28:12", "url": "https://files.pythonhosted.org/packages/0e/0b/9f3006bf7dcc75a102ccbe5f50e8e069dbfc7a7ba2eb4b60ed6785567561/pyficache-0.1.3-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "4f4054c31f4a2575fad9f836ef512264", "sha256": "caa59bf6f2d7858588d00312307627685f542b5f7dc5dfd073dd7b008ffa2774" }, "downloads": -1, "filename": "pyficache-0.1.3-py2.6.egg", "has_sig": false, "md5_digest": "4f4054c31f4a2575fad9f836ef512264", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 9044, "upload_time": "2009-03-16T03:33:09", "url": "https://files.pythonhosted.org/packages/7d/99/4e68eda960727bcba78c19c08a25d197b8034230f6d01d542374c470bdc1/pyficache-0.1.3-py2.6.egg" } ], "0.1.4": [ { "comment_text": "", "digests": { "md5": "2272be184230c51ab50e5e6ce1c8afd0", "sha256": "804f61787531213e90256beadce1c468d5fe003531fc300ca8c060f5382c2410" }, "downloads": -1, "filename": "pyficache-0.1.4-py2.6.egg", "has_sig": false, "md5_digest": "2272be184230c51ab50e5e6ce1c8afd0", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 9244, "upload_time": "2010-10-29T02:32:16", "url": "https://files.pythonhosted.org/packages/fb/1b/5053ee838ca6abc3e92c9211dd31101349885543912d7cec59bafebc6b0e/pyficache-0.1.4-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "7f76647f16d64745b23560b10ae8b5a3", "sha256": "f12ee33304a7155e7371a9adeb174ff4938b810c8a1f86189eaf34373a1859c6" }, "downloads": -1, "filename": "pyficache-0.1.4.tar.gz", "has_sig": false, "md5_digest": "7f76647f16d64745b23560b10ae8b5a3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21186, "upload_time": "2010-10-29T02:32:27", "url": "https://files.pythonhosted.org/packages/6a/26/f4755fea151854916704965f834f23e39c9f1e0f2f3d819175d12a21c1b9/pyficache-0.1.4.tar.gz" } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "ab6b654d68902b9d01047e488cb6fe82", "sha256": "3fec73aa3960b07dfe0b644c381913ce2655686c0d9fe55f12ace239e406dd76" }, "downloads": -1, "filename": "pyficache-0.2.0-py2.6.egg", "has_sig": false, "md5_digest": "ab6b654d68902b9d01047e488cb6fe82", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 12539, "upload_time": "2013-01-02T02:36:13", "url": "https://files.pythonhosted.org/packages/93/64/7c5a713f6c29488c408fb86f4fbbb6c99eabe7afe4f022774f54a7b632c9/pyficache-0.2.0-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "49aeb74acf5de630f64530332637e355", "sha256": "63cf11b777ec1e97deeb3a50132c70e9de6ef9f22adb77c59788a3d53cd10fe4" }, "downloads": -1, "filename": "pyficache-0.2.0-py2.7.egg", "has_sig": false, "md5_digest": "49aeb74acf5de630f64530332637e355", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 12488, "upload_time": "2013-01-01T14:27:07", "url": "https://files.pythonhosted.org/packages/34/ff/35ff756875609f0cd0e041b36f9d9fe9f6a6387fa6244942359cf6566d4b/pyficache-0.2.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "44212ff7bab68d3e9ab6580d2d76c432", "sha256": "55fc15fd9e49271813d759e910fc41329faedbb07d3ff4e531c3b12bdf4430ab" }, "downloads": -1, "filename": "pyficache-0.2.0.tar.gz", "has_sig": false, "md5_digest": "44212ff7bab68d3e9ab6580d2d76c432", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23349, "upload_time": "2013-01-01T14:46:16", "url": "https://files.pythonhosted.org/packages/e8/03/0f97a83c7e389f9341a85dfc78fdf48c03653532121976571166f37d5375/pyficache-0.2.0.tar.gz" } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "2fa336a07c7d52b0f077b138d5fc7664", "sha256": "94b64724f1100e3e9bd743e9a2af0ee4298acae1df473e63a8488801f7b78ace" }, "downloads": -1, "filename": "pyficache-0.2.1-py2.6.egg", "has_sig": false, "md5_digest": "2fa336a07c7d52b0f077b138d5fc7664", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 12750, "upload_time": "2013-01-06T15:12:07", "url": "https://files.pythonhosted.org/packages/0d/cc/4a1285dc5c33ff52874261175a1d52e439bb9e2206100a9df8469d8b8147/pyficache-0.2.1-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "73ce45638903f20c8e2d68490aacfd79", "sha256": "00b9dde970299a12bcf74a6bb8dc47f76efc5a27d917b0e9247b703a8f457d46" }, "downloads": -1, "filename": "pyficache-0.2.1-py2.7.egg", "has_sig": false, "md5_digest": "73ce45638903f20c8e2d68490aacfd79", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 12689, "upload_time": "2013-01-06T13:03:21", "url": "https://files.pythonhosted.org/packages/75/ac/f521358a97aa25319a8ed1d567be4a936a4358d424ac6376432396e5783d/pyficache-0.2.1-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "b63dfaf084e7d52d6b84e4b9ab6f3340", "sha256": "59179a3fec31f4f506572924fd5134ad3c2740f0bb516fcfbad6a1225ce1db53" }, "downloads": -1, "filename": "pyficache-0.2.1.tar.gz", "has_sig": false, "md5_digest": "b63dfaf084e7d52d6b84e4b9ab6f3340", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11231, "upload_time": "2013-01-06T20:11:23", "url": "https://files.pythonhosted.org/packages/77/1a/914db6602f75528872f929cb22063b1fdeb6f68938289f42821659f6123b/pyficache-0.2.1.tar.gz" } ], "0.2.2": [ { "comment_text": "", "digests": { "md5": "7644b1efcae21b5405204ce24738b2b0", "sha256": "1ba54446fad5dd3dbf89a9d01a82279b0a0dc74500fe65dfd42975bb7df54958" }, "downloads": -1, "filename": "pyficache-0.2.2001-py2.5.egg", "has_sig": false, "md5_digest": "7644b1efcae21b5405204ce24738b2b0", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 12996, "upload_time": "2013-03-17T16:50:33", "url": "https://files.pythonhosted.org/packages/cd/f0/030b7f5b814c57a273a3e4250db86bfec99d208d7a6c9e5e7b4d43ca5ad6/pyficache-0.2.2001-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "8bb01cf08215c88e8087579541f3b67d", "sha256": "72fa37fb782c8c722d91e5eec3c37846f38cd17078bbd9677aeb1b19b5d8be6e" }, "downloads": -1, "filename": "pyficache-0.2.2-py2.6.egg", "has_sig": false, "md5_digest": "8bb01cf08215c88e8087579541f3b67d", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 12958, "upload_time": "2013-02-11T00:30:07", "url": "https://files.pythonhosted.org/packages/74/f5/cfef2106437669727ebc67c0417cebcea285df82ad7ad7a4f1e970a7fa6a/pyficache-0.2.2-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "ed02d3873d38dbd9ba0ab6a57d250ed5", "sha256": "4b0a4832ed2f6b22b7107b3b9cf142c16c559cc0d0133e6fdcff336aa4c44029" }, "downloads": -1, "filename": "pyficache-0.2.2-py2.7.egg", "has_sig": false, "md5_digest": "ed02d3873d38dbd9ba0ab6a57d250ed5", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 12910, "upload_time": "2013-02-10T23:40:34", "url": "https://files.pythonhosted.org/packages/14/7a/244de93bb629d0edf2408f78d9573214ef01d43af66735b61ac3a20917b8/pyficache-0.2.2-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "2665c34d8cb87b2196e39af7300f171c", "sha256": "391dff758c26c22512a7f15c08bd989fc2f00d998c0b247f40334238dbdda23b" }, "downloads": -1, "filename": "pyficache-0.2.2-py3.2.egg", "has_sig": false, "md5_digest": "2665c34d8cb87b2196e39af7300f171c", "packagetype": "bdist_egg", "python_version": "3.2", "requires_python": null, "size": 13130, "upload_time": "2013-02-11T00:34:44", "url": "https://files.pythonhosted.org/packages/db/30/b477fb3c69ddd1b98bebb17aa853c9ab5817186ebbf17cab46afebe148ef/pyficache-0.2.2-py3.2.egg" }, { "comment_text": "", "digests": { "md5": "3581e9f43273fea2f10e4833f5f8111d", "sha256": "06fdba895f08bcf9a72669f2708fcd29fe1aaf4da7a7aa400da4fc3f40bcbe33" }, "downloads": -1, "filename": "pyficache-0.2.2.tar.gz", "has_sig": false, "md5_digest": "3581e9f43273fea2f10e4833f5f8111d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11374, "upload_time": "2013-02-10T23:40:40", "url": "https://files.pythonhosted.org/packages/be/04/b77580e92263a19f301936d863c20a25e5ea2ce281467a0698fa9db72f98/pyficache-0.2.2.tar.gz" } ], "0.2.3": [ { "comment_text": "", "digests": { "md5": "0df4f7c367f8a027fde775a29e8dda18", "sha256": "049dab5496209c8407904e2ce08b1fea42424d627c6703534f3d8051b02e141c" }, "downloads": -1, "filename": "pyficache-0.2.3-py2.4.egg", "has_sig": false, "md5_digest": "0df4f7c367f8a027fde775a29e8dda18", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 13208, "upload_time": "2013-03-24T16:26:52", "url": "https://files.pythonhosted.org/packages/52/08/22951928ce8db9a2eac2824eca046ea4513b2c0aa68b1e6959e0e2011776/pyficache-0.2.3-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "9e31a75b561a26f03fad13a0c0597da6", "sha256": "07d7580dcdbe0d9455dff630c4014a945ca7e029c04ec279e12be20f555e9afa" }, "downloads": -1, "filename": "pyficache-0.2.3-py2.5.egg", "has_sig": false, "md5_digest": "9e31a75b561a26f03fad13a0c0597da6", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 12995, "upload_time": "2013-03-24T16:26:58", "url": "https://files.pythonhosted.org/packages/e2/37/ab056006c6e93f369ef0a6b3b75e30e1e4701490309f55da3176abd006c7/pyficache-0.2.3-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "2faa46b5ae6b1bf10e1650fd83111865", "sha256": "caf0cdca131509bbd83cc39ae5a56a8eb7ebaa5e4a361bcd6fdf92a1fd123ccf" }, "downloads": -1, "filename": "pyficache-0.2.3-py2.6.egg", "has_sig": false, "md5_digest": "2faa46b5ae6b1bf10e1650fd83111865", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 12956, "upload_time": "2013-03-24T16:27:03", "url": "https://files.pythonhosted.org/packages/19/55/cefdb687daae39f72eeb050e9bfe9c41c5c0d77a757cd675651f614f8489/pyficache-0.2.3-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "858fdfdd187d7bd97ecadf28624f2c8c", "sha256": "6a0782ab819d9386c2dad92a6db7520a95e043c705447a1172edb2a52fe8244d" }, "downloads": -1, "filename": "pyficache-0.2.3-py2.7.egg", "has_sig": false, "md5_digest": "858fdfdd187d7bd97ecadf28624f2c8c", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 12931, "upload_time": "2013-03-24T16:44:54", "url": "https://files.pythonhosted.org/packages/97/4d/613afa7b0588ebe3f2bb5eb5c2b10ea9678d9548c0a42b178c8739296197/pyficache-0.2.3-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "1219964be7c94a62b76d3fb197f9473d", "sha256": "712ee314952efb6f1bd0b3f451e47eb966660edff40e23553ee76d441a3e5b95" }, "downloads": -1, "filename": "pyficache-0.2.3-py3.2.egg", "has_sig": false, "md5_digest": "1219964be7c94a62b76d3fb197f9473d", "packagetype": "bdist_egg", "python_version": "3.2", "requires_python": null, "size": 13151, "upload_time": "2013-03-24T16:44:28", "url": "https://files.pythonhosted.org/packages/8e/fd/4bde4c7b1224a055c2a0ae3b034d9b5548409df3df858846fcea1c7508af/pyficache-0.2.3-py3.2.egg" }, { "comment_text": "", "digests": { "md5": "a47e815618710fb7cdb6482d38791d2e", "sha256": "3b9f537fc19cd711a43268f4a6719acfbff34e3de605dd3535109e9eb4e8e7f9" }, "downloads": -1, "filename": "pyficache-0.2.3-py3.3.egg", "has_sig": false, "md5_digest": "a47e815618710fb7cdb6482d38791d2e", "packagetype": "bdist_egg", "python_version": "3.3", "requires_python": null, "size": 13326, "upload_time": "2013-03-24T16:27:09", "url": "https://files.pythonhosted.org/packages/ac/4a/d56f73be6b25fa2ace103929c1c98e1abc6a1a604fee871ad3148cf7634f/pyficache-0.2.3-py3.3.egg" }, { "comment_text": "", "digests": { "md5": "fa58ad82afbab85b20d2cd75b0d3950b", "sha256": "78b7c4d2a9e94545fc36f1aa460b4fbe2f7e0af8bede28ddf2d05b4b5753ad0e" }, "downloads": -1, "filename": "pyficache-0.2.3.tar.gz", "has_sig": false, "md5_digest": "fa58ad82afbab85b20d2cd75b0d3950b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11473, "upload_time": "2013-03-24T16:28:29", "url": "https://files.pythonhosted.org/packages/68/9c/7c165725ccd0f40c70b3c39422eebd13184875bb19136e4d7439b41f64bc/pyficache-0.2.3.tar.gz" } ], "0.2.4": [ { "comment_text": "", "digests": { "md5": "e916bc44a0b8dfd6b3ed3614ce744a20", "sha256": "d379af74ca57bda1b3544cabfeebf8d53560ff43f6f9fc4eebee812f5b9defdf" }, "downloads": -1, "filename": "pyficache-0.2.4-py2.6.egg", "has_sig": false, "md5_digest": "e916bc44a0b8dfd6b3ed3614ce744a20", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 12850, "upload_time": "2015-01-25T00:41:12", "url": "https://files.pythonhosted.org/packages/2f/a5/6fc6b397bf14598a8cb4bb410b689c59044a4fb85da87a652d465a804800/pyficache-0.2.4-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "1d9c2068a436fbabeb66a13b24327dfd", "sha256": "bd05fa72f175514acd38a9c56625cfa5881b64d66c6a0a76230ce5d88566c9f9" }, "downloads": -1, "filename": "pyficache-0.2.4-py2.7.egg", "has_sig": false, "md5_digest": "1d9c2068a436fbabeb66a13b24327dfd", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 12802, "upload_time": "2015-01-25T00:41:14", "url": "https://files.pythonhosted.org/packages/af/a8/0bb238015b1aa9989fbeb0d60e9c3fde3676a631ee6d5f35ac3b54de5dda/pyficache-0.2.4-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "e489f7680286716881f7f0628f81c9f8", "sha256": "4885d5cc7131e5716238804ded9c7fe840a4b0d1b646994cb3bc443b8df99f1d" }, "downloads": -1, "filename": "pyficache-0.2.4-py3.2.egg", "has_sig": false, "md5_digest": "e489f7680286716881f7f0628f81c9f8", "packagetype": "bdist_egg", "python_version": "3.2", "requires_python": null, "size": 12968, "upload_time": "2015-01-25T00:41:17", "url": "https://files.pythonhosted.org/packages/7a/7e/ced4bbab75c8ad6a7f3d4b47715ed1ad3e842a7375c038df64655ebfd2ff/pyficache-0.2.4-py3.2.egg" }, { "comment_text": "", "digests": { "md5": "0a8c28d38e8e05fa45d74323a2ce16b7", "sha256": "359efad4ba34e02f63a01f1f060f097ffe5bb061bf411ba68111d992b9a8f856" }, "downloads": -1, "filename": "pyficache-0.2.4-py3.3.egg", "has_sig": false, "md5_digest": "0a8c28d38e8e05fa45d74323a2ce16b7", "packagetype": "bdist_egg", "python_version": "3.3", "requires_python": null, "size": 13215, "upload_time": "2015-01-25T00:41:20", "url": "https://files.pythonhosted.org/packages/7c/fb/2f8db4001463551298116c871eda95353dc129ce4ef9c1b823b32f6e972e/pyficache-0.2.4-py3.3.egg" }, { "comment_text": "", "digests": { "md5": "2264f3627bd32a489e3c744e9d792caa", "sha256": "e2043dc6fb0293f8962721e3bd0e6ddc894585abdbd37e2e251de3523161c3e7" }, "downloads": -1, "filename": "pyficache-0.2.4-py3.4.egg", "has_sig": false, "md5_digest": "2264f3627bd32a489e3c744e9d792caa", "packagetype": "bdist_egg", "python_version": "3.4", "requires_python": null, "size": 12947, "upload_time": "2015-01-25T00:41:05", "url": "https://files.pythonhosted.org/packages/11/80/486fc94f63e2302980545e6e34d263397b5fb684290cc8fbbdd89e7efac9/pyficache-0.2.4-py3.4.egg" }, { "comment_text": "", "digests": { "md5": "47e90800c3002f9031e1700fefb1ef61", "sha256": "8ebb4be9af3c5f1e284e3d57554ff6ef25d6ef94aaff80bd88717ca422f1e06b" }, "downloads": -1, "filename": "pyficache-0.2.4.tar.gz", "has_sig": false, "md5_digest": "47e90800c3002f9031e1700fefb1ef61", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23897, "upload_time": "2015-01-25T00:41:43", "url": "https://files.pythonhosted.org/packages/b6/74/143e78440a3313333864ed6c7075d9316f88a2f19f79e1b0789549a9d568/pyficache-0.2.4.tar.gz" } ], "0.2.5": [ { "comment_text": "", "digests": { "md5": "7f6491844108d9b4c868c8ddbc6f5960", "sha256": "abfc00c1848736d52e2eb7222d8a64ff7f2212de458dd2adbac7208f1a80b1af" }, "downloads": -1, "filename": "pyficache-0.2.5-py2.6.egg", "has_sig": false, "md5_digest": "7f6491844108d9b4c868c8ddbc6f5960", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 13539, "upload_time": "2015-05-15T08:42:18", "url": "https://files.pythonhosted.org/packages/33/ef/10551912c296b241177f20c459a388f7babf8ecea2e7c61f3df40410a982/pyficache-0.2.5-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "230357d5764ba7fb54238e67f633b487", "sha256": "9baa1b6672a8d29f14ba8a9c5b4f21a873c2257b29fae27713a28fb42205aa57" }, "downloads": -1, "filename": "pyficache-0.2.5-py2.7.egg", "has_sig": false, "md5_digest": "230357d5764ba7fb54238e67f633b487", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 13486, "upload_time": "2015-05-15T08:42:22", "url": "https://files.pythonhosted.org/packages/21/b6/88a3ea58659b1de27788c79cef95dc006892017eeb75961a730281611e92/pyficache-0.2.5-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "0e7b72762e1f0c20105ec236cc1f66e2", "sha256": "32313c5cb1e6773617f8ebf988c9fd7a92bd8333f86455a7dd8032ec9fdd3a1c" }, "downloads": -1, "filename": "pyficache-0.2.5-py3.3.egg", "has_sig": false, "md5_digest": "0e7b72762e1f0c20105ec236cc1f66e2", "packagetype": "bdist_egg", "python_version": "3.3", "requires_python": null, "size": 13909, "upload_time": "2015-05-15T08:42:25", "url": "https://files.pythonhosted.org/packages/3e/5f/7f32ddb24bd6e55a2dabb22ad092412d4a09dcfa37339c21fdb6d9b0db50/pyficache-0.2.5-py3.3.egg" }, { "comment_text": "", "digests": { "md5": "7056b3bf08ac682def4a459140e6ada8", "sha256": "9a753b6abbfda7105559bd49adc666e46f472836aea303ceb45e09058e1d0452" }, "downloads": -1, "filename": "pyficache-0.2.5-py3.4.egg", "has_sig": false, "md5_digest": "7056b3bf08ac682def4a459140e6ada8", "packagetype": "bdist_egg", "python_version": "3.4", "requires_python": null, "size": 13624, "upload_time": "2015-05-15T08:42:29", "url": "https://files.pythonhosted.org/packages/50/52/a8b84283e65872b9ebb7752cb03d88b3bbe3c3c4d0f4e4222c20349d23cb/pyficache-0.2.5-py3.4.egg" }, { "comment_text": "", "digests": { "md5": "28815589157261826683893da0e77934", "sha256": "a6efb3a9fc8ef943ec25651d405801b44c6d54616a52200df146b3e9bad85879" }, "downloads": -1, "filename": "pyficache-0.2.5.tar.gz", "has_sig": false, "md5_digest": "28815589157261826683893da0e77934", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24778, "upload_time": "2015-05-15T08:42:38", "url": "https://files.pythonhosted.org/packages/73/a3/46a85d35282465459548f3e6cef3f5e094558b329400f2d597035b3ac2a7/pyficache-0.2.5.tar.gz" } ], "0.2.6": [ { "comment_text": "", "digests": { "md5": "767d6712e2c31fb088d14ccf3bb791d9", "sha256": "2e0749bc1acb720a065274ceb6f8bd306b0c4bc096d9992e013e1fbb39131bd5" }, "downloads": -1, "filename": "pyficache-0.2.6-py2.6.egg", "has_sig": false, "md5_digest": "767d6712e2c31fb088d14ccf3bb791d9", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 13546, "upload_time": "2015-05-15T08:54:21", "url": "https://files.pythonhosted.org/packages/f2/96/2f42f2b171878fe8717671b54920e3ba8bcc7ca33fe3217bf27f7c7a72a7/pyficache-0.2.6-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "8d66c1b2e9811ff65c7373f9e1f8127f", "sha256": "dafed01a53aabd7db5df19058b50280889b04f665a12b2a203e73885ab22bf3d" }, "downloads": -1, "filename": "pyficache-0.2.6-py2.7.egg", "has_sig": false, "md5_digest": "8d66c1b2e9811ff65c7373f9e1f8127f", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 13499, "upload_time": "2015-05-15T08:54:24", "url": "https://files.pythonhosted.org/packages/5c/33/6dc932302adf0bf4d0bb9f53ee665141f4578af737fad696c00b8f9638ad/pyficache-0.2.6-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "630264aea022b105ef656048ad013d2c", "sha256": "4c75f194b53b1984c5cc936cb24d04cad2f4e315cb527eede144ebd116608f31" }, "downloads": -1, "filename": "pyficache-0.2.6-py3.3.egg", "has_sig": false, "md5_digest": "630264aea022b105ef656048ad013d2c", "packagetype": "bdist_egg", "python_version": "3.3", "requires_python": null, "size": 13917, "upload_time": "2015-05-15T08:54:27", "url": "https://files.pythonhosted.org/packages/91/b7/63aa790dc0164bc127cf7c1c9f9dd376959696e2044ed465ad1abd36240f/pyficache-0.2.6-py3.3.egg" }, { "comment_text": "", "digests": { "md5": "c9083bc6492b594430669f952d20ca82", "sha256": "b1de18c7a5f47fd04aa114eedd9d203e9df1428706ece5dbcc582b3d4006fe37" }, "downloads": -1, "filename": "pyficache-0.2.6-py3.4.egg", "has_sig": false, "md5_digest": "c9083bc6492b594430669f952d20ca82", "packagetype": "bdist_egg", "python_version": "3.4", "requires_python": null, "size": 13635, "upload_time": "2015-05-15T08:54:01", "url": "https://files.pythonhosted.org/packages/10/5f/b7d42c25a9a745759d0004f5ba79728b206df7165b90e83e1365ee54b62e/pyficache-0.2.6-py3.4.egg" }, { "comment_text": "", "digests": { "md5": "bf29c209f156f114def24b91b06d322a", "sha256": "daa01e50f3a87ad3461520864cbffa2888dae5498119786530c420dc7553668c" }, "downloads": -1, "filename": "pyficache-0.2.6.tar.gz", "has_sig": false, "md5_digest": "bf29c209f156f114def24b91b06d322a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24812, "upload_time": "2015-05-15T08:55:04", "url": "https://files.pythonhosted.org/packages/0c/00/00783bd2106cc029cfcd627b32aadd9ca4baa675771764a65667ab3e1494/pyficache-0.2.6.tar.gz" } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "47077f20fc47163375f2b858fc940928", "sha256": "f80ea160719158c00ad9b5162b7963518e6909931277bc468ba337a2f15bd696" }, "downloads": -1, "filename": "pyficache-0.3.0-py2.6.egg", "has_sig": false, "md5_digest": "47077f20fc47163375f2b858fc940928", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 14419, "upload_time": "2015-11-30T20:30:37", "url": "https://files.pythonhosted.org/packages/45/98/7fbd1a3c6614c5a696223ed2e13daff6572924432989197471d2d992856e/pyficache-0.3.0-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "e1ad2d53275143aa806c5890181d6543", "sha256": "7d641216a10e4dc71d1057dd8ec87aa26ba6eb206631cde124693e6a6c70f96a" }, "downloads": -1, "filename": "pyficache-0.3.0-py2.7.egg", "has_sig": false, "md5_digest": "e1ad2d53275143aa806c5890181d6543", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 14347, "upload_time": "2015-11-30T01:46:04", "url": "https://files.pythonhosted.org/packages/6a/f1/4e73f09edde953486df07d37fa5700343c8487c22dc97025476a52ef3591/pyficache-0.3.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "78ae123c429222514eb86811807f151f", "sha256": "56e7b38db57c399128a15997332e75768620e2f054737e90720b78c2235abd6c" }, "downloads": -1, "filename": "pyficache-0.3.0-py2-none-any.whl", "has_sig": false, "md5_digest": "78ae123c429222514eb86811807f151f", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 10424, "upload_time": "2015-11-30T01:45:47", "url": "https://files.pythonhosted.org/packages/f8/fc/6804dfa99b289fbbf335f419cc47d62b6f0e455a4685780bc1fd4957b740/pyficache-0.3.0-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e090677e0e04aec7a9cb766d36e74c8f", "sha256": "5c120d4a50f278c018fd3c7bfd81f55b9e6b1cde298029a0748334d61954851f" }, "downloads": -1, "filename": "pyficache-0.3.0-py3.4.egg", "has_sig": false, "md5_digest": "e090677e0e04aec7a9cb766d36e74c8f", "packagetype": "bdist_egg", "python_version": "3.4", "requires_python": null, "size": 14485, "upload_time": "2015-11-30T01:31:49", "url": "https://files.pythonhosted.org/packages/db/74/77e5ba41708c7245d2c5f061174207c0f75131ed9da3c7da59b6a5948e4a/pyficache-0.3.0-py3.4.egg" }, { "comment_text": "", "digests": { "md5": "6399cc8831aadd4f0dcb4dfff63422f5", "sha256": "4b77dadbc3ec50b921adbdb229823078789cfe279b92b2f109125a9cd8cc395f" }, "downloads": -1, "filename": "pyficache-0.3.0-py3-none-any.whl", "has_sig": false, "md5_digest": "6399cc8831aadd4f0dcb4dfff63422f5", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 10430, "upload_time": "2015-11-30T01:32:40", "url": "https://files.pythonhosted.org/packages/34/f0/7a7cc42ce2c01b309f77e4299860581967d59c4e5ffd4e106971df1410a1/pyficache-0.3.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ab7c693c9b698d77b3670b7bc95c0789", "sha256": "8f73ac887ce12517efff0dc1cd5fee405a47aad4fe5b31afb16371d0f5610f29" }, "downloads": -1, "filename": "pyficache-0.3.0.tar.gz", "has_sig": false, "md5_digest": "ab7c693c9b698d77b3670b7bc95c0789", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25741, "upload_time": "2015-11-30T20:29:27", "url": "https://files.pythonhosted.org/packages/c7/c8/31a13e9233ec272fb8b14708c46475cc3542c81cfc05e6b2b39ceba26df5/pyficache-0.3.0.tar.gz" } ], "0.3.1": [ { "comment_text": "", "digests": { "md5": "51736bfb422a914d25c7823d75349aa0", "sha256": "67e35c7d996190d2ecf20333b04ebe7ec0eb8f107d9603c798ec36468dc12f3f" }, "downloads": -1, "filename": "pyficache-0.3.1-py2.4.egg", "has_sig": false, "md5_digest": "51736bfb422a914d25c7823d75349aa0", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 17047, "upload_time": "2017-08-01T15:17:50", "url": "https://files.pythonhosted.org/packages/1a/6a/3edfe92b97763d665f33d7d56746f0f4238ee27fb42ac8c12d8df049dcce/pyficache-0.3.1-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "789c21e731747370174253d7f3a7c9c6", "sha256": "1b285d0ff7e2463b92dca5e3f813dd35229d85b3f2928c39ca5aa0b8403d4b04" }, "downloads": -1, "filename": "pyficache-0.3.1-py2.5.egg", "has_sig": false, "md5_digest": "789c21e731747370174253d7f3a7c9c6", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 16784, "upload_time": "2017-08-01T15:17:51", "url": "https://files.pythonhosted.org/packages/41/39/da4fcfbb175aede5456481f4e4374b6559dbfd4798ca87d69f81cb59563a/pyficache-0.3.1-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "87c0fd23e90a070435e032b7ecf7f564", "sha256": "87a48acb7a587798fcc9f430256ed72bcbe60c726ae7ce7eaab9f462d6f86cf5" }, "downloads": -1, "filename": "pyficache-0.3.1-py2.7.egg", "has_sig": false, "md5_digest": "87c0fd23e90a070435e032b7ecf7f564", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 16131, "upload_time": "2016-11-12T14:43:04", "url": "https://files.pythonhosted.org/packages/27/15/d2ee9f2b606bc5b5ac9b512f1ddd6b6cf2377c65e61293695a36efa29eeb/pyficache-0.3.1-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "f2f68e30d60475a98a4599d01bee69e4", "sha256": "3bafda326b51729b3e7ea3929b0c72b858d449f14bbbdbf69f3d19fac47c2a5f" }, "downloads": -1, "filename": "pyficache-0.3.1-py3.4.egg", "has_sig": false, "md5_digest": "f2f68e30d60475a98a4599d01bee69e4", "packagetype": "bdist_egg", "python_version": "3.4", "requires_python": null, "size": 16229, "upload_time": "2016-11-12T14:42:57", "url": "https://files.pythonhosted.org/packages/c1/54/1b4718489d0f361c75b1800447efa43df5462a58d4747c7ce385ed7c6656/pyficache-0.3.1-py3.4.egg" }, { "comment_text": "", "digests": { "md5": "16f0f26c93f2658d3f425162bca96e6b", "sha256": "1ef1c7d56b7d926339a12d003e6a1e908c0a71fd4c1af8a7782471cc3b418ff6" }, "downloads": -1, "filename": "pyficache-0.3.1-py3.5.egg", "has_sig": false, "md5_digest": "16f0f26c93f2658d3f425162bca96e6b", "packagetype": "bdist_egg", "python_version": "3.5", "requires_python": null, "size": 16158, "upload_time": "2016-11-12T14:43:00", "url": "https://files.pythonhosted.org/packages/42/4d/262574948de06a5fa4ade0be6ca79a2f0ee6cbe548b5a42332e0552ac5e6/pyficache-0.3.1-py3.5.egg" }, { "comment_text": "", "digests": { "md5": "58e53e64285d6b2eebe08d802d8b7b4a", "sha256": "d20906865be805f0b86a6082dbf753a89c5a05c0d582420d8d9a480b9a33d21f" }, "downloads": -1, "filename": "pyficache-0.3.1.tar.gz", "has_sig": false, "md5_digest": "58e53e64285d6b2eebe08d802d8b7b4a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26803, "upload_time": "2016-11-12T14:43:28", "url": "https://files.pythonhosted.org/packages/5a/97/859698b53eea27b92746105170417d881bfe99304626efc770d505323be4/pyficache-0.3.1.tar.gz" } ], "0.3.2": [ { "comment_text": "", "digests": { "md5": "6a78fa3a49b7189db14d57a77878a463", "sha256": "fb3a0ba202fa25f6f2983245d260f420ed4ce8a8fa29ad6f9bd3a6893a62b0af" }, "downloads": -1, "filename": "pyficache-0.3.2-py2.4.egg", "has_sig": false, "md5_digest": "6a78fa3a49b7189db14d57a77878a463", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 17078, "upload_time": "2017-08-04T00:13:19", "url": "https://files.pythonhosted.org/packages/2f/e8/e24106c66b51858d8164ec069ec1edd4c083048a1b1320cc90e5eb37b65a/pyficache-0.3.2-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "412cab49350378e486409b92ec61360d", "sha256": "67c924af803d9ee2ebe1b878e1516944e9e157ab33c4504f50242810c56b6cb6" }, "downloads": -1, "filename": "pyficache-0.3.2-py2.5.egg", "has_sig": false, "md5_digest": "412cab49350378e486409b92ec61360d", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 16824, "upload_time": "2017-08-04T00:13:21", "url": "https://files.pythonhosted.org/packages/64/31/844902407821e61d0174084778f939afadf3758b8010b6b1aa432b92a753/pyficache-0.3.2-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "604c0364eb3cf27bca321d19a3cc3f44", "sha256": "b8346fa834cbd14a6fb61333b72380a3338ac0f161293be5477895fc5c8a222b" }, "downloads": -1, "filename": "pyficache-0.3.2-py2.6.egg", "has_sig": false, "md5_digest": "604c0364eb3cf27bca321d19a3cc3f44", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 16725, "upload_time": "2017-08-04T00:13:22", "url": "https://files.pythonhosted.org/packages/c2/fb/2d48f4b025639e5324473a2dad312cf31124ffc0ed37cee40075b5d29293/pyficache-0.3.2-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "6abd92817229873a8db97ec499379432", "sha256": "ded6ed350cb1c3b5183606e2965ff18e848e6eb565baeeacfa81a6fc90f2160a" }, "downloads": -1, "filename": "pyficache-0.3.2-py2.7.egg", "has_sig": false, "md5_digest": "6abd92817229873a8db97ec499379432", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 16621, "upload_time": "2017-08-04T00:13:23", "url": "https://files.pythonhosted.org/packages/36/88/0df00f75ddcb2a79bf880f99ea29bf75a53833396b7d593291b3bfff6d5d/pyficache-0.3.2-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "3aefedc1422e583258362d7dac934bab", "sha256": "83d11537a97b66e094a97743ed34855201b7f3ed56c0bb1d7a865eff1bdd2e86" }, "downloads": -1, "filename": "pyficache-0.3.2-py2-none-any.whl", "has_sig": false, "md5_digest": "3aefedc1422e583258362d7dac934bab", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 11685, "upload_time": "2017-08-04T00:14:57", "url": "https://files.pythonhosted.org/packages/03/e3/60b6a9181d63ffe613971fc3ea815a23bf64ed5cf71f5010c4be755049bf/pyficache-0.3.2-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4950b64df22bfa9db00d68097e298f50", "sha256": "d73cede5860f5a55115ea551e22b0457d6f2d5caf016ff845c008b7414b2cf4c" }, "downloads": -1, "filename": "pyficache-0.3.2-py3.3.egg", "has_sig": false, "md5_digest": "4950b64df22bfa9db00d68097e298f50", "packagetype": "bdist_egg", "python_version": "3.3", "requires_python": null, "size": 17051, "upload_time": "2017-08-04T00:13:25", "url": "https://files.pythonhosted.org/packages/80/3d/45b68b0b75567eec38f3c85e8b52ac6dfc88592364d16d7a8bb4de7ac126/pyficache-0.3.2-py3.3.egg" }, { "comment_text": "", "digests": { "md5": "1b8f77c6cddc5e3d004f7db9feec7ee5", "sha256": "13cf262dcbcf0c4d64224145cb113455232cee102b0f0aa892742ef69ddc236c" }, "downloads": -1, "filename": "pyficache-0.3.2-py3.4.egg", "has_sig": false, "md5_digest": "1b8f77c6cddc5e3d004f7db9feec7ee5", "packagetype": "bdist_egg", "python_version": "3.4", "requires_python": null, "size": 16714, "upload_time": "2017-08-04T00:13:26", "url": "https://files.pythonhosted.org/packages/89/70/21ba1e019640ba13c3f359719c45694fff1280b2eb681b68e75bb5370516/pyficache-0.3.2-py3.4.egg" }, { "comment_text": "", "digests": { "md5": "ef3b26f79c8285f5c2130dceb52f0e65", "sha256": "d96d16d68268b8caa00e5b4b4603515dae478e186808db0f823e26b4e0d0e6b7" }, "downloads": -1, "filename": "pyficache-0.3.2-py3.5.egg", "has_sig": false, "md5_digest": "ef3b26f79c8285f5c2130dceb52f0e65", "packagetype": "bdist_egg", "python_version": "3.5", "requires_python": null, "size": 16638, "upload_time": "2017-08-04T00:13:28", "url": "https://files.pythonhosted.org/packages/92/c5/98e2e50f5fa8ee22479cdb75f33246bf9bcc9d3df03f6885f4f38fb462d3/pyficache-0.3.2-py3.5.egg" }, { "comment_text": "", "digests": { "md5": "fa700ce74c3cdc6582f4ea83fb960a59", "sha256": "8d2bf6cd55afa09e8fea03f072fe806bcce18b9d0afe9502155d7420c4e43861" }, "downloads": -1, "filename": "pyficache-0.3.2-py3.6.egg", "has_sig": false, "md5_digest": "fa700ce74c3cdc6582f4ea83fb960a59", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 16416, "upload_time": "2017-08-04T00:13:29", "url": "https://files.pythonhosted.org/packages/a1/23/e973f79c0ae667ee4c19f7e5d4a98e0cd97e0aceefbe5b566de476316e79/pyficache-0.3.2-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "70c39a957ff2926c10d38e7a79282b97", "sha256": "ba132a930eff6ff75e93c33dda17c56ae23f7abac22c8f3b6fce61c24ee79466" }, "downloads": -1, "filename": "pyficache-0.3.2-py3-none-any.whl", "has_sig": false, "md5_digest": "70c39a957ff2926c10d38e7a79282b97", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 11685, "upload_time": "2017-08-04T00:14:58", "url": "https://files.pythonhosted.org/packages/f4/13/056a0359991930b145d6a5c7f8d9f39316334638e68fed209621e1c2678a/pyficache-0.3.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "054fe3b882d1394f3a1afbb459dde726", "sha256": "93139ab7f6a049f40a4c78bdf9074086b856aa5bd85bd920b6258e37b799cda8" }, "downloads": -1, "filename": "pyficache-0.3.2.tar.gz", "has_sig": false, "md5_digest": "054fe3b882d1394f3a1afbb459dde726", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27270, "upload_time": "2017-08-04T00:13:30", "url": "https://files.pythonhosted.org/packages/e1/d5/0784c9751dc49f7e436a4df2f104954a2d287fa28ab6130b83c416077064/pyficache-0.3.2.tar.gz" } ], "1.0.0": [ { "comment_text": "", "digests": { "md5": "8aed29831b93f91f244ff83a808ff06f", "sha256": "1fc9d88bb458719167b2aa90cb02bfdee254d473a0f019b3fd13dca77832ad05" }, "downloads": -1, "filename": "pyficache-1.0.0-py2.4.egg", "has_sig": false, "md5_digest": "8aed29831b93f91f244ff83a808ff06f", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 2855, "upload_time": "2018-01-27T03:51:36", "url": "https://files.pythonhosted.org/packages/6f/91/e24b559aca7d90268552892b22ed2aa01a3143f34ef4497383914b39ce43/pyficache-1.0.0-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "324a1fc1fbfb88da9d41ded786b4f543", "sha256": "45a03de23d48b922f17d2fce0177e32ff7770eac47f5a8581fed23fe69a9300a" }, "downloads": -1, "filename": "pyficache-1.0.0-py2.5.egg", "has_sig": false, "md5_digest": "324a1fc1fbfb88da9d41ded786b4f543", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 2855, "upload_time": "2018-01-27T03:51:37", "url": "https://files.pythonhosted.org/packages/00/a8/a1e4b9cd3f45bac2172517355789e6caeeda40ef89c9676123c79bb8f1c3/pyficache-1.0.0-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "c4de40c44cbc13b1072fe5a097920f46", "sha256": "d25b0bc36bc4cb52a231e5b8d2d82b81f0987613b42809a29e08f0428edbaea9" }, "downloads": -1, "filename": "pyficache-1.0.0-py2.7.egg", "has_sig": false, "md5_digest": "c4de40c44cbc13b1072fe5a097920f46", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 17462, "upload_time": "2018-01-27T03:51:38", "url": "https://files.pythonhosted.org/packages/44/07/01bd1d9631b57c3da597561448f5a7995a01d0d2eb6362818f1534bbe408/pyficache-1.0.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "85150e0c2243e8c3b62c442d85d4b2fb", "sha256": "a124e2ec5d94795f36abfa983dd57c5b61c1c60ea666ca9afc8d149f0562ef93" }, "downloads": -1, "filename": "pyficache-1.0.0-py27-none-any.whl", "has_sig": false, "md5_digest": "85150e0c2243e8c3b62c442d85d4b2fb", "packagetype": "bdist_wheel", "python_version": "py27", "requires_python": null, "size": 12645, "upload_time": "2018-01-27T03:51:01", "url": "https://files.pythonhosted.org/packages/db/02/acd322fb51fbde3ffdb5cad1505a0f4a55685f84a6c2bb48b16a3c6d336a/pyficache-1.0.0-py27-none-any.whl" }, { "comment_text": "", "digests": { "md5": "44bba188575bfba6a1cb2d43938612c7", "sha256": "87126bc40fe0d5703b267381e394ad2fbf09370d256073ee2f5fb2f6b2436dbc" }, "downloads": -1, "filename": "pyficache-1.0.0-py2-none-any.whl", "has_sig": false, "md5_digest": "44bba188575bfba6a1cb2d43938612c7", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 12645, "upload_time": "2018-01-27T03:51:03", "url": "https://files.pythonhosted.org/packages/e1/a5/b6d2dd0e5726697e9cd0107f391c897458da33b8037d50d5eb85bd5a4ddc/pyficache-1.0.0-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "54aa3e5c2db7e1f8077ccdb3d7c3749b", "sha256": "f8e0148542921d5849320b5511583b068fae908ec4c1e0b3bc5851aaa1a6ad09" }, "downloads": -1, "filename": "pyficache-1.0.0-py3.3.egg", "has_sig": false, "md5_digest": "54aa3e5c2db7e1f8077ccdb3d7c3749b", "packagetype": "bdist_egg", "python_version": "3.3", "requires_python": null, "size": 17888, "upload_time": "2018-01-27T03:41:04", "url": "https://files.pythonhosted.org/packages/45/4b/7d0f8104fd72b04d6db44416a11dfb2bc3dc0b01c2f751a33561cb3a96d5/pyficache-1.0.0-py3.3.egg" }, { "comment_text": "", "digests": { "md5": "4adcc7cba855419a39284c61544083ff", "sha256": "85b83dd0215acdf9a4fae4f388dabf693f9a3c8df0615e2161ae75de448d824c" }, "downloads": -1, "filename": "pyficache-1.0.0-py33-none-any.whl", "has_sig": false, "md5_digest": "4adcc7cba855419a39284c61544083ff", "packagetype": "bdist_wheel", "python_version": "py33", "requires_python": null, "size": 12644, "upload_time": "2018-01-27T03:51:04", "url": "https://files.pythonhosted.org/packages/7e/a6/01094fee1c812840fca93c30b3e189c1eab50bd9e3e4483f2b727d52052d/pyficache-1.0.0-py33-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d3eeb9cc711ebda0c405ebe9a5a6f883", "sha256": "ce274b80bca07148027838be3be6311934f62ed366d8b7fe34d6afe8e5dac37f" }, "downloads": -1, "filename": "pyficache-1.0.0-py3.4.egg", "has_sig": false, "md5_digest": "d3eeb9cc711ebda0c405ebe9a5a6f883", "packagetype": "bdist_egg", "python_version": "3.4", "requires_python": null, "size": 17542, "upload_time": "2018-01-27T03:52:00", "url": "https://files.pythonhosted.org/packages/04/96/67cd42b9069eb334e7f4196064d3d18df8a38f6a0c4755516f3f53acf143/pyficache-1.0.0-py3.4.egg" }, { "comment_text": "", "digests": { "md5": "afa4e3d7d4338766613e47072ff69cb7", "sha256": "1f32317644e9fcf2131de0ffced2399c591acc6fe8e6248e63515d880b923b13" }, "downloads": -1, "filename": "pyficache-1.0.0-py34-none-any.whl", "has_sig": false, "md5_digest": "afa4e3d7d4338766613e47072ff69cb7", "packagetype": "bdist_wheel", "python_version": "py34", "requires_python": null, "size": 12610, "upload_time": "2018-01-27T03:51:05", "url": "https://files.pythonhosted.org/packages/88/a6/e8f43196fd1a7460aff558e16a9705f56ec468b445bfd13fa1f1305cfbca/pyficache-1.0.0-py34-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d58d5bd659a9fbcab21ee53201f80b06", "sha256": "64e5146bd0d2762401b2caafcab48ea53a0c6d1bad150afca13e4406226f981d" }, "downloads": -1, "filename": "pyficache-1.0.0-py3.5.egg", "has_sig": false, "md5_digest": "d58d5bd659a9fbcab21ee53201f80b06", "packagetype": "bdist_egg", "python_version": "3.5", "requires_python": null, "size": 17471, "upload_time": "2018-01-27T03:52:01", "url": "https://files.pythonhosted.org/packages/55/4f/6ab9d334a2bcfda2d0654d317f87433c173a0e404bbae9d1befb929b60f1/pyficache-1.0.0-py3.5.egg" }, { "comment_text": "", "digests": { "md5": "a41d6e65a5b725a48eaba016830b76f3", "sha256": "f4095475201f30bab2e66c99436bd516cabfe24958159d9cb5d1e7a4d3769e67" }, "downloads": -1, "filename": "pyficache-1.0.0-py35-none-any.whl", "has_sig": false, "md5_digest": "a41d6e65a5b725a48eaba016830b76f3", "packagetype": "bdist_wheel", "python_version": "py35", "requires_python": null, "size": 12610, "upload_time": "2018-01-27T03:51:06", "url": "https://files.pythonhosted.org/packages/1a/88/77f954ccfe793c0da4ca7d27929d64a3c97cdaa45351bd2982528dc87aa8/pyficache-1.0.0-py35-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c819925233cfb1333c9b77fe98f9f9f1", "sha256": "7eae58079a05b03fc8be378150add9623961056955481943c45bba40cb70c709" }, "downloads": -1, "filename": "pyficache-1.0.0-py3.6.egg", "has_sig": false, "md5_digest": "c819925233cfb1333c9b77fe98f9f9f1", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 17258, "upload_time": "2018-01-27T03:52:02", "url": "https://files.pythonhosted.org/packages/0b/a5/e226882cdfa674ad5000144f6786f02d06092fa6ee4509d9e9482c72737e/pyficache-1.0.0-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "c2b5f985fd745c6c1ba160cec1e1e34d", "sha256": "8d7f89021836a3a54ee8925f7e405b6c8a1c62872fc0e5ac273ca00418ea1e20" }, "downloads": -1, "filename": "pyficache-1.0.0-py36-none-any.whl", "has_sig": false, "md5_digest": "c2b5f985fd745c6c1ba160cec1e1e34d", "packagetype": "bdist_wheel", "python_version": "py36", "requires_python": null, "size": 12610, "upload_time": "2018-01-27T03:51:08", "url": "https://files.pythonhosted.org/packages/ba/b3/62ab938dab74d9c54cf66dec43432aa6af7403d947ee4518987558185bd1/pyficache-1.0.0-py36-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7bb88b82171503ac4ba7e73fcd99d880", "sha256": "23def8364df31c3d02317253e1863bfd49b9ed4ba057014d1e12c219603987a9" }, "downloads": -1, "filename": "pyficache-1.0.0-py3.7.egg", "has_sig": false, "md5_digest": "7bb88b82171503ac4ba7e73fcd99d880", "packagetype": "bdist_egg", "python_version": "3.7", "requires_python": null, "size": 17281, "upload_time": "2018-01-27T03:52:03", "url": "https://files.pythonhosted.org/packages/24/1d/8c21dbe088257f6fc1214a27f64e190bf1a4ab620172f61fedd76d258662/pyficache-1.0.0-py3.7.egg" }, { "comment_text": "", "digests": { "md5": "858f513be6ce4d1580b7d3b377e8bc48", "sha256": "48e823bc09ee5e6e65a607c8cd375efe644993e9a95e7ee9843ce7ae9e5f666f" }, "downloads": -1, "filename": "pyficache-1.0.0-py3-none-any.whl", "has_sig": false, "md5_digest": "858f513be6ce4d1580b7d3b377e8bc48", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 12610, "upload_time": "2018-01-27T03:51:34", "url": "https://files.pythonhosted.org/packages/81/d7/ce9828ebc5f03d3f42222215c066a4331027ba916667251512a2acab82c5/pyficache-1.0.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4143e7bd9d621f43b33a2d0897408c3a", "sha256": "98991eb34d3a6a9c2c4b8e3daa30bf3dfd1f79cc47af402e95e6a01332190a46" }, "downloads": -1, "filename": "pyficache-1.0.0.tar.gz", "has_sig": false, "md5_digest": "4143e7bd9d621f43b33a2d0897408c3a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28580, "upload_time": "2018-01-27T03:52:05", "url": "https://files.pythonhosted.org/packages/74/5d/fd13ea4bebceb2d151509c502f344152a5bddefb066884532d893ae1ad37/pyficache-1.0.0.tar.gz" } ], "1.0.1": [ { "comment_text": "", "digests": { "md5": "449777537ea397cbe4eb2a0ce8de5058", "sha256": "9d77ad05de35f117422152e3847d7c67223d661ee14c1e5f8c5d0b73816d3493" }, "downloads": -1, "filename": "pyficache-1.0.1-py2.4.egg", "has_sig": false, "md5_digest": "449777537ea397cbe4eb2a0ce8de5058", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 2833, "upload_time": "2018-04-16T19:33:28", "url": "https://files.pythonhosted.org/packages/81/56/fa1471cbcda14d834ba86b6282eec0ee9fc729dd52719785cb3348f0b4ac/pyficache-1.0.1-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "9a55958470ce196d263e79542f52fa2e", "sha256": "b4956f09024a02bc2ff2e8977f691e5973c350893eb2abe1ee4c56cde6bda23a" }, "downloads": -1, "filename": "pyficache-1.0.1-py2.5.egg", "has_sig": false, "md5_digest": "9a55958470ce196d263e79542f52fa2e", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 2833, "upload_time": "2018-04-16T19:33:29", "url": "https://files.pythonhosted.org/packages/ed/53/fda5280a1cb9018fb33f6794523a8dd615180088f3fa4c6781630fd80a01/pyficache-1.0.1-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "f8937c66991f3586b871f3687c08e777", "sha256": "f73d6299c9dd148a941e4707bc58aa2044e7560b170088ba70a6afb5733738cc" }, "downloads": -1, "filename": "pyficache-1.0.1-py2.6.egg", "has_sig": false, "md5_digest": "f8937c66991f3586b871f3687c08e777", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 2860, "upload_time": "2018-04-16T19:41:51", "url": "https://files.pythonhosted.org/packages/f7/46/a451228271a052ad002f211b7847c03370b183eff486d89a5c10a50cc4e8/pyficache-1.0.1-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "eb3abcb048cf82e0b4e44888124f6651", "sha256": "364fe07c0b74981b1cfcd8c6496f414342f3fb05f64be293d4bb379b4da3fd3a" }, "downloads": -1, "filename": "pyficache-1.0.1-py2.7.egg", "has_sig": false, "md5_digest": "eb3abcb048cf82e0b4e44888124f6651", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 2850, "upload_time": "2018-04-16T19:45:32", "url": "https://files.pythonhosted.org/packages/15/50/1362dcbe8a2c78a4091e71ee51f8263a4f321c607b1e08d2ea69ca5e3e8a/pyficache-1.0.1-py2.7.egg" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "449777537ea397cbe4eb2a0ce8de5058", "sha256": "9d77ad05de35f117422152e3847d7c67223d661ee14c1e5f8c5d0b73816d3493" }, "downloads": -1, "filename": "pyficache-1.0.1-py2.4.egg", "has_sig": false, "md5_digest": "449777537ea397cbe4eb2a0ce8de5058", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 2833, "upload_time": "2018-04-16T19:33:28", "url": "https://files.pythonhosted.org/packages/81/56/fa1471cbcda14d834ba86b6282eec0ee9fc729dd52719785cb3348f0b4ac/pyficache-1.0.1-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "9a55958470ce196d263e79542f52fa2e", "sha256": "b4956f09024a02bc2ff2e8977f691e5973c350893eb2abe1ee4c56cde6bda23a" }, "downloads": -1, "filename": "pyficache-1.0.1-py2.5.egg", "has_sig": false, "md5_digest": "9a55958470ce196d263e79542f52fa2e", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 2833, "upload_time": "2018-04-16T19:33:29", "url": "https://files.pythonhosted.org/packages/ed/53/fda5280a1cb9018fb33f6794523a8dd615180088f3fa4c6781630fd80a01/pyficache-1.0.1-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "f8937c66991f3586b871f3687c08e777", "sha256": "f73d6299c9dd148a941e4707bc58aa2044e7560b170088ba70a6afb5733738cc" }, "downloads": -1, "filename": "pyficache-1.0.1-py2.6.egg", "has_sig": false, "md5_digest": "f8937c66991f3586b871f3687c08e777", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 2860, "upload_time": "2018-04-16T19:41:51", "url": "https://files.pythonhosted.org/packages/f7/46/a451228271a052ad002f211b7847c03370b183eff486d89a5c10a50cc4e8/pyficache-1.0.1-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "eb3abcb048cf82e0b4e44888124f6651", "sha256": "364fe07c0b74981b1cfcd8c6496f414342f3fb05f64be293d4bb379b4da3fd3a" }, "downloads": -1, "filename": "pyficache-1.0.1-py2.7.egg", "has_sig": false, "md5_digest": "eb3abcb048cf82e0b4e44888124f6651", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 2850, "upload_time": "2018-04-16T19:45:32", "url": "https://files.pythonhosted.org/packages/15/50/1362dcbe8a2c78a4091e71ee51f8263a4f321c607b1e08d2ea69ca5e3e8a/pyficache-1.0.1-py2.7.egg" } ] }