{ "info": { "author": "Oliver Palmer", "author_email": "oliverpalmer@opalmer.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Environment :: Win32 (MS Windows)", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Natural Language :: English", "Operating System :: Microsoft :: Windows", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy", "Topic :: Software Development :: Libraries" ], "description": "Python Windows Wrapper Using CFFI\n=================================\n\n.. image:: https://ci.appveyor.com/api/projects/status/dl0ec1fny9keo61c/branch/master?svg=true\n :target: https://ci.appveyor.com/project/opalmer/pywincffi/history\n :alt: build status\n\n.. image:: https://travis-ci.org/opalmer/pywincffi.png?branch=master\n :target: https://travis-ci.org/opalmer/pywincffi\n :alt: build status (pylint and pep8)\n\n.. image:: https://codecov.io/github/opalmer/pywincffi/coverage.svg?branch=master\n :target: https://codecov.io/github/opalmer/pywincffi?branch=master\n :alt: code coverage\n\n.. image:: https://readthedocs.org/projects/pywincffi/badge/?version=0.4.0\n :target: https://pywincffi.readthedocs.org/\n :alt: documentation badge\n\n\n``pywincffi`` is a wrapper around some Windows API functions using Python\nand the `cffi `_ library. This project was\noriginally created to assist the Twisted project in moving away from its\ndependency on ``pywin32``. Contributions to expand on the APIs which pywincffi\noffers are always welcome however.\n\nThe core objectives and design principles behind this project are:\n\n * It should be easier to to use Windows API functions both in terms of\n implementation and distribution.\n * Python 2.7 and 3.x should be supported from a single code base and\n not require a consumer of pywincffi to worry about how they use the\n library.\n * Type conversion, error checking and other 'C like' code should be the\n responsibility of the library where possible.\n * APIs provided by pywincffi should mirror their Windows counterparts as\n closely as possible so the MSDN documentation can be more easily used as\n reference.\n * Documentation and error messages should be descriptive, consistent,\n complete and accessible. Examples should be provided for more complex\n use cases.\n * For contributors, it should be possible to develop and test regardless\n of what platform the contributor is coming from.\n\n\nDevelopment\n===========\n\nThis section gives a basic overview of the development process including\nthe major goals. This is not comprehensive but should be a good\nintroduction before submitting a pull request.\n\nSupport and Documentation\n-------------------------\n\nBesides this readme there are two other locations you can go to receive some\nhelp:\n\n * https://pywincffi.readthedocs.org/en/latest/dev/ - Goes beyond\n what's in this readme.\n * https://groups.google.com/forum/#!forum/pywincffi - Google group for\n discussions, questions, etc.\n\nPython Version Support\n----------------------\n\nThis project supports Python 2.7 and up including Python 3.x. PRs, patches,\ntests etc that don't include support for both 2.x and 3.x will not be\nmerged. The aim is also the support both major versions of Python within\nthe same code base rather than rely on tools such as 2to3, six or other\nlibraries for the most part.\n\nDocumentation\n-------------\n\nThe documentation for this this library is hosted on\n`Read The Docs `_.\nIt's generated directly from this library using sphinx::\n\n virtualenv env\n env/bin/activate\n pip install -r dev_requirements.txt\n pip install -e .\n cd docs\n make html\n\nThe build process also builds the documentation to ensure there are not\nany obvious problems (including broken links).\n\nFunction Documentation\n~~~~~~~~~~~~~~~~~~~~~~\n\nWindows API Functions are typically documented in the following format:\n\n.. code-block:: python\n\n def DuplicateHandle(arg1, kwarg1=None):\n \"\"\"\n A brief message about this function.\n\n .. seealso::\n\n \n\n :param type arg1:\n Brief information about this argument\n\n :keyword type kwarg1:\n Brief information about this keyword include it's default\n and how it's handled within the function.\n\n :raises SomeException:\n Some information on when this exception will be raised\n\n :rtype: type\n :return:\n Information about the data that's returned\n \"\"\"\n\nIt's important to note that the docs contain a ``seealso`` stanza. This is\ntypically used to reference the MSDN documentation but may also be used to\nreference examples, white papers or other reference which may be useful in\ndescribing the function.\n\nAdding new functions is covered in greater detail\n`here `_\n\n\nTesting\n-------\n\nContinuous Integration\n~~~~~~~~~~~~~~~~~~~~~~\n\nTo consistently ensure the highest quality code, the following services are\nutilized to test or analyze every commit and pull request:\n\n * `AppVeyor `_ - Runs\n the unittests, builds wheel files, MSIs and other output artifacts\n which can be published in a release.\n * `Travis `_ - Runs the ``pep8``\n and ``pylint`` command line tools on the code base and tests. This also\n builds the docs so documentation problems are easily spotted.\n * `Codecov `_ - Analyses and\n displays code coverage results after tests have run on AppVeyor. Results\n are posted back to pull requests.\n * `ReadTheDocs `_. -\n The official location where documentation is built and posted. This is\n generally for merges into the master branch however.\n\nAdditional Testing\n~~~~~~~~~~~~~~~~~~\n\nAs seen above, there are numerous tests besides the unittests. To run all\nthe tests on Windows, much like the continuous integration systems do, you can\nrun ``test.bat``:\n\n.. code-block:: console\n\n > check.bat\n\nThis will:\n\n* Check code style for both the library and tests.\n* Run all unittests.\n* Build the wheel file.\n* Build the documentation and treat warnings as errors.\n\nKeep in mind that this will not setup the virtualenv or build environment for\nyou. So if you can't build the library or are missing a dependency then\nthe above may fail.\n\n\nVagrant\n~~~~~~~\n\nThe continuous integration services above negate most of the need to setup\nyour local workstation to handle development for pywincffi, even if you're not\nrunning Windows. In some cases however it can be faster or easiear to work\non your local machine.\n\nIf you're not running Windows or you don't have the tools necessary to\ndevelop pywincffi on your machine you can use\n`Vagrant `_ to build a Windows machine and start\ndeveloping. There's a more in depth explanation of this process located\nhere:\n\n https://pywincffi.readthedocs.org/en/latest/dev/vagrant.html\n", "description_content_type": null, "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "http://github.com/opalmer/pywincffi", "keywords": "", "license": "", "maintainer": "", "maintainer_email": "", "name": "pywincffi", "package_url": "https://pypi.org/project/pywincffi/", "platform": "", "project_url": "https://pypi.org/project/pywincffi/", "project_urls": { "Homepage": "http://github.com/opalmer/pywincffi" }, "release_url": "https://pypi.org/project/pywincffi/0.5.0/", "requires_dist": null, "requires_python": "", "summary": "A Python library which wraps Windows functions using CFFI", "version": "0.5.0" }, "last_serial": 3344541, "releases": { "0.1.0": [], "0.1.1": [ { "comment_text": "", "digests": { "md5": "24734210fb106c814a7ceea5e1adc87c", "sha256": "4dae06a85773976876b511cc34152a1279e1b85227c81e7bec445f382bbc3a28" }, "downloads": -1, "filename": "pywincffi-0.1.1-cp26-none-win32.whl", "has_sig": false, "md5_digest": "24734210fb106c814a7ceea5e1adc87c", "packagetype": "bdist_wheel", "python_version": "2.6", "requires_python": null, "size": 36214, "upload_time": "2016-01-18T02:03:52", "url": "https://files.pythonhosted.org/packages/b3/40/17963779fbeffcf8bab91b2059a9a33b79a7174f2400a404fb1705d0e18c/pywincffi-0.1.1-cp26-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "3d728da109e445815f6643b4467f8560", "sha256": "1149bd8173a31e34c8b93125176f4daacc26b590383c682e1bd679dd2cce5351" }, "downloads": -1, "filename": "pywincffi-0.1.1-cp26-none-win_amd64.whl", "has_sig": false, "md5_digest": "3d728da109e445815f6643b4467f8560", "packagetype": "bdist_wheel", "python_version": "2.6", "requires_python": null, "size": 36604, "upload_time": "2016-01-18T02:03:57", "url": "https://files.pythonhosted.org/packages/16/38/1a9282432186a428bd67f5a784c56add01bd391b980f65c40d95d065114e/pywincffi-0.1.1-cp26-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "c2377075d8bb42ab59e58b6f81b8fc2c", "sha256": "6f4502010661ed3f6eb2767fa2fc699d189680dd1c9091212da3deeabebd3739" }, "downloads": -1, "filename": "pywincffi-0.1.1-cp27-none-win32.whl", "has_sig": false, "md5_digest": "c2377075d8bb42ab59e58b6f81b8fc2c", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 35950, "upload_time": "2016-01-18T02:04:06", "url": "https://files.pythonhosted.org/packages/9f/3b/a19bbd48bdae34acf8915ab05bd992f1bac2d1639a55e653e7ae6fbfe6bd/pywincffi-0.1.1-cp27-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "2b128399629a30f9ff7691955b191625", "sha256": "ffea50bbf358a65e1462a5e900f80df3ca70cefca16500909bf6b7365513f4c6" }, "downloads": -1, "filename": "pywincffi-0.1.1-cp27-none-win_amd64.whl", "has_sig": false, "md5_digest": "2b128399629a30f9ff7691955b191625", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 36340, "upload_time": "2016-01-18T02:04:13", "url": "https://files.pythonhosted.org/packages/ca/08/3574bd85a9f0c20e197412bd65f544f6758cadbcfa888cb9063147f11bf8/pywincffi-0.1.1-cp27-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "bda0a61e8a03b90562cce733fe2f2066", "sha256": "81e265c5420c5b86cbaefa87586bace25d5bb8e8e802b2fe02b54cb6687c7737" }, "downloads": -1, "filename": "pywincffi-0.1.1-cp33-none-win32.whl", "has_sig": false, "md5_digest": "bda0a61e8a03b90562cce733fe2f2066", "packagetype": "bdist_wheel", "python_version": "3.3", "requires_python": null, "size": 35873, "upload_time": "2016-01-18T02:04:20", "url": "https://files.pythonhosted.org/packages/7d/12/25afde583cefc3d181e4ba53f5619f9defdec4c71f0613af53ceffa5c9f2/pywincffi-0.1.1-cp33-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "cc9b2d283575e9bfc7909394d589de83", "sha256": "b2bc7bb73499b261af8a4b87660d515a905b17124df396d6d274408569999f49" }, "downloads": -1, "filename": "pywincffi-0.1.1-cp33-none-win_amd64.whl", "has_sig": false, "md5_digest": "cc9b2d283575e9bfc7909394d589de83", "packagetype": "bdist_wheel", "python_version": "3.3", "requires_python": null, "size": 36229, "upload_time": "2016-01-18T02:04:24", "url": "https://files.pythonhosted.org/packages/0b/6b/f29c3178586db24e3da10f6e0611014f524579a09be93c289d44d77ba2e6/pywincffi-0.1.1-cp33-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "33e1710e4bc909afdfe08a326ec00ec3", "sha256": "f52b8017bd40edb6ea73e72c15a76f24e609ea6d9d71fb2e51eb347ee53fe20d" }, "downloads": -1, "filename": "pywincffi-0.1.1-cp34-none-win32.whl", "has_sig": false, "md5_digest": "33e1710e4bc909afdfe08a326ec00ec3", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 35852, "upload_time": "2016-01-18T02:04:30", "url": "https://files.pythonhosted.org/packages/99/e9/efdb1448042a60ac8bcb03d00fdcfc42f738cf37251592f4493e7ba4e124/pywincffi-0.1.1-cp34-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "e46e40298b28979e7c9a7d0f92c9476e", "sha256": "be939e91af60f06752d8c506ef78737569d4a6a508106d07be25f40dbd2c4c33" }, "downloads": -1, "filename": "pywincffi-0.1.1-cp34-none-win_amd64.whl", "has_sig": false, "md5_digest": "e46e40298b28979e7c9a7d0f92c9476e", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 36212, "upload_time": "2016-01-18T02:04:37", "url": "https://files.pythonhosted.org/packages/99/b5/a68664cd69d5adf38d45df74db21013cf6a45498b2df9d0618960e6363f8/pywincffi-0.1.1-cp34-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "f7dce2f9bab64f3d72a01319ca25f736", "sha256": "49f02d2b435e6527c2126e554cc44fb24a8a2bfc32429406c90bea5079d91737" }, "downloads": -1, "filename": "pywincffi-0.1.1.win32-py2.6.msi", "has_sig": false, "md5_digest": "f7dce2f9bab64f3d72a01319ca25f736", "packagetype": "bdist_msi", "python_version": "2.6", "requires_python": null, "size": 180224, "upload_time": "2016-01-18T02:05:09", "url": "https://files.pythonhosted.org/packages/b0/53/d1cad57c417332ffc4e90badf7189dbc0e302a2b6acaec00eb718fd9657f/pywincffi-0.1.1.win32-py2.6.msi" }, { "comment_text": "", "digests": { "md5": "3c3774ea7f19a1820484c6b900860c1b", "sha256": "be5ee12f81f5167cc173a89d8b7259cf88cdaf7aa29b6f6e84da17746f6522ba" }, "downloads": -1, "filename": "pywincffi-0.1.1.win32-py2.7.msi", "has_sig": false, "md5_digest": "3c3774ea7f19a1820484c6b900860c1b", "packagetype": "bdist_msi", "python_version": "2.7", "requires_python": null, "size": 180224, "upload_time": "2016-01-18T02:05:15", "url": "https://files.pythonhosted.org/packages/3f/fc/154649f741cae52a24155ee0770817d57ef129fd83a103e62e63fd7caa63/pywincffi-0.1.1.win32-py2.7.msi" }, { "comment_text": "", "digests": { "md5": "9bb95795994e30b712853f2433bd1806", "sha256": "3022a4106b750f16cd8e2033e7068642ecca5c7c2f7ad6f98c598059a7638f08" }, "downloads": -1, "filename": "pywincffi-0.1.1.win32-py3.3.msi", "has_sig": false, "md5_digest": "9bb95795994e30b712853f2433bd1806", "packagetype": "bdist_msi", "python_version": "3.3", "requires_python": null, "size": 180224, "upload_time": "2016-01-18T02:05:21", "url": "https://files.pythonhosted.org/packages/ff/0d/8f9b3fc0263e4476c8fcd9a54322b6a208701a384324ce8f6d970df7b3ff/pywincffi-0.1.1.win32-py3.3.msi" }, { "comment_text": "", "digests": { "md5": "4b6d9d5f370f45d5174c1b87e69b3de4", "sha256": "57a4366726078f66b212d640dd5b4cd3b4d1e2bc807c449c58ff3975f133c826" }, "downloads": -1, "filename": "pywincffi-0.1.1.win32-py3.4.msi", "has_sig": false, "md5_digest": "4b6d9d5f370f45d5174c1b87e69b3de4", "packagetype": "bdist_msi", "python_version": "3.4", "requires_python": null, "size": 126976, "upload_time": "2016-01-18T02:05:28", "url": "https://files.pythonhosted.org/packages/55/3e/dbb8f93559ebb2b66f22be38a583810ecfa0dafe8b477d5a09bc9fffd227/pywincffi-0.1.1.win32-py3.4.msi" }, { "comment_text": "", "digests": { "md5": "c5e047f61a4e79c2ef81b44c327896c1", "sha256": "961e3677e24e457348cf047156ed0c93dab4724aa583ab49319c9959eda5607b" }, "downloads": -1, "filename": "pywincffi-0.1.1.win-amd64-py2.6.msi", "has_sig": false, "md5_digest": "c5e047f61a4e79c2ef81b44c327896c1", "packagetype": "bdist_msi", "python_version": "2.6", "requires_python": null, "size": 180224, "upload_time": "2016-01-18T02:04:46", "url": "https://files.pythonhosted.org/packages/cc/17/81c6088f9a59f9e498dfc9bd8e3697549707b4ce99de022e8ee267cfc380/pywincffi-0.1.1.win-amd64-py2.6.msi" }, { "comment_text": "", "digests": { "md5": "381e1f61bdc1fd6c7853863e9c2e3231", "sha256": "0128bab58f420e37ba194cdfda99719365b47b7d51af4a76ba4acbaff9ceef58" }, "downloads": -1, "filename": "pywincffi-0.1.1.win-amd64-py2.7.msi", "has_sig": false, "md5_digest": "381e1f61bdc1fd6c7853863e9c2e3231", "packagetype": "bdist_msi", "python_version": "2.7", "requires_python": null, "size": 180224, "upload_time": "2016-01-18T02:04:51", "url": "https://files.pythonhosted.org/packages/89/df/cf433b85544ec593e2d2078ba9d819259fd2a382a7658aff9a07897735dc/pywincffi-0.1.1.win-amd64-py2.7.msi" }, { "comment_text": "", "digests": { "md5": "7b2ec99465087718308d49e8d49343ff", "sha256": "3b1a19232464f7254979ac3d521d870a056021a5ec74bb1ebf31706e2c0d1b4d" }, "downloads": -1, "filename": "pywincffi-0.1.1.win-amd64-py3.3.msi", "has_sig": false, "md5_digest": "7b2ec99465087718308d49e8d49343ff", "packagetype": "bdist_msi", "python_version": "3.3", "requires_python": null, "size": 180224, "upload_time": "2016-01-18T02:04:56", "url": "https://files.pythonhosted.org/packages/18/a6/b815d9b2c7effcbffc1a73f629e45d90e5dd19fc8f3ccdb816e53d89ba6a/pywincffi-0.1.1.win-amd64-py3.3.msi" }, { "comment_text": "", "digests": { "md5": "2e1d59f310909f8bf43195202ccdebb6", "sha256": "738a442d0f6ff60a793e6a244db637eb870435daf367ff706337f5a159100782" }, "downloads": -1, "filename": "pywincffi-0.1.1.win-amd64-py3.4.msi", "has_sig": false, "md5_digest": "2e1d59f310909f8bf43195202ccdebb6", "packagetype": "bdist_msi", "python_version": "3.4", "requires_python": null, "size": 126976, "upload_time": "2016-01-18T02:05:02", "url": "https://files.pythonhosted.org/packages/67/c5/8d7032dd6dec3b82ea6dc3f75d6276290fd2024d56095baad53bf7d6a051/pywincffi-0.1.1.win-amd64-py3.4.msi" }, { "comment_text": "", "digests": { "md5": "a0b89e24f4016053129fcb67dc1e8b30", "sha256": "251b15e4e382e8105713274db0bc054a5d30ffd8777703caed19acbfd8f508ba" }, "downloads": -1, "filename": "pywincffi-0.1.1.zip", "has_sig": false, "md5_digest": "a0b89e24f4016053129fcb67dc1e8b30", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 33895, "upload_time": "2016-01-18T02:05:33", "url": "https://files.pythonhosted.org/packages/98/be/99339f2053bff05f79d031e56ac1538c25cb7c06890e0adc53fec415ae7c/pywincffi-0.1.1.zip" } ], "0.1.2": [ { "comment_text": "", "digests": { "md5": "ff9de673ed6407aa48c1b98ba72c9893", "sha256": "63926c74b4ac57a69d32ae57404d8b1c5153341dded81ea81a9f1d9024a5fec3" }, "downloads": -1, "filename": "pywincffi-0.1.2-cp26-none-win32.whl", "has_sig": false, "md5_digest": "ff9de673ed6407aa48c1b98ba72c9893", "packagetype": "bdist_wheel", "python_version": "2.6", "requires_python": null, "size": 36674, "upload_time": "2016-01-22T04:46:31", "url": "https://files.pythonhosted.org/packages/61/1d/8e2e4dd915d571a508c8442e5907a72b85b82e44a9c013993076b1dcf90e/pywincffi-0.1.2-cp26-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "78ec684242c6c3260f3b93ec4b644a0b", "sha256": "76a96c92f0d6a3c456b86f08389e6a399a302e86b4dd915145371301d4338a5a" }, "downloads": -1, "filename": "pywincffi-0.1.2-cp26-none-win_amd64.whl", "has_sig": false, "md5_digest": "78ec684242c6c3260f3b93ec4b644a0b", "packagetype": "bdist_wheel", "python_version": "2.6", "requires_python": null, "size": 37067, "upload_time": "2016-01-22T04:46:38", "url": "https://files.pythonhosted.org/packages/08/d8/78ddc5743f1f78544d05cb813b027b72680448840e63a0742f7fb73fd1fe/pywincffi-0.1.2-cp26-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "4984f37075e7aa3708932a80430124f8", "sha256": "04cbe6f416415a84f8038b427bdbc661fb9e8a13ad31535c76b7b6bc018af3d4" }, "downloads": -1, "filename": "pywincffi-0.1.2-cp27-none-win32.whl", "has_sig": false, "md5_digest": "4984f37075e7aa3708932a80430124f8", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 36408, "upload_time": "2016-01-22T04:46:44", "url": "https://files.pythonhosted.org/packages/5d/66/00e025b66e7a041e55dca092c3b3047bd06665de6d95c38f29ccf5957ffe/pywincffi-0.1.2-cp27-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "b0b6581d60d57ec3a7ae724978fa3817", "sha256": "ee4429a9a2a59f3ee9d4ef58b20d4e6056063730b6da89e46e7456fe16df2289" }, "downloads": -1, "filename": "pywincffi-0.1.2-cp27-none-win_amd64.whl", "has_sig": false, "md5_digest": "b0b6581d60d57ec3a7ae724978fa3817", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 36795, "upload_time": "2016-01-22T04:46:50", "url": "https://files.pythonhosted.org/packages/6a/98/843e0eb6787e872def273c12af0042dacde17b138a2a654b8852fc8249c2/pywincffi-0.1.2-cp27-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "415a6c2edad719f3c2fc82c3aaed8a26", "sha256": "45d5183d46cac3ad2d1b7da3a701176633b99b21eebb77b62489c7a7b2b92fd5" }, "downloads": -1, "filename": "pywincffi-0.1.2-cp33-none-win32.whl", "has_sig": false, "md5_digest": "415a6c2edad719f3c2fc82c3aaed8a26", "packagetype": "bdist_wheel", "python_version": "3.3", "requires_python": null, "size": 36328, "upload_time": "2016-01-22T04:46:55", "url": "https://files.pythonhosted.org/packages/e7/3c/afcaa8e8fb6074ffdd402fda1780023e71617b2a1b82483ec397114f674c/pywincffi-0.1.2-cp33-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "75119694240f82d2d0a14972b3b558bb", "sha256": "80c0eef4ddeb9b442d9f95e884361883911056ced5e1d6e4bde2a7083436fd9d" }, "downloads": -1, "filename": "pywincffi-0.1.2-cp33-none-win_amd64.whl", "has_sig": false, "md5_digest": "75119694240f82d2d0a14972b3b558bb", "packagetype": "bdist_wheel", "python_version": "3.3", "requires_python": null, "size": 36688, "upload_time": "2016-01-22T04:46:59", "url": "https://files.pythonhosted.org/packages/b2/a9/aa71496d0773b2202ca7edd8b7b44e7c96059af5e68746fb424d1763a888/pywincffi-0.1.2-cp33-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "c43f5554e50f0eeab7d30fcaadc97195", "sha256": "72b304f0da813a4fdc1b39d78836d692d44f44a575f7f737cab899563f4f9a07" }, "downloads": -1, "filename": "pywincffi-0.1.2-cp34-none-win32.whl", "has_sig": false, "md5_digest": "c43f5554e50f0eeab7d30fcaadc97195", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 36314, "upload_time": "2016-01-22T04:47:05", "url": "https://files.pythonhosted.org/packages/ca/42/a019428394435132c08129f7083048b3b82a75a9b0636fad3aad803ccc84/pywincffi-0.1.2-cp34-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "3fff33a7b3b9243426e78e4b47133eca", "sha256": "e75e81cccaa70329febbcf385ac2a54c88d090f04bb2be4254845d27f1acb8f8" }, "downloads": -1, "filename": "pywincffi-0.1.2-cp34-none-win_amd64.whl", "has_sig": false, "md5_digest": "3fff33a7b3b9243426e78e4b47133eca", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 36673, "upload_time": "2016-01-22T04:47:09", "url": "https://files.pythonhosted.org/packages/6f/e6/e5f5b2651667eba35926514990e1855b7967aaaa770738766a0d022b495e/pywincffi-0.1.2-cp34-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "21e92d59251fd08b36476eb5f8380377", "sha256": "67c6b274b08e6b9aaae63923cc3acc7436287385baa1add5ec2ef42dd077dcd2" }, "downloads": -1, "filename": "pywincffi-0.1.2.win32-py2.6.msi", "has_sig": false, "md5_digest": "21e92d59251fd08b36476eb5f8380377", "packagetype": "bdist_msi", "python_version": "2.6", "requires_python": null, "size": 180224, "upload_time": "2016-01-22T04:47:34", "url": "https://files.pythonhosted.org/packages/90/f2/306fd209607418d7175375cff10f7aaaac3465185165edee1b417e6cbbda/pywincffi-0.1.2.win32-py2.6.msi" }, { "comment_text": "", "digests": { "md5": "f015360e1ec1d6cf6a48b8e3303994e5", "sha256": "ffca38daa8a0dfe49c1e4cce37c82b1afa9f504a0de0b933d6824a89eda05bc7" }, "downloads": -1, "filename": "pywincffi-0.1.2.win32-py2.7.msi", "has_sig": false, "md5_digest": "f015360e1ec1d6cf6a48b8e3303994e5", "packagetype": "bdist_msi", "python_version": "2.7", "requires_python": null, "size": 180224, "upload_time": "2016-01-22T04:47:39", "url": "https://files.pythonhosted.org/packages/b6/10/cf2033a0ca708070cfc11085604ffdbb5ca38ae9c7868546590c8251a8fb/pywincffi-0.1.2.win32-py2.7.msi" }, { "comment_text": "", "digests": { "md5": "ead27dce79fd4221b1d592f702e2bf95", "sha256": "40012bafaa1edd07e26df3b2d1f449b9ddd64d80149b51aadef0049fa86dca77" }, "downloads": -1, "filename": "pywincffi-0.1.2.win32-py3.3.msi", "has_sig": false, "md5_digest": "ead27dce79fd4221b1d592f702e2bf95", "packagetype": "bdist_msi", "python_version": "3.3", "requires_python": null, "size": 180224, "upload_time": "2016-01-22T04:47:44", "url": "https://files.pythonhosted.org/packages/29/c5/211643ed54a229a36ff9951a82e7b24afee2e4fa5c9a345a620f594bba58/pywincffi-0.1.2.win32-py3.3.msi" }, { "comment_text": "", "digests": { "md5": "f93ca717038040c29bd6e1dc4122a494", "sha256": "c49339c1f53a2fc09ace9371244f0e9fe5d64e55e6221cc5bb6308411ec3a8ad" }, "downloads": -1, "filename": "pywincffi-0.1.2.win32-py3.4.msi", "has_sig": false, "md5_digest": "f93ca717038040c29bd6e1dc4122a494", "packagetype": "bdist_msi", "python_version": "3.4", "requires_python": null, "size": 126976, "upload_time": "2016-01-22T04:47:50", "url": "https://files.pythonhosted.org/packages/09/38/1f5c9976af9bec446186d5167b4975c54d3709149c39faa173260e1e0e6d/pywincffi-0.1.2.win32-py3.4.msi" }, { "comment_text": "", "digests": { "md5": "4aadb9ea85a70e00d3d71eee8be1349c", "sha256": "e60d4f3bbae19370c0e70a3d00079c43689483d7b438d606dcaf9c87b57f41ab" }, "downloads": -1, "filename": "pywincffi-0.1.2.win-amd64-py2.6.msi", "has_sig": false, "md5_digest": "4aadb9ea85a70e00d3d71eee8be1349c", "packagetype": "bdist_msi", "python_version": "2.6", "requires_python": null, "size": 180224, "upload_time": "2016-01-22T04:47:14", "url": "https://files.pythonhosted.org/packages/6a/ef/bb5967c6802b7c0be5746805963b8b9145ad270a8cc6819cc5abf8db12bd/pywincffi-0.1.2.win-amd64-py2.6.msi" }, { "comment_text": "", "digests": { "md5": "5476d01f48425ef2debad56ff0b237f3", "sha256": "856897c9b6c7135d3e98ea031480ec457a22cd2672acab83c8eb79c05635487a" }, "downloads": -1, "filename": "pywincffi-0.1.2.win-amd64-py2.7.msi", "has_sig": false, "md5_digest": "5476d01f48425ef2debad56ff0b237f3", "packagetype": "bdist_msi", "python_version": "2.7", "requires_python": null, "size": 180224, "upload_time": "2016-01-22T04:47:19", "url": "https://files.pythonhosted.org/packages/c2/68/21b39f6781e90edd79c55584c12ca1e3964355136a893baa77d971703f8a/pywincffi-0.1.2.win-amd64-py2.7.msi" }, { "comment_text": "", "digests": { "md5": "773b45615a72ce94e13c7cc23a749dda", "sha256": "c3b837a225a6e5c164b7d0d5acd8298dcfee2693dc6953c4dde811f76b2dd017" }, "downloads": -1, "filename": "pywincffi-0.1.2.win-amd64-py3.3.msi", "has_sig": false, "md5_digest": "773b45615a72ce94e13c7cc23a749dda", "packagetype": "bdist_msi", "python_version": "3.3", "requires_python": null, "size": 180224, "upload_time": "2016-01-22T04:47:24", "url": "https://files.pythonhosted.org/packages/71/ae/6f0d37f1c3b7aee85da9ff15a3d9910a50db7a95802bfb260bad1e8b2013/pywincffi-0.1.2.win-amd64-py3.3.msi" }, { "comment_text": "", "digests": { "md5": "1425806d9d5e51b188dd7ec929797fa1", "sha256": "d44fdc8a99738834f21a58f5d075939640596f83c5902574dbe2c5c0666c8a13" }, "downloads": -1, "filename": "pywincffi-0.1.2.win-amd64-py3.4.msi", "has_sig": false, "md5_digest": "1425806d9d5e51b188dd7ec929797fa1", "packagetype": "bdist_msi", "python_version": "3.4", "requires_python": null, "size": 126976, "upload_time": "2016-01-22T04:47:29", "url": "https://files.pythonhosted.org/packages/22/3e/a4c2eb0d94c782e947043b4777b172624a599ffa57c444e4a360f87a7662/pywincffi-0.1.2.win-amd64-py3.4.msi" }, { "comment_text": "", "digests": { "md5": "768f8a419d9d22740191d0f2480189a2", "sha256": "5ed1557eddcec3100164fb516bcf88b771f0e117ce7d7ceb8aaa0818a5db156a" }, "downloads": -1, "filename": "pywincffi-0.1.2.zip", "has_sig": false, "md5_digest": "768f8a419d9d22740191d0f2480189a2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 34358, "upload_time": "2016-01-22T04:47:54", "url": "https://files.pythonhosted.org/packages/33/67/4cfe49bfc86e9e9dd0a18c3dda70c647c81aa29ead7351a7451bb77117ea/pywincffi-0.1.2.zip" } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "6d34a2593a9de8837305dedf914b1dad", "sha256": "830695a8524d29fa4fc819b6cac5acc95d96e2de763aaf84a20b7369fcc35b94" }, "downloads": -1, "filename": "pywincffi-0.2.0-cp26-cp26m-win32.whl", "has_sig": false, "md5_digest": "6d34a2593a9de8837305dedf914b1dad", "packagetype": "bdist_wheel", "python_version": "2.6", "requires_python": null, "size": 50781, "upload_time": "2016-04-13T02:29:04", "url": "https://files.pythonhosted.org/packages/d3/13/7883bb421b398efc5f057e06f0e7c372b607015c0c5ad6acf4cd47d5b7b6/pywincffi-0.2.0-cp26-cp26m-win32.whl" }, { "comment_text": "", "digests": { "md5": "c84a2c7cbd0b1f00c708417bf423ac23", "sha256": "48e3b38eef8b4347c279fec5b5542c79056486e5b662049ed44d64d7bfaf80aa" }, "downloads": -1, "filename": "pywincffi-0.2.0-cp26-cp26m-win_amd64.whl", "has_sig": false, "md5_digest": "c84a2c7cbd0b1f00c708417bf423ac23", "packagetype": "bdist_wheel", "python_version": "2.6", "requires_python": null, "size": 51833, "upload_time": "2016-04-13T02:29:17", "url": "https://files.pythonhosted.org/packages/5d/11/5990f1b9e123ed4b68d521171a749d014c8177b56f95eafb1c8739265ffb/pywincffi-0.2.0-cp26-cp26m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "1be8f9db2e883a0cdd5d1856e82b762e", "sha256": "314b2ea85d0df520e19141f51b395892015889c85f4d14923bee259b6e91568f" }, "downloads": -1, "filename": "pywincffi-0.2.0-cp27-cp27m-win32.whl", "has_sig": false, "md5_digest": "1be8f9db2e883a0cdd5d1856e82b762e", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 50511, "upload_time": "2016-04-13T02:29:29", "url": "https://files.pythonhosted.org/packages/56/ec/418b1ad2c0fa5023bb7a1b026a1546c1540d8e35dbc8c36464efcb0c3bb5/pywincffi-0.2.0-cp27-cp27m-win32.whl" }, { "comment_text": "", "digests": { "md5": "a8277e9fe70ca495d7524d34f1beb1c4", "sha256": "ef37ce4d156f9c1279266774dfd76e19d33fa624c6885a8c19961c3a0bf2fcdc" }, "downloads": -1, "filename": "pywincffi-0.2.0-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "a8277e9fe70ca495d7524d34f1beb1c4", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 51562, "upload_time": "2016-04-13T02:29:36", "url": "https://files.pythonhosted.org/packages/d4/98/8b63d0fc1bc21148f48e29f3f4bb5536d4d86483c76b9c6ede924507449d/pywincffi-0.2.0-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "ce1e32836f21c6642bffe473b5ca8311", "sha256": "7acb89ec953de628629898311d8ba15ba9b07923a74a8514faf13c6acb38f0f9" }, "downloads": -1, "filename": "pywincffi-0.2.0-cp33-cp33m-win32.whl", "has_sig": false, "md5_digest": "ce1e32836f21c6642bffe473b5ca8311", "packagetype": "bdist_wheel", "python_version": "3.3", "requires_python": null, "size": 50429, "upload_time": "2016-04-13T02:29:42", "url": "https://files.pythonhosted.org/packages/cb/ff/d8eda7aaa1b61a9c36f1b68b2e318f7d13b2ba4631e6390a8faad97749bd/pywincffi-0.2.0-cp33-cp33m-win32.whl" }, { "comment_text": "", "digests": { "md5": "4adf70c68728b8cf6fab83b6dc21dea2", "sha256": "caf34a033f38f7e675cf497ba56c9d70a189bc8c1631320abbd63e00aceb54ea" }, "downloads": -1, "filename": "pywincffi-0.2.0-cp33-cp33m-win_amd64.whl", "has_sig": false, "md5_digest": "4adf70c68728b8cf6fab83b6dc21dea2", "packagetype": "bdist_wheel", "python_version": "3.3", "requires_python": null, "size": 51448, "upload_time": "2016-04-13T02:29:55", "url": "https://files.pythonhosted.org/packages/81/88/b7bffad436b415fea7c7cdf28e68f863b319deee825cc26e798634f0b1f6/pywincffi-0.2.0-cp33-cp33m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "20b1a96c60ed679c076ca3e38aa6d01a", "sha256": "71a45db32767d4f9608c4568539e0bf1e7eb4e48bd325a6b71c3b81da3723db6" }, "downloads": -1, "filename": "pywincffi-0.2.0-cp34-cp34m-win32.whl", "has_sig": false, "md5_digest": "20b1a96c60ed679c076ca3e38aa6d01a", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 50415, "upload_time": "2016-04-13T02:39:39", "url": "https://files.pythonhosted.org/packages/45/25/5f02da1669f5fe8ed354003c1fa43ad891d3119f8dfaff676e24424fc654/pywincffi-0.2.0-cp34-cp34m-win32.whl" }, { "comment_text": "", "digests": { "md5": "a0a3ef9561a16dba94fa314c5fbc0770", "sha256": "e16f3c48b53fce13243f855f4dc7cdac11e5291399f8fba5b931befb0d68530a" }, "downloads": -1, "filename": "pywincffi-0.2.0-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "a0a3ef9561a16dba94fa314c5fbc0770", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 51434, "upload_time": "2016-04-13T02:39:16", "url": "https://files.pythonhosted.org/packages/2f/8c/cf9980da1f5eca518372dad232cc66a0b44e855051886fbaeb39199ab2b0/pywincffi-0.2.0-cp34-cp34m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "2a2645894d35678e94f6c45c12a11fad", "sha256": "5898e65acebaa356fb8667af7ab3e1662fc4bd30db43be102bec594e3a973af8" }, "downloads": -1, "filename": "pywincffi-0.2.0.zip", "has_sig": false, "md5_digest": "2a2645894d35678e94f6c45c12a11fad", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 44649, "upload_time": "2016-04-15T22:09:18", "url": "https://files.pythonhosted.org/packages/f9/99/c18e83080687bf0e01694ea6d5abb0252c9a08c6db0aae733bdaf3cc645b/pywincffi-0.2.0.zip" } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "333373f0905f6b05cb12017d26145751", "sha256": "6c6be17c628333e93ee41bd7e8edd2e7c290ff79ef52c37525dce8f17fe340fb" }, "downloads": -1, "filename": "pywincffi-0.3.0-cp26-cp26m-win32.whl", "has_sig": false, "md5_digest": "333373f0905f6b05cb12017d26145751", "packagetype": "bdist_wheel", "python_version": "2.6", "requires_python": null, "size": 64503, "upload_time": "2016-06-28T02:38:40", "url": "https://files.pythonhosted.org/packages/7e/9e/a0eb2087433b6a7665aeeef6827375d5a8378dcd04fdec69b0ef0ce35fbe/pywincffi-0.3.0-cp26-cp26m-win32.whl" }, { "comment_text": "", "digests": { "md5": "cfbc05587b266e86217178449f68e535", "sha256": "a25e4ace49827e04314d6d46b3a370e2643e458adbe3e285ebfafb48cb1b1f57" }, "downloads": -1, "filename": "pywincffi-0.3.0-cp26-cp26m-win_amd64.whl", "has_sig": false, "md5_digest": "cfbc05587b266e86217178449f68e535", "packagetype": "bdist_wheel", "python_version": "2.6", "requires_python": null, "size": 66064, "upload_time": "2016-06-28T02:38:47", "url": "https://files.pythonhosted.org/packages/4d/8b/3b6d1cc660361d9e8acab4a40e0aa7ef450a02dc5a2e2490fc9bc94b4fbe/pywincffi-0.3.0-cp26-cp26m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "1b85b8eabb4aaf5ef73a7bbf5793526d", "sha256": "a8488a161d69f07f874a5bbb0d91dc0f8b9ec9474f4e0df9f1cfa6654625dda9" }, "downloads": -1, "filename": "pywincffi-0.3.0-cp27-cp27m-win32.whl", "has_sig": false, "md5_digest": "1b85b8eabb4aaf5ef73a7bbf5793526d", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 64226, "upload_time": "2016-06-28T02:38:51", "url": "https://files.pythonhosted.org/packages/a6/c4/7999978e61773c8ad14b3c3fbc5830c93b0f7f168c75df663f2bb78c3184/pywincffi-0.3.0-cp27-cp27m-win32.whl" }, { "comment_text": "", "digests": { "md5": "b28fa5de816b6ec5d803007e253c7fff", "sha256": "2b3154c63669c102af8fcd33a378fa71d822739762c6d576776a496cabe36976" }, "downloads": -1, "filename": "pywincffi-0.3.0-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "b28fa5de816b6ec5d803007e253c7fff", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 65793, "upload_time": "2016-06-28T02:38:55", "url": "https://files.pythonhosted.org/packages/c3/2d/ea6dd42f3921ee066c719e800eee2ea4ce79ff07e259fd3155f24e1a9b93/pywincffi-0.3.0-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "a0cee58c24e8a21890c5cf79c51b76e4", "sha256": "5abc91af583f6b1dc2c80442ce64b9113ea2a91c0508e4412a15088b536050ca" }, "downloads": -1, "filename": "pywincffi-0.3.0-cp33-cp33m-win32.whl", "has_sig": false, "md5_digest": "a0cee58c24e8a21890c5cf79c51b76e4", "packagetype": "bdist_wheel", "python_version": "3.3", "requires_python": null, "size": 64128, "upload_time": "2016-06-28T02:39:00", "url": "https://files.pythonhosted.org/packages/05/2f/dd82dcfe635e55ee71c60c502d163edb72d65e6244da0e1cb600a6496d80/pywincffi-0.3.0-cp33-cp33m-win32.whl" }, { "comment_text": "", "digests": { "md5": "8e611bed034e4c1f37cbc38d54e158f9", "sha256": "405868ed348d279ac3c111dcc0ae0dae7e0dbe160d72ca884ab85210a09b8cb9" }, "downloads": -1, "filename": "pywincffi-0.3.0-cp33-cp33m-win_amd64.whl", "has_sig": false, "md5_digest": "8e611bed034e4c1f37cbc38d54e158f9", "packagetype": "bdist_wheel", "python_version": "3.3", "requires_python": null, "size": 65667, "upload_time": "2016-06-28T02:39:06", "url": "https://files.pythonhosted.org/packages/bc/01/0678f96479f6e63c1517f9ab08948037e338a635d7932d1e04c28bab2e53/pywincffi-0.3.0-cp33-cp33m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "46ff25597c1c49cd00bdbcf02d3e32b6", "sha256": "b1039981f4aaf1a2fcf4bb5e87ab7a0fff641cfff04d9a82da700b0c9437e1a7" }, "downloads": -1, "filename": "pywincffi-0.3.0-cp34-cp34m-win32.whl", "has_sig": false, "md5_digest": "46ff25597c1c49cd00bdbcf02d3e32b6", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 64113, "upload_time": "2016-06-28T02:39:10", "url": "https://files.pythonhosted.org/packages/fc/35/6a191dd58eb839b990c186d79841abdb43ccbd06945014fc1ad11910b1f4/pywincffi-0.3.0-cp34-cp34m-win32.whl" }, { "comment_text": "", "digests": { "md5": "a49f95668d198a1d6c7b46e5a0f5ba5b", "sha256": "e3ce866a260d795171c96b426f09bae27735238cb617853afa3014efce2cd1d8" }, "downloads": -1, "filename": "pywincffi-0.3.0-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "a49f95668d198a1d6c7b46e5a0f5ba5b", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 65649, "upload_time": "2016-06-28T02:39:14", "url": "https://files.pythonhosted.org/packages/f3/4e/58c0ba70b3c6498a5c3fe6528979ed494a86e60dbb36073639f575e73c33/pywincffi-0.3.0-cp34-cp34m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "35d3fcaae6da1fb9f3edad9c419e22c0", "sha256": "bfcf0a285c55220c491010a5d8c385c078739a029c328728893335c191379a4c" }, "downloads": -1, "filename": "pywincffi-0.3.0-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "35d3fcaae6da1fb9f3edad9c419e22c0", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 65541, "upload_time": "2016-06-28T02:39:18", "url": "https://files.pythonhosted.org/packages/32/b5/11c2e6ed51e2a1d222e01fd0c536b4a322d274658d89728bc8bb14d00280/pywincffi-0.3.0-cp35-cp35m-win32.whl" }, { "comment_text": "", "digests": { "md5": "25eb540004844e35b9f2c64a9370731d", "sha256": "8a752575537bb1889b753958bcfa745f593ed063b4d8f336ba73ed6501ced241" }, "downloads": -1, "filename": "pywincffi-0.3.0-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "25eb540004844e35b9f2c64a9370731d", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 68003, "upload_time": "2016-06-28T02:39:23", "url": "https://files.pythonhosted.org/packages/50/6f/cabb50ba352bb824e447575d16054e45affb5310b7fe289f8ef9f7f0ebd0/pywincffi-0.3.0-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "01c55c78b7d34cd4b9b863ef670a154c", "sha256": "516cb2fbb08895b37607308ea1f0c419d737281dc4d753c9ca49c7db5d30b8bb" }, "downloads": -1, "filename": "pywincffi-0.3.0.win32-py2.6.msi", "has_sig": false, "md5_digest": "01c55c78b7d34cd4b9b863ef670a154c", "packagetype": "bdist_msi", "python_version": "2.6", "requires_python": null, "size": 196608, "upload_time": "2016-06-28T02:39:51", "url": "https://files.pythonhosted.org/packages/c8/16/470f2940169714abdd6b9d6257b776b409e86507459037853d8e9af598d2/pywincffi-0.3.0.win32-py2.6.msi" }, { "comment_text": "", "digests": { "md5": "7bd4dd5ab1b641c98457a877965b4d8c", "sha256": "c977192364e51cebf7565f7c4120f8f08f425ec9992967c4604374dfc15f9d95" }, "downloads": -1, "filename": "pywincffi-0.3.0.win32-py2.7.msi", "has_sig": false, "md5_digest": "7bd4dd5ab1b641c98457a877965b4d8c", "packagetype": "bdist_msi", "python_version": "2.7", "requires_python": null, "size": 212992, "upload_time": "2016-06-28T02:39:56", "url": "https://files.pythonhosted.org/packages/0b/3e/321682aebd4a0e6f2c2ccaf723d7b3cc499ca31d0704ec0aa1be1ec94c1e/pywincffi-0.3.0.win32-py2.7.msi" }, { "comment_text": "", "digests": { "md5": "12e695ac75e4930021dbe495a848ee61", "sha256": "864bceb0ba0d62833007d6169fc96b0e3392c7a152093a50f34431ded42e43c2" }, "downloads": -1, "filename": "pywincffi-0.3.0.win32-py3.3.msi", "has_sig": false, "md5_digest": "12e695ac75e4930021dbe495a848ee61", "packagetype": "bdist_msi", "python_version": "3.3", "requires_python": null, "size": 212992, "upload_time": "2016-06-28T02:40:01", "url": "https://files.pythonhosted.org/packages/2e/3f/740e571c51116c4a66b5869a788ca87bd217f51c52167ad42e4773bbd755/pywincffi-0.3.0.win32-py3.3.msi" }, { "comment_text": "", "digests": { "md5": "8ea26ad3f50d085ebf89d35b5b57fe27", "sha256": "ef1e2d8c7eb41be02d5bb3297b5ca7d3700c3b8ae2cdab937396343a7f8aae60" }, "downloads": -1, "filename": "pywincffi-0.3.0.win32-py3.4.msi", "has_sig": false, "md5_digest": "8ea26ad3f50d085ebf89d35b5b57fe27", "packagetype": "bdist_msi", "python_version": "3.4", "requires_python": null, "size": 147456, "upload_time": "2016-06-28T02:40:07", "url": "https://files.pythonhosted.org/packages/40/55/7125b74a2ed0eeeef2848c1341c2f746baeab4329c998f77fe71c6f9de33/pywincffi-0.3.0.win32-py3.4.msi" }, { "comment_text": "", "digests": { "md5": "dd54efef717794ef53b05ae0cb377c0f", "sha256": "022ff5c122a7c38ab44a36fd6165313265294b0f3b983806916a56f91ae0491b" }, "downloads": -1, "filename": "pywincffi-0.3.0.win32-py3.5.msi", "has_sig": false, "md5_digest": "dd54efef717794ef53b05ae0cb377c0f", "packagetype": "bdist_msi", "python_version": "3.5", "requires_python": null, "size": 147456, "upload_time": "2016-06-28T02:40:11", "url": "https://files.pythonhosted.org/packages/0d/2f/8a1ec65d746a5668243b5b938799dcd81437eed0047b82539a82b75c5f18/pywincffi-0.3.0.win32-py3.5.msi" }, { "comment_text": "", "digests": { "md5": "a7945fcb784e18ac86bafb16c97bbd86", "sha256": "3eb045e97e8fff2ce0f7065a39a9db03e2957d00e0373274e5683bf91eec96b2" }, "downloads": -1, "filename": "pywincffi-0.3.0.win-amd64-py2.6.msi", "has_sig": false, "md5_digest": "a7945fcb784e18ac86bafb16c97bbd86", "packagetype": "bdist_msi", "python_version": "2.6", "requires_python": null, "size": 196608, "upload_time": "2016-06-28T02:39:27", "url": "https://files.pythonhosted.org/packages/f0/f9/ace596587420c7fcdca139161b9ab3bbc00e442a165944653aa5e2f48d96/pywincffi-0.3.0.win-amd64-py2.6.msi" }, { "comment_text": "", "digests": { "md5": "407a3e172c6af5de19389df5118031f0", "sha256": "326519ccc0805f9e087ae3157bc44d3364a2e220289be471da13636512175ebc" }, "downloads": -1, "filename": "pywincffi-0.3.0.win-amd64-py2.7.msi", "has_sig": false, "md5_digest": "407a3e172c6af5de19389df5118031f0", "packagetype": "bdist_msi", "python_version": "2.7", "requires_python": null, "size": 212992, "upload_time": "2016-06-28T02:39:32", "url": "https://files.pythonhosted.org/packages/1c/f3/cda28e4fb2cbc0846409e04506e71f8e365c10816dfd62f5a435d6557d09/pywincffi-0.3.0.win-amd64-py2.7.msi" }, { "comment_text": "", "digests": { "md5": "b83e716b8ffab3d07e1b1fae862bf3f2", "sha256": "0bad666bae089ad711d30422bc6bdba057a141e55d864c1c8b8c3c9a38ed4768" }, "downloads": -1, "filename": "pywincffi-0.3.0.win-amd64-py3.3.msi", "has_sig": false, "md5_digest": "b83e716b8ffab3d07e1b1fae862bf3f2", "packagetype": "bdist_msi", "python_version": "3.3", "requires_python": null, "size": 212992, "upload_time": "2016-06-28T02:39:37", "url": "https://files.pythonhosted.org/packages/8c/1a/8bcebc934d84a47927f10db614d300d43b1a47ee9bd70c9b1df20ef5e79a/pywincffi-0.3.0.win-amd64-py3.3.msi" }, { "comment_text": "", "digests": { "md5": "acbefb8e85b3c62a61d3c9fb35ca975d", "sha256": "f5a5294110b9a69855292fcd65fdb39c4ffb52936b4099450c1cfe8a0553ee20" }, "downloads": -1, "filename": "pywincffi-0.3.0.win-amd64-py3.4.msi", "has_sig": false, "md5_digest": "acbefb8e85b3c62a61d3c9fb35ca975d", "packagetype": "bdist_msi", "python_version": "3.4", "requires_python": null, "size": 147456, "upload_time": "2016-06-28T02:39:42", "url": "https://files.pythonhosted.org/packages/17/72/1927a9a8eeb7a4a5ff98f2f0ffabfe879a09a96de7c56d148b03f5d53f0c/pywincffi-0.3.0.win-amd64-py3.4.msi" }, { "comment_text": "", "digests": { "md5": "57b22fc4f8d4de6b480da7a22f0fd60c", "sha256": "b9fa62bcccfd48a3cd271bec22ce9de144220089b2d12547d93a6c598c6a709d" }, "downloads": -1, "filename": "pywincffi-0.3.0.win-amd64-py3.5.msi", "has_sig": false, "md5_digest": "57b22fc4f8d4de6b480da7a22f0fd60c", "packagetype": "bdist_msi", "python_version": "3.5", "requires_python": null, "size": 147456, "upload_time": "2016-06-28T02:39:46", "url": "https://files.pythonhosted.org/packages/ea/50/e8da85b4b9c35d5422fee7d0f096f47e8491faf3840145e6527916de4911/pywincffi-0.3.0.win-amd64-py3.5.msi" }, { "comment_text": "", "digests": { "md5": "2f8ca3c0ded885230f93992d5f7adf91", "sha256": "08b791e5f31ca0f9caeee37eea9906c9d295f60d5966e7b880255a387ce6f169" }, "downloads": -1, "filename": "pywincffi-0.3.0.zip", "has_sig": false, "md5_digest": "2f8ca3c0ded885230f93992d5f7adf91", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 56267, "upload_time": "2016-06-28T02:40:15", "url": "https://files.pythonhosted.org/packages/e7/38/8229ad1aeae5441798e87c6f4d3f0eac985783a61d94f1eb21b987f82353/pywincffi-0.3.0.zip" } ], "0.3.1": [ { "comment_text": "", "digests": { "md5": "5f8317b8d803194e1d92c22fc622ddcf", "sha256": "f4859547590a5d2f8a326bffe3f076cfcc6c8767a474e75aa7c2e864b436849d" }, "downloads": -1, "filename": "pywincffi-0.3.1-cp26-cp26m-win32.whl", "has_sig": false, "md5_digest": "5f8317b8d803194e1d92c22fc622ddcf", "packagetype": "bdist_wheel", "python_version": "2.6", "requires_python": null, "size": 70197, "upload_time": "2016-07-04T02:25:18", "url": "https://files.pythonhosted.org/packages/1e/9d/ec17cc9d3b9261149a00b76f44c180aed89e47ddf8cda14e3c298598da72/pywincffi-0.3.1-cp26-cp26m-win32.whl" }, { "comment_text": "", "digests": { "md5": "3b90521896dd2fd02eb98c4767a10d36", "sha256": "cf82473a569043cbbaf529bddd8a21dc6233b527fd3f99772201891db62195d5" }, "downloads": -1, "filename": "pywincffi-0.3.1-cp26-cp26m-win_amd64.whl", "has_sig": false, "md5_digest": "3b90521896dd2fd02eb98c4767a10d36", "packagetype": "bdist_wheel", "python_version": "2.6", "requires_python": null, "size": 71812, "upload_time": "2016-07-04T02:25:23", "url": "https://files.pythonhosted.org/packages/de/69/1ab8b1eea819f65203ad0fa836654666843f7b0dbd92958317bbd1d8fd17/pywincffi-0.3.1-cp26-cp26m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "146bb9604c48f3d131ac111ab9c89945", "sha256": "0e96175dce93f228a7b9d4b5560e477c358af2ebd54e24af3116ba68d7ad1bb3" }, "downloads": -1, "filename": "pywincffi-0.3.1-cp27-cp27m-win32.whl", "has_sig": false, "md5_digest": "146bb9604c48f3d131ac111ab9c89945", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 69920, "upload_time": "2016-07-04T02:25:27", "url": "https://files.pythonhosted.org/packages/ee/c5/e688e98c7c77845e829716b7f96631fe4a5a369955f758216ad473d3b998/pywincffi-0.3.1-cp27-cp27m-win32.whl" }, { "comment_text": "", "digests": { "md5": "33905c21838fdfb449f423bb2052cf25", "sha256": "8fddc2ccccf04ee9d72e1ab831df55caa63ae764b0b14f812dd66ffa7fd0c5e1" }, "downloads": -1, "filename": "pywincffi-0.3.1-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "33905c21838fdfb449f423bb2052cf25", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 71535, "upload_time": "2016-07-04T02:25:32", "url": "https://files.pythonhosted.org/packages/64/b6/6423fc7f6dd6898976400902d68dc7a6686d69e0fc83917a72493f2af51c/pywincffi-0.3.1-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "c3b3d011b732787a925e286bf0127198", "sha256": "4ad4ac8ee6c46cf8e1410ceb03e2711d9411e19b558daff93af2f5138e9e0081" }, "downloads": -1, "filename": "pywincffi-0.3.1-cp33-cp33m-win32.whl", "has_sig": false, "md5_digest": "c3b3d011b732787a925e286bf0127198", "packagetype": "bdist_wheel", "python_version": "3.3", "requires_python": null, "size": 69778, "upload_time": "2016-07-04T02:25:37", "url": "https://files.pythonhosted.org/packages/a7/33/9462766715a6b72aea8be6e170438d12a409a55df1d90f048d4a2caf2eee/pywincffi-0.3.1-cp33-cp33m-win32.whl" }, { "comment_text": "", "digests": { "md5": "4287fbb468a427e1bf0277af37a580f6", "sha256": "2b475f41c3c63e7d93c36be6abb67f6b7faa976f468079094cce817184e80100" }, "downloads": -1, "filename": "pywincffi-0.3.1-cp33-cp33m-win_amd64.whl", "has_sig": false, "md5_digest": "4287fbb468a427e1bf0277af37a580f6", "packagetype": "bdist_wheel", "python_version": "3.3", "requires_python": null, "size": 71434, "upload_time": "2016-07-04T02:25:41", "url": "https://files.pythonhosted.org/packages/50/dc/354dfe2fab22087fe00ba68680e4ae1cb5eae5f42ba544ad5126fbd89ecf/pywincffi-0.3.1-cp33-cp33m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "b7eebf5cf248b589f05a06e566f742af", "sha256": "8d40246f0da3c9aeab090477a097b435f46ffdec5a6ca9704423159900db5103" }, "downloads": -1, "filename": "pywincffi-0.3.1-cp34-cp34m-win32.whl", "has_sig": false, "md5_digest": "b7eebf5cf248b589f05a06e566f742af", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 69761, "upload_time": "2016-07-04T02:25:46", "url": "https://files.pythonhosted.org/packages/30/5a/9b7305b28e41509c67f9b6c0a5559e155583d5601e417789a15aa10a5680/pywincffi-0.3.1-cp34-cp34m-win32.whl" }, { "comment_text": "", "digests": { "md5": "48464a6ec17e0d4f07602ef3f1cd21e9", "sha256": "feba4a0d52036ad8a0c1e9c2bbf1f7e48cc520b0cfbe23f7a385da2430d4e4e8" }, "downloads": -1, "filename": "pywincffi-0.3.1-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "48464a6ec17e0d4f07602ef3f1cd21e9", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 71420, "upload_time": "2016-07-04T02:25:50", "url": "https://files.pythonhosted.org/packages/94/fe/3f5f65b874a5c1b16c607659f3141c86eeb998be9683529a09a4bc85ce1f/pywincffi-0.3.1-cp34-cp34m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "474611b745a1158e0b2b7c18eea28026", "sha256": "f3d2285066eea6655cfbe350745afcb68db8a8bd03f4313e5c41707dda5f0e28" }, "downloads": -1, "filename": "pywincffi-0.3.1-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "474611b745a1158e0b2b7c18eea28026", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 71344, "upload_time": "2016-07-04T02:25:55", "url": "https://files.pythonhosted.org/packages/a8/48/d50e8fa13ae390697351ebc421a38d20c37a3c90a8e95e65c559467ee740/pywincffi-0.3.1-cp35-cp35m-win32.whl" }, { "comment_text": "", "digests": { "md5": "81327484398b4911755415cf8c05952f", "sha256": "f155e39f32932a11f6eca95f1ea1f402c1e546874def05373bea9dca4c3d2a1b" }, "downloads": -1, "filename": "pywincffi-0.3.1-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "81327484398b4911755415cf8c05952f", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 73748, "upload_time": "2016-07-04T02:26:00", "url": "https://files.pythonhosted.org/packages/cf/27/995a9eb3a7fdc8928fccafa798f7f1df23212c5a507f1ac36d30b9350b84/pywincffi-0.3.1-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "52440c420e9722e5eaa1ca98628b62d0", "sha256": "5af0cf3a4a252450d1ab6977523056e69c9e4a8930e3dd553b0bd0ed14284d49" }, "downloads": -1, "filename": "pywincffi-0.3.1.win32-py2.6.msi", "has_sig": false, "md5_digest": "52440c420e9722e5eaa1ca98628b62d0", "packagetype": "bdist_msi", "python_version": "2.6", "requires_python": null, "size": 212992, "upload_time": "2016-07-04T02:26:31", "url": "https://files.pythonhosted.org/packages/a3/6f/920ce5b2dd9721a479c80d393f208659209c364f9a17059319821ae0deb8/pywincffi-0.3.1.win32-py2.6.msi" }, { "comment_text": "", "digests": { "md5": "0e8434850ecb8e8b5dc64387f2fdc992", "sha256": "7db3f25d2c1fafb68d7f24de4eebf7771fb5e62fc99b3d2e90ee09094c36f69c" }, "downloads": -1, "filename": "pywincffi-0.3.1.win32-py2.7.msi", "has_sig": false, "md5_digest": "0e8434850ecb8e8b5dc64387f2fdc992", "packagetype": "bdist_msi", "python_version": "2.7", "requires_python": null, "size": 229376, "upload_time": "2016-07-04T02:26:36", "url": "https://files.pythonhosted.org/packages/49/fe/2261ac5580544902cc089b22e818887ae2586eb37f2dfe6eec7ec41d1224/pywincffi-0.3.1.win32-py2.7.msi" }, { "comment_text": "", "digests": { "md5": "59a6b1f4f8bec7ec07ad524fcbb5d3d8", "sha256": "93fb53ba34cd27aa31d8a0551611918fb7ca884ab4b91406ba6ad40e2283155f" }, "downloads": -1, "filename": "pywincffi-0.3.1.win32-py3.3.msi", "has_sig": false, "md5_digest": "59a6b1f4f8bec7ec07ad524fcbb5d3d8", "packagetype": "bdist_msi", "python_version": "3.3", "requires_python": null, "size": 229376, "upload_time": "2016-07-04T02:26:41", "url": "https://files.pythonhosted.org/packages/20/3f/0d64fa2e37d79b079666d6fef05dbe7ada73476f0ad432e5641dcaea43c5/pywincffi-0.3.1.win32-py3.3.msi" }, { "comment_text": "", "digests": { "md5": "c7ecef9c35843ce6fbbbd5393dca4df6", "sha256": "82da350e9757a9440d5726988896b3d74838c1d6a63019dd212d6a4bc4b3624c" }, "downloads": -1, "filename": "pywincffi-0.3.1.win32-py3.4.msi", "has_sig": false, "md5_digest": "c7ecef9c35843ce6fbbbd5393dca4df6", "packagetype": "bdist_msi", "python_version": "3.4", "requires_python": null, "size": 151552, "upload_time": "2016-07-04T02:26:46", "url": "https://files.pythonhosted.org/packages/d1/08/332fb2f86134644e3c39d9ed52934c5cae548a16112f174cb9a582741882/pywincffi-0.3.1.win32-py3.4.msi" }, { "comment_text": "", "digests": { "md5": "8a5761027593e15666db86b26c08d920", "sha256": "85a2ad0b7ee4d581f5ea7b478e0b6e18da728e52130287c7a686297f5f9cb21d" }, "downloads": -1, "filename": "pywincffi-0.3.1.win32-py3.5.msi", "has_sig": false, "md5_digest": "8a5761027593e15666db86b26c08d920", "packagetype": "bdist_msi", "python_version": "3.5", "requires_python": null, "size": 151552, "upload_time": "2016-07-04T02:26:51", "url": "https://files.pythonhosted.org/packages/b0/d6/7731b1a1aebd28d55571c60d906e2d90be3e2b2bd51597524091c252ffe6/pywincffi-0.3.1.win32-py3.5.msi" }, { "comment_text": "", "digests": { "md5": "767fd6afe34ac411c6c5ee4580f6c754", "sha256": "a713c007a35b7bdaba378b80b62a130ead6ec0b92b1481a46da1fae41fc48ced" }, "downloads": -1, "filename": "pywincffi-0.3.1.win-amd64-py2.6.msi", "has_sig": false, "md5_digest": "767fd6afe34ac411c6c5ee4580f6c754", "packagetype": "bdist_msi", "python_version": "2.6", "requires_python": null, "size": 212992, "upload_time": "2016-07-04T02:26:06", "url": "https://files.pythonhosted.org/packages/68/91/93f4a52fb63136a9a4d6515667738461896d10daac9ff8808fdf3b84bb0d/pywincffi-0.3.1.win-amd64-py2.6.msi" }, { "comment_text": "", "digests": { "md5": "96a9e586aed7cd3046993819540d10be", "sha256": "d9a350c4417e9bf44547cc65e7eb6e867991abe7b94f8a7ee5d550a7aded480c" }, "downloads": -1, "filename": "pywincffi-0.3.1.win-amd64-py2.7.msi", "has_sig": false, "md5_digest": "96a9e586aed7cd3046993819540d10be", "packagetype": "bdist_msi", "python_version": "2.7", "requires_python": null, "size": 229376, "upload_time": "2016-07-04T02:26:11", "url": "https://files.pythonhosted.org/packages/15/fa/3a0176923e0f240b1b7854ae581628f8b2b4b41366fd8425c57ca7049e64/pywincffi-0.3.1.win-amd64-py2.7.msi" }, { "comment_text": "", "digests": { "md5": "a762d396ebe0b04b584a4aa6ed12c841", "sha256": "824cd94ca87ccc99c459c5a0c4028794f4269a52c4aeaf704ea48514fea98e17" }, "downloads": -1, "filename": "pywincffi-0.3.1.win-amd64-py3.3.msi", "has_sig": false, "md5_digest": "a762d396ebe0b04b584a4aa6ed12c841", "packagetype": "bdist_msi", "python_version": "3.3", "requires_python": null, "size": 229376, "upload_time": "2016-07-04T02:26:16", "url": "https://files.pythonhosted.org/packages/2b/ca/334c37a7c68e9103cf2e051caa0ca58158060351833c8941e9f3af0cdf7c/pywincffi-0.3.1.win-amd64-py3.3.msi" }, { "comment_text": "", "digests": { "md5": "eab924b733ffea2c279aa6fdfeb5077f", "sha256": "29a7b3dd2d234d035daa578216e21c1c55412f2475ecf8c4bb23b5c906d2ec34" }, "downloads": -1, "filename": "pywincffi-0.3.1.win-amd64-py3.4.msi", "has_sig": false, "md5_digest": "eab924b733ffea2c279aa6fdfeb5077f", "packagetype": "bdist_msi", "python_version": "3.4", "requires_python": null, "size": 151552, "upload_time": "2016-07-04T02:26:21", "url": "https://files.pythonhosted.org/packages/d4/ea/3838f33eb0c49315f86406501e8e1dc4fb373186182037729dbe06a6ee1b/pywincffi-0.3.1.win-amd64-py3.4.msi" }, { "comment_text": "", "digests": { "md5": "2c704685896b2b13a6f3a577b02bb469", "sha256": "509af96746c1814725ef785ced6a04797d7f1fd732f9c569172cbed2ce72a099" }, "downloads": -1, "filename": "pywincffi-0.3.1.win-amd64-py3.5.msi", "has_sig": false, "md5_digest": "2c704685896b2b13a6f3a577b02bb469", "packagetype": "bdist_msi", "python_version": "3.5", "requires_python": null, "size": 155648, "upload_time": "2016-07-04T02:26:26", "url": "https://files.pythonhosted.org/packages/9d/cd/41fbdac68ed3370e0ffe978ffe70297363846076dffb2da84c853e54ab9d/pywincffi-0.3.1.win-amd64-py3.5.msi" }, { "comment_text": "", "digests": { "md5": "42c348c0e8c8c281210618d686a85e8a", "sha256": "3ccce382953425e83c1ca859ae190536bf19a510de2960f25f0b685444d2029c" }, "downloads": -1, "filename": "pywincffi-0.3.1.zip", "has_sig": false, "md5_digest": "42c348c0e8c8c281210618d686a85e8a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 59634, "upload_time": "2016-07-04T02:26:55", "url": "https://files.pythonhosted.org/packages/e1/60/5f98203497fe12e6df71375a976364100088588c70b45af43940e89150f7/pywincffi-0.3.1.zip" } ], "0.4.0": [ { "comment_text": "", "digests": { "md5": "8d8c1c9c89af86f0e53f1f3cfde9dfdc", "sha256": "4986e69de053e05149e1c086ac014b1a4f9f074db8dcc2180f53d44adae42b60" }, "downloads": -1, "filename": "pywincffi-0.4.0-cp26-cp26m-win32.whl", "has_sig": false, "md5_digest": "8d8c1c9c89af86f0e53f1f3cfde9dfdc", "packagetype": "bdist_wheel", "python_version": "2.6", "requires_python": null, "size": 76570, "upload_time": "2016-09-11T14:36:13", "url": "https://files.pythonhosted.org/packages/ec/c6/82fe9379c1c7bb5b516f5e1a0cacc3314cf67a01cd13c17285255a27c975/pywincffi-0.4.0-cp26-cp26m-win32.whl" }, { "comment_text": "", "digests": { "md5": "01da91c91987cc176a3fdd35016df8c4", "sha256": "ba46849fa4123be46a60c22b9bc1743a5f0e3eec2e85972dfa3104f1326b407f" }, "downloads": -1, "filename": "pywincffi-0.4.0-cp26-cp26m-win_amd64.whl", "has_sig": false, "md5_digest": "01da91c91987cc176a3fdd35016df8c4", "packagetype": "bdist_wheel", "python_version": "2.6", "requires_python": null, "size": 78292, "upload_time": "2016-09-11T14:36:15", "url": "https://files.pythonhosted.org/packages/27/8f/b9941ca5c537242ddd04bd3788a7307db628a7bd41356a86821715744036/pywincffi-0.4.0-cp26-cp26m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "ed042669fbbe8ce44c237ae3197bcc8d", "sha256": "21d6cf1837b78b216933983b342430322f248e4fb9a8e3103040fcd083f771bd" }, "downloads": -1, "filename": "pywincffi-0.4.0-cp27-cp27m-win32.whl", "has_sig": false, "md5_digest": "ed042669fbbe8ce44c237ae3197bcc8d", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 76298, "upload_time": "2016-09-11T14:36:18", "url": "https://files.pythonhosted.org/packages/06/dd/81c4fd38406c402dd3d5abab5e81a91efd8daf11c8c455a7728c65bc7376/pywincffi-0.4.0-cp27-cp27m-win32.whl" }, { "comment_text": "", "digests": { "md5": "d92853cff91c7b047238eac54a8b3e57", "sha256": "3313997edd1269dcedd68d15950fa93f0d1c9b064b6573cab1063a07e6986e5b" }, "downloads": -1, "filename": "pywincffi-0.4.0-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "d92853cff91c7b047238eac54a8b3e57", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 78011, "upload_time": "2016-09-11T14:36:21", "url": "https://files.pythonhosted.org/packages/40/72/5bd98a3c29de049c6e3f386020b64fda5dc5e2ccdc3cb889fb32e4e53d17/pywincffi-0.4.0-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "ce9dac2e58594446b19c395ec4eaebde", "sha256": "5b6aee46b3ecf7e808d9759ed4864c43b9fbba5d0764e306fe1d3fa24efe4ba0" }, "downloads": -1, "filename": "pywincffi-0.4.0-cp33-cp33m-win32.whl", "has_sig": false, "md5_digest": "ce9dac2e58594446b19c395ec4eaebde", "packagetype": "bdist_wheel", "python_version": "3.3", "requires_python": null, "size": 76205, "upload_time": "2016-09-11T14:36:24", "url": "https://files.pythonhosted.org/packages/31/7e/36e39a12379418cb3c86e2e45f964fa526e99e1ef6b882caf0851f362ed1/pywincffi-0.4.0-cp33-cp33m-win32.whl" }, { "comment_text": "", "digests": { "md5": "ea2f5dd70f22e7d5dca1c94ffe5a22c0", "sha256": "28e8f86295d5157949f89869ead239b32c461e937a65edea45ae41708baf429e" }, "downloads": -1, "filename": "pywincffi-0.4.0-cp33-cp33m-win_amd64.whl", "has_sig": false, "md5_digest": "ea2f5dd70f22e7d5dca1c94ffe5a22c0", "packagetype": "bdist_wheel", "python_version": "3.3", "requires_python": null, "size": 77944, "upload_time": "2016-09-11T14:36:26", "url": "https://files.pythonhosted.org/packages/cb/f8/46794aec7ebd144526c522883af0edd25d6ff537b71284b846777a4535b0/pywincffi-0.4.0-cp33-cp33m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "9a92c22c3c7821e6f663988f0c934307", "sha256": "d8e9f6843cd829a474fc6741da10ad849e025a66f31c84ea32a27bf2964904b9" }, "downloads": -1, "filename": "pywincffi-0.4.0-cp34-cp34m-win32.whl", "has_sig": false, "md5_digest": "9a92c22c3c7821e6f663988f0c934307", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 76205, "upload_time": "2016-09-11T14:36:29", "url": "https://files.pythonhosted.org/packages/ed/88/e358a97e0c95988c51b39f923fd61bc048a6e9e1d1d4dd5eb4b94af332a6/pywincffi-0.4.0-cp34-cp34m-win32.whl" }, { "comment_text": "", "digests": { "md5": "0c5bcb2c78a1e007545a419ebf01c577", "sha256": "a72df1190eb9d133e12a691becb17c4fde80ea22109f28698585dbd542835e0a" }, "downloads": -1, "filename": "pywincffi-0.4.0-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "0c5bcb2c78a1e007545a419ebf01c577", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 77945, "upload_time": "2016-09-11T14:36:32", "url": "https://files.pythonhosted.org/packages/3d/17/101e910f88785332556870d009e2ddb00e9aa0273692d1f53827042f701f/pywincffi-0.4.0-cp34-cp34m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "158ff2b17039b9e071af96ee26c92fd7", "sha256": "0a358b6965e869911e69014f0a049b6aef9a7342b595320ebc5591f6b8fca850" }, "downloads": -1, "filename": "pywincffi-0.4.0-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "158ff2b17039b9e071af96ee26c92fd7", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 77607, "upload_time": "2016-09-11T14:36:35", "url": "https://files.pythonhosted.org/packages/c7/a4/e3da9046219cce39c99e0dff5c2643426c4d173bc09f575fe3bc9abd757b/pywincffi-0.4.0-cp35-cp35m-win32.whl" }, { "comment_text": "", "digests": { "md5": "0258d0ee1c8230ba00f9842be5cc8b9c", "sha256": "36ec47503175d6dff028864d4814b2690b84741144b7cca01d3e8cbbd0dde2df" }, "downloads": -1, "filename": "pywincffi-0.4.0-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "0258d0ee1c8230ba00f9842be5cc8b9c", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 80321, "upload_time": "2016-09-11T14:36:37", "url": "https://files.pythonhosted.org/packages/81/39/0aac22a2e31fd398e3be3a9b5204af7309ec058eb911f2162598933b54af/pywincffi-0.4.0-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "c07b775dbb2cd4d38b3bd076528d0560", "sha256": "ca05ceb9b423c60f868537fb828f710d80c87fc09a5bb5a3d136b8b6d0099451" }, "downloads": -1, "filename": "pywincffi-0.4.0.win32-py2.6.msi", "has_sig": false, "md5_digest": "c07b775dbb2cd4d38b3bd076528d0560", "packagetype": "bdist_msi", "python_version": "2.6", "requires_python": null, "size": 212992, "upload_time": "2016-09-11T14:36:55", "url": "https://files.pythonhosted.org/packages/cf/02/4bac23db52882899d7561e417b0a31c09c641031b500b9920790f5469686/pywincffi-0.4.0.win32-py2.6.msi" }, { "comment_text": "", "digests": { "md5": "01ad3aeeab81b7e45b164463fec49999", "sha256": "2f5b1fcd4a098024cb64aa26851b45714bef2803426706436a2b1d42ed0be580" }, "downloads": -1, "filename": "pywincffi-0.4.0.win32-py2.7.msi", "has_sig": false, "md5_digest": "01ad3aeeab81b7e45b164463fec49999", "packagetype": "bdist_msi", "python_version": "2.7", "requires_python": null, "size": 229376, "upload_time": "2016-09-11T14:36:58", "url": "https://files.pythonhosted.org/packages/38/dd/cfa9a8acd95b33dcab034d50b202146affae1763137513de9b4a89ace657/pywincffi-0.4.0.win32-py2.7.msi" }, { "comment_text": "", "digests": { "md5": "0b867bb53a2eb8853fcab2a8e9104caa", "sha256": "278c55021de589ad15aed81e490e8960f204675661cd0e64bfe374653d7e7742" }, "downloads": -1, "filename": "pywincffi-0.4.0.win32-py3.3.msi", "has_sig": false, "md5_digest": "0b867bb53a2eb8853fcab2a8e9104caa", "packagetype": "bdist_msi", "python_version": "3.3", "requires_python": null, "size": 229376, "upload_time": "2016-09-11T14:37:03", "url": "https://files.pythonhosted.org/packages/6d/7b/809f7cadbbf23d35d68eae8b2a07bb9908622e3f9909ae1fe532c73ab338/pywincffi-0.4.0.win32-py3.3.msi" }, { "comment_text": "", "digests": { "md5": "0a395b5dc1aa70514638f0d98b0c8968", "sha256": "a84a7a56d9fbfdd650b9132d7a9a1a590a35207e6fbb66e753d66322cacc0522" }, "downloads": -1, "filename": "pywincffi-0.4.0.win32-py3.4.msi", "has_sig": false, "md5_digest": "0a395b5dc1aa70514638f0d98b0c8968", "packagetype": "bdist_msi", "python_version": "3.4", "requires_python": null, "size": 155648, "upload_time": "2016-09-11T14:37:06", "url": "https://files.pythonhosted.org/packages/4e/b5/70987cf62e24747a7f31e7eace4642700599e7c9f073522f9ae1c820923f/pywincffi-0.4.0.win32-py3.4.msi" }, { "comment_text": "", "digests": { "md5": "8911f744dc345449bb7aeec4d3160918", "sha256": "dbe264cdced1dd60c54109a01edcac5de14f83309c6c9f906d580086d3a1a983" }, "downloads": -1, "filename": "pywincffi-0.4.0.win32-py3.5.msi", "has_sig": false, "md5_digest": "8911f744dc345449bb7aeec4d3160918", "packagetype": "bdist_msi", "python_version": "3.5", "requires_python": null, "size": 155648, "upload_time": "2016-09-11T14:37:09", "url": "https://files.pythonhosted.org/packages/ed/94/5ed51588c7d61e3effd872f29071b5ed42faf3c3c342dbfb52e6d5712c9d/pywincffi-0.4.0.win32-py3.5.msi" }, { "comment_text": "", "digests": { "md5": "09722461745de728790db4b7164ca921", "sha256": "daaf81007733a2e0943a9c65126d35e403dff49b2bb93add267a46ef949f21e6" }, "downloads": -1, "filename": "pywincffi-0.4.0.win-amd64-py2.6.msi", "has_sig": false, "md5_digest": "09722461745de728790db4b7164ca921", "packagetype": "bdist_msi", "python_version": "2.6", "requires_python": null, "size": 212992, "upload_time": "2016-09-11T14:36:40", "url": "https://files.pythonhosted.org/packages/00/d6/b8462a104a7ab1fb3ac5439ffaacc202ad53c7a5a46abdbc3d857f7ee214/pywincffi-0.4.0.win-amd64-py2.6.msi" }, { "comment_text": "", "digests": { "md5": "63b183589aafed1ae7fbc22a9ed24d55", "sha256": "0a4617ee270b4bc0d295ea023ffc582c67e00ab87e33b49d9f80a7593d5dd83e" }, "downloads": -1, "filename": "pywincffi-0.4.0.win-amd64-py2.7.msi", "has_sig": false, "md5_digest": "63b183589aafed1ae7fbc22a9ed24d55", "packagetype": "bdist_msi", "python_version": "2.7", "requires_python": null, "size": 229376, "upload_time": "2016-09-11T14:36:43", "url": "https://files.pythonhosted.org/packages/c0/53/9ae33ce3012873a88f067520ea3c45dd0ec8082df50aee1c55df20637785/pywincffi-0.4.0.win-amd64-py2.7.msi" }, { "comment_text": "", "digests": { "md5": "959b9f0043acd98d5196eed9b7ce26eb", "sha256": "013f865cf8b95982cacbf224692b64051c0d2b3b13bdf8085d61d30b773e3c91" }, "downloads": -1, "filename": "pywincffi-0.4.0.win-amd64-py3.3.msi", "has_sig": false, "md5_digest": "959b9f0043acd98d5196eed9b7ce26eb", "packagetype": "bdist_msi", "python_version": "3.3", "requires_python": null, "size": 229376, "upload_time": "2016-09-11T14:36:46", "url": "https://files.pythonhosted.org/packages/9a/e3/e36dd7e5264bc9f7ad24182bb42447aeb447c4220f65dc762a4e71cba129/pywincffi-0.4.0.win-amd64-py3.3.msi" }, { "comment_text": "", "digests": { "md5": "7896b4bc06fa5c2f422850875a49668a", "sha256": "4d5857af690797919d0fc6dd68a06ad2d7012c9d69c1f64b01fb50efb80ba9f5" }, "downloads": -1, "filename": "pywincffi-0.4.0.win-amd64-py3.4.msi", "has_sig": false, "md5_digest": "7896b4bc06fa5c2f422850875a49668a", "packagetype": "bdist_msi", "python_version": "3.4", "requires_python": null, "size": 159744, "upload_time": "2016-09-11T14:36:49", "url": "https://files.pythonhosted.org/packages/b1/e6/68439831739258ea1ecf3e25efb9bac8714b40f362ec671386a5f6e0641f/pywincffi-0.4.0.win-amd64-py3.4.msi" }, { "comment_text": "", "digests": { "md5": "5613598bfc94bff21ab55da1a7e927e1", "sha256": "cc800c9d2cfb4ec822d4ed58a749245a683e730baa4010043d5bb3623d039f16" }, "downloads": -1, "filename": "pywincffi-0.4.0.win-amd64-py3.5.msi", "has_sig": false, "md5_digest": "5613598bfc94bff21ab55da1a7e927e1", "packagetype": "bdist_msi", "python_version": "3.5", "requires_python": null, "size": 159744, "upload_time": "2016-09-11T14:36:52", "url": "https://files.pythonhosted.org/packages/36/80/a70f051f48742f2a31cd03f0071e7826186fe80b29f0bff1ffe64cefa008/pywincffi-0.4.0.win-amd64-py3.5.msi" }, { "comment_text": "", "digests": { "md5": "6e5327e23aba4dddedb22a3ed12f3895", "sha256": "5e7698fd774cab6baf3d90189fbaec93d7b8c6e2d50c03004555c9295198f0cf" }, "downloads": -1, "filename": "pywincffi-0.4.0.zip", "has_sig": false, "md5_digest": "6e5327e23aba4dddedb22a3ed12f3895", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 65316, "upload_time": "2016-09-11T14:37:12", "url": "https://files.pythonhosted.org/packages/7e/47/4f2d29fbd7365a590e3af8e0aaa17be4107617f794993fdb813950c18dd7/pywincffi-0.4.0.zip" } ], "0.5.0": [ { "comment_text": "", "digests": { "md5": "06ebe7a8f35d3a8cd5945f85c3431012", "sha256": "58e31cca17f8f60893c700eb516135ec4ec83e725fe0f7701b3f2dbcbfd0bc32" }, "downloads": -1, "filename": "pywincffi-0.5.0-cp27-cp27m-win32.whl", "has_sig": false, "md5_digest": "06ebe7a8f35d3a8cd5945f85c3431012", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 79637, "upload_time": "2017-11-18T18:55:01", "url": "https://files.pythonhosted.org/packages/7d/2d/59b593a064f662fb76ab5b65f2831587dd68ff1ac81e37e05880a9d13a51/pywincffi-0.5.0-cp27-cp27m-win32.whl" }, { "comment_text": "", "digests": { "md5": "e701707a67df984cff61cada11a594b4", "sha256": "9ef0f3ccaf69b202df81c21915807b1154b4cffa25057576653fe8ec765be035" }, "downloads": -1, "filename": "pywincffi-0.5.0-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "e701707a67df984cff61cada11a594b4", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 81605, "upload_time": "2017-11-18T18:55:03", "url": "https://files.pythonhosted.org/packages/13/6d/aa44a2f87ab86f77c6a9b2f19c1a23be0f44db749b2fe57154fa4bdf5572/pywincffi-0.5.0-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "15bc99c5aa82de277a159bf2763093ea", "sha256": "ad94756ac650aa7741f03763da3fa25fe034c370ce9c1169554dfa1a158cc5af" }, "downloads": -1, "filename": "pywincffi-0.5.0-cp33-cp33m-win32.whl", "has_sig": false, "md5_digest": "15bc99c5aa82de277a159bf2763093ea", "packagetype": "bdist_wheel", "python_version": "3.3", "requires_python": null, "size": 79572, "upload_time": "2017-11-18T18:55:04", "url": "https://files.pythonhosted.org/packages/da/23/1a418fa1612cb40373292d80e7f6547760f861b6088597e14f329553b538/pywincffi-0.5.0-cp33-cp33m-win32.whl" }, { "comment_text": "", "digests": { "md5": "7483c39be452d917e018a00ad9bf718d", "sha256": "6aa728632369269bd3fa0c98a08fe216ecc172b6550b241173836de42c91bfdf" }, "downloads": -1, "filename": "pywincffi-0.5.0-cp33-cp33m-win_amd64.whl", "has_sig": false, "md5_digest": "7483c39be452d917e018a00ad9bf718d", "packagetype": "bdist_wheel", "python_version": "3.3", "requires_python": null, "size": 81532, "upload_time": "2017-11-18T18:55:06", "url": "https://files.pythonhosted.org/packages/2c/89/f71486776deb5566ad4702f0fb2a3b3a7624ee92b14c11e25765452aea66/pywincffi-0.5.0-cp33-cp33m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "f48f64912dd4c16a27da86f0916f6c5e", "sha256": "0f19167130f07d090bee3d11746ee0a2ba42453579b1d35bf4e343b4d286ac74" }, "downloads": -1, "filename": "pywincffi-0.5.0-cp34-cp34m-win32.whl", "has_sig": false, "md5_digest": "f48f64912dd4c16a27da86f0916f6c5e", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 79572, "upload_time": "2017-11-18T18:55:07", "url": "https://files.pythonhosted.org/packages/54/e6/ca5be63163e48e867dc47cf03d3e190a7a8bc30e7a85422fa6efbb5f2a63/pywincffi-0.5.0-cp34-cp34m-win32.whl" }, { "comment_text": "", "digests": { "md5": "7639385b64e648f0dc56941c80210d4a", "sha256": "8b62ea8027d95c4aa7d4bd4dcadc579827974463253eb7f07bed1f3a39f3fb8b" }, "downloads": -1, "filename": "pywincffi-0.5.0-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "7639385b64e648f0dc56941c80210d4a", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 81534, "upload_time": "2017-11-18T18:55:09", "url": "https://files.pythonhosted.org/packages/45/92/b670a15f908eb0b4563900d201c23dd202f3813970dba45cb094d2fa26cd/pywincffi-0.5.0-cp34-cp34m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "ed9fe13470388e24fb8224cefbd55f6f", "sha256": "a2b948d5e2859f32b95cf3a394efa4bca3673e0cd7fdd2d5792d1d7292ea347e" }, "downloads": -1, "filename": "pywincffi-0.5.0-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "ed9fe13470388e24fb8224cefbd55f6f", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 80999, "upload_time": "2017-11-18T18:55:10", "url": "https://files.pythonhosted.org/packages/f9/fe/53fa8d1516a76b67b73a291391d39b9764b34b9516961aaf8900555c2bdf/pywincffi-0.5.0-cp35-cp35m-win32.whl" }, { "comment_text": "", "digests": { "md5": "d15ea543dc95a9776a3e1f191614c555", "sha256": "471dba8c751ec3c981ebb162dbb37a439b6798917cf71eadcfa1da57d622e89e" }, "downloads": -1, "filename": "pywincffi-0.5.0-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "d15ea543dc95a9776a3e1f191614c555", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 83876, "upload_time": "2017-11-18T18:55:12", "url": "https://files.pythonhosted.org/packages/f5/a5/a9d27caa4e41b6bcdba8db54e9fef373d204c87482eece589359fe31cb84/pywincffi-0.5.0-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "f2f2b208f8905368ee5977448b06aa55", "sha256": "868ec9c8ef01a2916fbe200adf4ba380f6beded0c87a6c7a218dc904f9d2ecbb" }, "downloads": -1, "filename": "pywincffi-0.5.0-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "f2f2b208f8905368ee5977448b06aa55", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 81000, "upload_time": "2017-11-18T18:55:13", "url": "https://files.pythonhosted.org/packages/e0/cb/cf33f4b7c3c2edbb13a8376e03ae62d70acd48fcad8448497b71386e95e8/pywincffi-0.5.0-cp36-cp36m-win32.whl" }, { "comment_text": "", "digests": { "md5": "f0bd3f06ea783ad833a980f126ef56e8", "sha256": "ae8595b8d6fcca5fd03f56f94d780e1cb79dc63310020334487e6b1a34afd903" }, "downloads": -1, "filename": "pywincffi-0.5.0-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "f0bd3f06ea783ad833a980f126ef56e8", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 83878, "upload_time": "2017-11-18T18:55:14", "url": "https://files.pythonhosted.org/packages/7d/63/d736993a087ce2bc47fb2f4e549290620e016e47bb430225dcc9c5d9f164/pywincffi-0.5.0-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "a150c054c3df2f8a8eefb45e0dee6e39", "sha256": "77ac06199e6e2060843c08a45914ebf8086df14067798887eafddcfb4fa465c7" }, "downloads": -1, "filename": "pywincffi-0.5.0.win32-py2.7.msi", "has_sig": false, "md5_digest": "a150c054c3df2f8a8eefb45e0dee6e39", "packagetype": "bdist_msi", "python_version": "2.7", "requires_python": null, "size": 229376, "upload_time": "2017-11-18T18:55:22", "url": "https://files.pythonhosted.org/packages/f4/6f/1e7d5224a6828cfa6ab7d4dfb86ddddf476146e30373e9a2a9eb9709b8f3/pywincffi-0.5.0.win32-py2.7.msi" }, { "comment_text": "", "digests": { "md5": "25069d6e175539f7a875a3cda89f2977", "sha256": "115280f1940104c024e8589c446024afc8721898c99312e45e3384eea8a211e4" }, "downloads": -1, "filename": "pywincffi-0.5.0.win32-py3.3.msi", "has_sig": false, "md5_digest": "25069d6e175539f7a875a3cda89f2977", "packagetype": "bdist_msi", "python_version": "3.3", "requires_python": null, "size": 229376, "upload_time": "2017-11-18T18:55:23", "url": "https://files.pythonhosted.org/packages/91/93/61e8f0ec2691de92014b84def9eca148ea0f0cfb27e5b0e98ea95de19050/pywincffi-0.5.0.win32-py3.3.msi" }, { "comment_text": "", "digests": { "md5": "a43d193097c0960e647c3256cc2c5f8a", "sha256": "e0c10cd68a8e4037ac83006167790525db5b68ed9ff850fd1c4d770f94f4f7d8" }, "downloads": -1, "filename": "pywincffi-0.5.0.win32-py3.4.msi", "has_sig": false, "md5_digest": "a43d193097c0960e647c3256cc2c5f8a", "packagetype": "bdist_msi", "python_version": "3.4", "requires_python": null, "size": 163840, "upload_time": "2017-11-18T18:55:25", "url": "https://files.pythonhosted.org/packages/da/e6/579daa91a913d20665ca5dffd9a4ad548a346a5c45fc0085023f7893b18f/pywincffi-0.5.0.win32-py3.4.msi" }, { "comment_text": "", "digests": { "md5": "30b1f322390a35bc34daa67063d98849", "sha256": "63b034c7f7031eba9d73ff92920ea3c4c8730f1f341efd0dbe517f7eec6fb26f" }, "downloads": -1, "filename": "pywincffi-0.5.0.win32-py3.5.msi", "has_sig": false, "md5_digest": "30b1f322390a35bc34daa67063d98849", "packagetype": "bdist_msi", "python_version": "3.5", "requires_python": null, "size": 163840, "upload_time": "2017-11-18T18:55:26", "url": "https://files.pythonhosted.org/packages/da/d7/91fbc7dd2af76ff73a3d6182b90caa9b613f4b1d5ff92d16f496d2fec4ad/pywincffi-0.5.0.win32-py3.5.msi" }, { "comment_text": "", "digests": { "md5": "043e6533b8272643e3cb40b0e1b7296f", "sha256": "f7de02dd9ea4bba667fd22ff729054803abd05f011f440a34bccc896c05ba5c7" }, "downloads": -1, "filename": "pywincffi-0.5.0.win32-py3.6.msi", "has_sig": false, "md5_digest": "043e6533b8272643e3cb40b0e1b7296f", "packagetype": "bdist_msi", "python_version": "3.6", "requires_python": null, "size": 163840, "upload_time": "2017-11-18T18:55:27", "url": "https://files.pythonhosted.org/packages/84/70/42cc64a25ad3f01d0b4b6716f2116da8fa10e72b847cb3dbd0ab120a1d87/pywincffi-0.5.0.win32-py3.6.msi" }, { "comment_text": "", "digests": { "md5": "48d95dcd2723ebfd693b37821f39b474", "sha256": "859710f3085eb65ac2b8ff7984d46df5abc207a80319e028b9ecbd53174c3625" }, "downloads": -1, "filename": "pywincffi-0.5.0.win-amd64-py2.7.msi", "has_sig": false, "md5_digest": "48d95dcd2723ebfd693b37821f39b474", "packagetype": "bdist_msi", "python_version": "2.7", "requires_python": null, "size": 229376, "upload_time": "2017-11-18T18:55:16", "url": "https://files.pythonhosted.org/packages/32/a3/ccb0b6cccd9fc3b35cb261663fec4e90748fb75abd16a0c890c3493f400d/pywincffi-0.5.0.win-amd64-py2.7.msi" }, { "comment_text": "", "digests": { "md5": "ba99824dc070d0eac42be5e4c6652b63", "sha256": "b8f1194d94b7ff49b76472b8e15d14adb9005238183a6012bf531b3019bf706a" }, "downloads": -1, "filename": "pywincffi-0.5.0.win-amd64-py3.3.msi", "has_sig": false, "md5_digest": "ba99824dc070d0eac42be5e4c6652b63", "packagetype": "bdist_msi", "python_version": "3.3", "requires_python": null, "size": 229376, "upload_time": "2017-11-18T18:55:17", "url": "https://files.pythonhosted.org/packages/fc/3c/87089bcec0d2f6f5a2aa0bcd9f096198c996e78c5a9eb58db1b74c91d961/pywincffi-0.5.0.win-amd64-py3.3.msi" }, { "comment_text": "", "digests": { "md5": "8e42a33480727d36f9be7e1395acc8c8", "sha256": "08bc28290475fe4515c76caea5b4dcaf8a453edc9e0a1d2e1975414eda3365b1" }, "downloads": -1, "filename": "pywincffi-0.5.0.win-amd64-py3.4.msi", "has_sig": false, "md5_digest": "8e42a33480727d36f9be7e1395acc8c8", "packagetype": "bdist_msi", "python_version": "3.4", "requires_python": null, "size": 163840, "upload_time": "2017-11-18T18:55:18", "url": "https://files.pythonhosted.org/packages/0e/05/7d8aeac520483bf4842e3b8243c33c9159a9c9136aca54e0a0ce4acce9ce/pywincffi-0.5.0.win-amd64-py3.4.msi" }, { "comment_text": "", "digests": { "md5": "96a08c4ebd40d4e3f85b5ba565ca863f", "sha256": "2d445f3b51aea51ee9df6f5b34e9075cb46c6270bb9ecaa18caad93209d9e808" }, "downloads": -1, "filename": "pywincffi-0.5.0.win-amd64-py3.5.msi", "has_sig": false, "md5_digest": "96a08c4ebd40d4e3f85b5ba565ca863f", "packagetype": "bdist_msi", "python_version": "3.5", "requires_python": null, "size": 167936, "upload_time": "2017-11-18T18:55:20", "url": "https://files.pythonhosted.org/packages/3c/16/b483b3c53caef7b3a2af9310303aa09824d9f188a9207ebae15d9bde229e/pywincffi-0.5.0.win-amd64-py3.5.msi" }, { "comment_text": "", "digests": { "md5": "fbec446380cab8e75aa49900077f30a9", "sha256": "8f3488c8557408d687d8b63acf5d7f60b3e58ed9b3f2263e6b7a013b5c287793" }, "downloads": -1, "filename": "pywincffi-0.5.0.win-amd64-py3.6.msi", "has_sig": false, "md5_digest": "fbec446380cab8e75aa49900077f30a9", "packagetype": "bdist_msi", "python_version": "3.6", "requires_python": null, "size": 167936, "upload_time": "2017-11-18T18:55:21", "url": "https://files.pythonhosted.org/packages/ea/56/2ef7f95ea473d54610e0a4f853ac822c41178762b91e74a511e4b5ea45fd/pywincffi-0.5.0.win-amd64-py3.6.msi" }, { "comment_text": "", "digests": { "md5": "893d177b81c3ecdefa967ccbb0683644", "sha256": "6a982f43e15474f737b9b89c3cce39470ae647df469258629214a83a2493706a" }, "downloads": -1, "filename": "pywincffi-0.5.0.zip", "has_sig": false, "md5_digest": "893d177b81c3ecdefa967ccbb0683644", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 67172, "upload_time": "2017-11-18T18:57:31", "url": "https://files.pythonhosted.org/packages/f2/fd/12298c7f36b585e6870bee0d8921dc74b3d9dc5ff57fed3416c6f2c58dd6/pywincffi-0.5.0.zip" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "06ebe7a8f35d3a8cd5945f85c3431012", "sha256": "58e31cca17f8f60893c700eb516135ec4ec83e725fe0f7701b3f2dbcbfd0bc32" }, "downloads": -1, "filename": "pywincffi-0.5.0-cp27-cp27m-win32.whl", "has_sig": false, "md5_digest": "06ebe7a8f35d3a8cd5945f85c3431012", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 79637, "upload_time": "2017-11-18T18:55:01", "url": "https://files.pythonhosted.org/packages/7d/2d/59b593a064f662fb76ab5b65f2831587dd68ff1ac81e37e05880a9d13a51/pywincffi-0.5.0-cp27-cp27m-win32.whl" }, { "comment_text": "", "digests": { "md5": "e701707a67df984cff61cada11a594b4", "sha256": "9ef0f3ccaf69b202df81c21915807b1154b4cffa25057576653fe8ec765be035" }, "downloads": -1, "filename": "pywincffi-0.5.0-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "e701707a67df984cff61cada11a594b4", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 81605, "upload_time": "2017-11-18T18:55:03", "url": "https://files.pythonhosted.org/packages/13/6d/aa44a2f87ab86f77c6a9b2f19c1a23be0f44db749b2fe57154fa4bdf5572/pywincffi-0.5.0-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "15bc99c5aa82de277a159bf2763093ea", "sha256": "ad94756ac650aa7741f03763da3fa25fe034c370ce9c1169554dfa1a158cc5af" }, "downloads": -1, "filename": "pywincffi-0.5.0-cp33-cp33m-win32.whl", "has_sig": false, "md5_digest": "15bc99c5aa82de277a159bf2763093ea", "packagetype": "bdist_wheel", "python_version": "3.3", "requires_python": null, "size": 79572, "upload_time": "2017-11-18T18:55:04", "url": "https://files.pythonhosted.org/packages/da/23/1a418fa1612cb40373292d80e7f6547760f861b6088597e14f329553b538/pywincffi-0.5.0-cp33-cp33m-win32.whl" }, { "comment_text": "", "digests": { "md5": "7483c39be452d917e018a00ad9bf718d", "sha256": "6aa728632369269bd3fa0c98a08fe216ecc172b6550b241173836de42c91bfdf" }, "downloads": -1, "filename": "pywincffi-0.5.0-cp33-cp33m-win_amd64.whl", "has_sig": false, "md5_digest": "7483c39be452d917e018a00ad9bf718d", "packagetype": "bdist_wheel", "python_version": "3.3", "requires_python": null, "size": 81532, "upload_time": "2017-11-18T18:55:06", "url": "https://files.pythonhosted.org/packages/2c/89/f71486776deb5566ad4702f0fb2a3b3a7624ee92b14c11e25765452aea66/pywincffi-0.5.0-cp33-cp33m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "f48f64912dd4c16a27da86f0916f6c5e", "sha256": "0f19167130f07d090bee3d11746ee0a2ba42453579b1d35bf4e343b4d286ac74" }, "downloads": -1, "filename": "pywincffi-0.5.0-cp34-cp34m-win32.whl", "has_sig": false, "md5_digest": "f48f64912dd4c16a27da86f0916f6c5e", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 79572, "upload_time": "2017-11-18T18:55:07", "url": "https://files.pythonhosted.org/packages/54/e6/ca5be63163e48e867dc47cf03d3e190a7a8bc30e7a85422fa6efbb5f2a63/pywincffi-0.5.0-cp34-cp34m-win32.whl" }, { "comment_text": "", "digests": { "md5": "7639385b64e648f0dc56941c80210d4a", "sha256": "8b62ea8027d95c4aa7d4bd4dcadc579827974463253eb7f07bed1f3a39f3fb8b" }, "downloads": -1, "filename": "pywincffi-0.5.0-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "7639385b64e648f0dc56941c80210d4a", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 81534, "upload_time": "2017-11-18T18:55:09", "url": "https://files.pythonhosted.org/packages/45/92/b670a15f908eb0b4563900d201c23dd202f3813970dba45cb094d2fa26cd/pywincffi-0.5.0-cp34-cp34m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "ed9fe13470388e24fb8224cefbd55f6f", "sha256": "a2b948d5e2859f32b95cf3a394efa4bca3673e0cd7fdd2d5792d1d7292ea347e" }, "downloads": -1, "filename": "pywincffi-0.5.0-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "ed9fe13470388e24fb8224cefbd55f6f", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 80999, "upload_time": "2017-11-18T18:55:10", "url": "https://files.pythonhosted.org/packages/f9/fe/53fa8d1516a76b67b73a291391d39b9764b34b9516961aaf8900555c2bdf/pywincffi-0.5.0-cp35-cp35m-win32.whl" }, { "comment_text": "", "digests": { "md5": "d15ea543dc95a9776a3e1f191614c555", "sha256": "471dba8c751ec3c981ebb162dbb37a439b6798917cf71eadcfa1da57d622e89e" }, "downloads": -1, "filename": "pywincffi-0.5.0-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "d15ea543dc95a9776a3e1f191614c555", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 83876, "upload_time": "2017-11-18T18:55:12", "url": "https://files.pythonhosted.org/packages/f5/a5/a9d27caa4e41b6bcdba8db54e9fef373d204c87482eece589359fe31cb84/pywincffi-0.5.0-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "f2f2b208f8905368ee5977448b06aa55", "sha256": "868ec9c8ef01a2916fbe200adf4ba380f6beded0c87a6c7a218dc904f9d2ecbb" }, "downloads": -1, "filename": "pywincffi-0.5.0-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "f2f2b208f8905368ee5977448b06aa55", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 81000, "upload_time": "2017-11-18T18:55:13", "url": "https://files.pythonhosted.org/packages/e0/cb/cf33f4b7c3c2edbb13a8376e03ae62d70acd48fcad8448497b71386e95e8/pywincffi-0.5.0-cp36-cp36m-win32.whl" }, { "comment_text": "", "digests": { "md5": "f0bd3f06ea783ad833a980f126ef56e8", "sha256": "ae8595b8d6fcca5fd03f56f94d780e1cb79dc63310020334487e6b1a34afd903" }, "downloads": -1, "filename": "pywincffi-0.5.0-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "f0bd3f06ea783ad833a980f126ef56e8", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 83878, "upload_time": "2017-11-18T18:55:14", "url": "https://files.pythonhosted.org/packages/7d/63/d736993a087ce2bc47fb2f4e549290620e016e47bb430225dcc9c5d9f164/pywincffi-0.5.0-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "a150c054c3df2f8a8eefb45e0dee6e39", "sha256": "77ac06199e6e2060843c08a45914ebf8086df14067798887eafddcfb4fa465c7" }, "downloads": -1, "filename": "pywincffi-0.5.0.win32-py2.7.msi", "has_sig": false, "md5_digest": "a150c054c3df2f8a8eefb45e0dee6e39", "packagetype": "bdist_msi", "python_version": "2.7", "requires_python": null, "size": 229376, "upload_time": "2017-11-18T18:55:22", "url": "https://files.pythonhosted.org/packages/f4/6f/1e7d5224a6828cfa6ab7d4dfb86ddddf476146e30373e9a2a9eb9709b8f3/pywincffi-0.5.0.win32-py2.7.msi" }, { "comment_text": "", "digests": { "md5": "25069d6e175539f7a875a3cda89f2977", "sha256": "115280f1940104c024e8589c446024afc8721898c99312e45e3384eea8a211e4" }, "downloads": -1, "filename": "pywincffi-0.5.0.win32-py3.3.msi", "has_sig": false, "md5_digest": "25069d6e175539f7a875a3cda89f2977", "packagetype": "bdist_msi", "python_version": "3.3", "requires_python": null, "size": 229376, "upload_time": "2017-11-18T18:55:23", "url": "https://files.pythonhosted.org/packages/91/93/61e8f0ec2691de92014b84def9eca148ea0f0cfb27e5b0e98ea95de19050/pywincffi-0.5.0.win32-py3.3.msi" }, { "comment_text": "", "digests": { "md5": "a43d193097c0960e647c3256cc2c5f8a", "sha256": "e0c10cd68a8e4037ac83006167790525db5b68ed9ff850fd1c4d770f94f4f7d8" }, "downloads": -1, "filename": "pywincffi-0.5.0.win32-py3.4.msi", "has_sig": false, "md5_digest": "a43d193097c0960e647c3256cc2c5f8a", "packagetype": "bdist_msi", "python_version": "3.4", "requires_python": null, "size": 163840, "upload_time": "2017-11-18T18:55:25", "url": "https://files.pythonhosted.org/packages/da/e6/579daa91a913d20665ca5dffd9a4ad548a346a5c45fc0085023f7893b18f/pywincffi-0.5.0.win32-py3.4.msi" }, { "comment_text": "", "digests": { "md5": "30b1f322390a35bc34daa67063d98849", "sha256": "63b034c7f7031eba9d73ff92920ea3c4c8730f1f341efd0dbe517f7eec6fb26f" }, "downloads": -1, "filename": "pywincffi-0.5.0.win32-py3.5.msi", "has_sig": false, "md5_digest": "30b1f322390a35bc34daa67063d98849", "packagetype": "bdist_msi", "python_version": "3.5", "requires_python": null, "size": 163840, "upload_time": "2017-11-18T18:55:26", "url": "https://files.pythonhosted.org/packages/da/d7/91fbc7dd2af76ff73a3d6182b90caa9b613f4b1d5ff92d16f496d2fec4ad/pywincffi-0.5.0.win32-py3.5.msi" }, { "comment_text": "", "digests": { "md5": "043e6533b8272643e3cb40b0e1b7296f", "sha256": "f7de02dd9ea4bba667fd22ff729054803abd05f011f440a34bccc896c05ba5c7" }, "downloads": -1, "filename": "pywincffi-0.5.0.win32-py3.6.msi", "has_sig": false, "md5_digest": "043e6533b8272643e3cb40b0e1b7296f", "packagetype": "bdist_msi", "python_version": "3.6", "requires_python": null, "size": 163840, "upload_time": "2017-11-18T18:55:27", "url": "https://files.pythonhosted.org/packages/84/70/42cc64a25ad3f01d0b4b6716f2116da8fa10e72b847cb3dbd0ab120a1d87/pywincffi-0.5.0.win32-py3.6.msi" }, { "comment_text": "", "digests": { "md5": "48d95dcd2723ebfd693b37821f39b474", "sha256": "859710f3085eb65ac2b8ff7984d46df5abc207a80319e028b9ecbd53174c3625" }, "downloads": -1, "filename": "pywincffi-0.5.0.win-amd64-py2.7.msi", "has_sig": false, "md5_digest": "48d95dcd2723ebfd693b37821f39b474", "packagetype": "bdist_msi", "python_version": "2.7", "requires_python": null, "size": 229376, "upload_time": "2017-11-18T18:55:16", "url": "https://files.pythonhosted.org/packages/32/a3/ccb0b6cccd9fc3b35cb261663fec4e90748fb75abd16a0c890c3493f400d/pywincffi-0.5.0.win-amd64-py2.7.msi" }, { "comment_text": "", "digests": { "md5": "ba99824dc070d0eac42be5e4c6652b63", "sha256": "b8f1194d94b7ff49b76472b8e15d14adb9005238183a6012bf531b3019bf706a" }, "downloads": -1, "filename": "pywincffi-0.5.0.win-amd64-py3.3.msi", "has_sig": false, "md5_digest": "ba99824dc070d0eac42be5e4c6652b63", "packagetype": "bdist_msi", "python_version": "3.3", "requires_python": null, "size": 229376, "upload_time": "2017-11-18T18:55:17", "url": "https://files.pythonhosted.org/packages/fc/3c/87089bcec0d2f6f5a2aa0bcd9f096198c996e78c5a9eb58db1b74c91d961/pywincffi-0.5.0.win-amd64-py3.3.msi" }, { "comment_text": "", "digests": { "md5": "8e42a33480727d36f9be7e1395acc8c8", "sha256": "08bc28290475fe4515c76caea5b4dcaf8a453edc9e0a1d2e1975414eda3365b1" }, "downloads": -1, "filename": "pywincffi-0.5.0.win-amd64-py3.4.msi", "has_sig": false, "md5_digest": "8e42a33480727d36f9be7e1395acc8c8", "packagetype": "bdist_msi", "python_version": "3.4", "requires_python": null, "size": 163840, "upload_time": "2017-11-18T18:55:18", "url": "https://files.pythonhosted.org/packages/0e/05/7d8aeac520483bf4842e3b8243c33c9159a9c9136aca54e0a0ce4acce9ce/pywincffi-0.5.0.win-amd64-py3.4.msi" }, { "comment_text": "", "digests": { "md5": "96a08c4ebd40d4e3f85b5ba565ca863f", "sha256": "2d445f3b51aea51ee9df6f5b34e9075cb46c6270bb9ecaa18caad93209d9e808" }, "downloads": -1, "filename": "pywincffi-0.5.0.win-amd64-py3.5.msi", "has_sig": false, "md5_digest": "96a08c4ebd40d4e3f85b5ba565ca863f", "packagetype": "bdist_msi", "python_version": "3.5", "requires_python": null, "size": 167936, "upload_time": "2017-11-18T18:55:20", "url": "https://files.pythonhosted.org/packages/3c/16/b483b3c53caef7b3a2af9310303aa09824d9f188a9207ebae15d9bde229e/pywincffi-0.5.0.win-amd64-py3.5.msi" }, { "comment_text": "", "digests": { "md5": "fbec446380cab8e75aa49900077f30a9", "sha256": "8f3488c8557408d687d8b63acf5d7f60b3e58ed9b3f2263e6b7a013b5c287793" }, "downloads": -1, "filename": "pywincffi-0.5.0.win-amd64-py3.6.msi", "has_sig": false, "md5_digest": "fbec446380cab8e75aa49900077f30a9", "packagetype": "bdist_msi", "python_version": "3.6", "requires_python": null, "size": 167936, "upload_time": "2017-11-18T18:55:21", "url": "https://files.pythonhosted.org/packages/ea/56/2ef7f95ea473d54610e0a4f853ac822c41178762b91e74a511e4b5ea45fd/pywincffi-0.5.0.win-amd64-py3.6.msi" }, { "comment_text": "", "digests": { "md5": "893d177b81c3ecdefa967ccbb0683644", "sha256": "6a982f43e15474f737b9b89c3cce39470ae647df469258629214a83a2493706a" }, "downloads": -1, "filename": "pywincffi-0.5.0.zip", "has_sig": false, "md5_digest": "893d177b81c3ecdefa967ccbb0683644", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 67172, "upload_time": "2017-11-18T18:57:31", "url": "https://files.pythonhosted.org/packages/f2/fd/12298c7f36b585e6870bee0d8921dc74b3d9dc5ff57fed3416c6f2c58dd6/pywincffi-0.5.0.zip" } ] }