{ "info": { "author": "TitanSnow", "author_email": "tttnns1024@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 3 - Alpha", "Environment :: Console", "Environment :: Win32 (MS Windows)", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Operating System :: Microsoft :: Windows", "Operating System :: Microsoft :: Windows :: Windows 10", "Operating System :: Microsoft :: Windows :: Windows 7", "Operating System :: Microsoft :: Windows :: Windows 8", "Operating System :: Microsoft :: Windows :: Windows 8.1", "Operating System :: Microsoft :: Windows :: Windows Server 2003", "Operating System :: Microsoft :: Windows :: Windows Server 2008", "Operating System :: Microsoft :: Windows :: Windows Vista", "Operating System :: Microsoft :: Windows :: Windows XP", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Topic :: Software Development :: Libraries :: Python Modules", "Topic :: Terminals" ], "description": "========\r\nyawinpty\r\n========\r\nyet another winpty binding for python\r\n\r\n.. image:: https://ci.appveyor.com/api/projects/status/vaa9vkgs8ihivyg9?svg=true\r\n :target: https://ci.appveyor.com/project/TitanSnow/yawinpty\r\n :alt: Build status\r\n.. image:: https://img.shields.io/github/license/PSoWin/yawinpty.svg\r\n :target: LICENSE\r\n :alt: LICENSE\r\n.. image:: https://img.shields.io/pypi/v/yawinpty.svg\r\n :target: https://pypi.org/project/yawinpty\r\n :alt: PyPI version\r\n.. image:: https://img.shields.io/pypi/status/yawinpty.svg\r\n :target: https://pypi.org/project/yawinpty\r\n :alt: Development status\r\n.. image:: https://img.shields.io/pypi/dm/yawinpty.svg\r\n :target: https://pypi.org/project/yawinpty\r\n :alt: Download per month\r\n.. image:: https://img.shields.io/pypi/wheel/yawinpty.svg\r\n :target: https://pypi.org/project/yawinpty\r\n :alt: wheel\r\n.. image:: https://img.shields.io/pypi/pyversions/yawinpty.svg\r\n :target: https://pypi.org/project/yawinpty\r\n :alt: Support python versions\r\n.. image:: https://codecov.io/gh/TitanSnow/yawinpty/branch/master/graph/badge.svg\r\n :target: https://codecov.io/gh/TitanSnow/yawinpty\r\n :alt: Codecov\r\n\r\ninstall\r\n=======\r\n\r\n.. code-block:: bash\r\n\r\n pip install yawinpty\r\n\r\nbuild from source\r\n=================\r\n\r\npython 3.5+\r\n install `Visual C++ 2015 Build Tools`_, then use ``python setup.py build`` to build\r\n\r\nolder python\r\n +----------+-----------------------+\r\n |Visual C++|CPython version |\r\n +==========+=======================+\r\n |10.0 |3.3, 3.4 |\r\n +----------+-----------------------+\r\n |9.0 |2.6, 2.7, 3.0, 3.1, 3.2|\r\n +----------+-----------------------+\r\n\r\n install *both* `Visual C++ 2015 Build Tools`_ and the matching version of Visual C++ Build Tools. open \"Visual C++ *2015* Build Tools Command Prompt\" with the same arch as python, then use ``python setup.py build`` to build\r\n\r\n.. _`Visual C++ 2015 Build Tools`: http://landinghub.visualstudio.com/visual-cpp-build-tools\r\n\r\nbasic examples\r\n==============\r\n\r\nget output from process\r\n>>>>>>>>>>>>>>>>>>>>>>>\r\n\r\n.. code-block:: python\r\n\r\n from yawinpty import *\r\n\r\n # open a pty\r\n with Pty() as pty:\r\n # spawn a process ``python -c \"print('HelloWorld!')\"``\r\n pty.spawn(SpawnConfig(SpawnConfig.flag.auto_shutdown, cmdline='python -c \"print(\\'HelloWorld!\\')\"'))\r\n # open the out pipe of console to read\r\n with open(pty.conout_name(), 'r') as f:\r\n # HelloWorld!\r\n print(f.read())\r\n\r\ncommunicate with process\r\n>>>>>>>>>>>>>>>>>>>>>>>>\r\n\r\n.. code-block:: python\r\n\r\n from yawinpty import *\r\n\r\n with Pty() as pty:\r\n # spawn python repl\r\n pty.spawn(SpawnConfig(SpawnConfig.flag.auto_shutdown, cmdline='python'))\r\n # open the in pipe of console to write\r\n with open(pty.conin_name(), 'w') as f:\r\n f.write('1 + 2\\n')\r\n # write EOF to exit python\r\n f.write('\\x1a\\n')\r\n with open(pty.conout_name(), 'r') as f:\r\n print(f.read())\r\n\r\ngui log of console program (navie)\r\n>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>\r\n\r\n.. code-block:: python\r\n\r\n from sys import argv\r\n from threading import Thread\r\n from subprocess import list2cmdline\r\n from tkinter import *\r\n from yawinpty import *\r\n\r\n root = Tk()\r\n con = Text(root)\r\n con.pack()\r\n\r\n def poll():\r\n # strip escape seq\r\n with Pty(Config(Config.flag.plain_output)) as pty:\r\n # run the cmdline passed in by ``sys.argv``\r\n pty.spawn(SpawnConfig(SpawnConfig.flag.auto_shutdown, cmdline=list2cmdline(argv[1:])))\r\n with open(pty.conout_name(), 'r') as f:\r\n while True:\r\n ln = f.readline()\r\n if not ln:\r\n break\r\n # log to gui\r\n con.insert(END, ln)\r\n Thread(target=poll).start()\r\n\r\n root.mainloop()\r\n\r\nusing ``yawinpty``\r\n==================\r\n\r\nthe common goal to use ``yawinpty`` is to open a pseudo terminal then spawn a process in it and send input to it's stdin and get output from it's stdout. yawinpty.Pty wrapper a pseudo-terminal and do the jobs\r\n\r\n*class* yawinpty.\\ *Pty*\\ (*config=yawinpty.Config()*)\r\n>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>\r\n\r\nyawinpty.Pty accept a instance of yawinpty.Config as its config\r\n\r\n*class* yawinpty.\\ *Config*\\ (:emphasis:`\\*flags`)\r\n>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>\r\n\r\nfor the flags to init a \"config class\" is commonly a set of Class.flag.\\*. example\\:\r\n\r\n.. code-block:: python\r\n\r\n cfg = yawinpty.Config(yawinpty.Config.flag.plain_output)\r\n\r\n``help(yawinpty.Config.flag)`` for more supported flags\r\n\r\nfor ``yawinpty.SpawnConfig`` it's similar\r\n\r\n``help(yawinpty.Config)`` for more methods\r\n\r\ninstances of the ``Pty`` class have the following methods\\:\r\n\r\nPty.\\ *conin_name*\\ ()\r\n>>>>>>>>>>>>>>>>>>>>>>\r\n\r\nPty.\\ *conout_name*\\ ()\r\n>>>>>>>>>>>>>>>>>>>>>>>\r\n\r\nPty.\\ *conerr_name*\\ ()\r\n>>>>>>>>>>>>>>>>>>>>>>>\r\n\r\nget the name of console in/out/err pipe. the name could be passed to builtin ``open`` to open the pipe\r\n\r\nPty.\\ *agent_process_id*\\ ()\r\n>>>>>>>>>>>>>>>>>>>>>>>>>>>>\r\n\r\nget the process id of the agent process\r\n\r\nPty.\\ *set_size*\\ ()\r\n>>>>>>>>>>>>>>>>>>>>\r\n\r\nset window size of the terminal\r\n\r\nPty.\\ *spawn*\\ (\\ *spawn_config*\\ )\r\n>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>\r\n\r\nspawn a process in the pty. spawn_config is a instance of ``yawinpty.SpawnConfig``. note that one Pty instance could only spawn once otherwise ``yawinpty.RespawnError`` would be raised\r\n\r\nreturns a tuple of *process id, thread id* of spawned process\r\n\r\n*class* yawinpty.\\ *SpawnConfig*\\ (:emphasis:`\\*spawnFlags, appname=None, cmdline=None, cwd=None, env=None`)\r\n>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>\r\n\r\n``spawnFlags``\r\n the flags from ``yawinpty.SpawnConfig.flag``\r\n``appname``\r\n full path to executable file. can be ``None`` if ``cmdline`` is specified\r\n``cmdline``\r\n command line passed to the spawned process\r\n``cwd``\r\n working directory for the spawned process\r\n``env``\r\n the environ for the spawned process, a dict like ``{'VAR1': 'VAL1', 'VAR2': 'VAL2'}``\r\n\r\nnote that init a ``SpawnConfig`` *does not* spawn a process. a process is spawned only when calling ``Pty.spawn()``. one SpawnConfig instance could be used multitimes\r\n\r\nPty.\\ *wait_agent*\\ (\\ *timeout = yawinpty.INFINITE*\\ )\r\n>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>\r\n\r\nPty.\\ *wait_subprocess*\\ (\\ *timeout = yawinpty.INFINITE*\\ )\r\n>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>\r\n\r\nwait for agent/spawned process to exit. raise yawinpty.TimeoutExpired if out of timeout\r\n\r\nPty.\\ *close*\\ ()\r\n>>>>>>>>>>>>>>>>>\r\n\r\nkill processes not exited, close pty and release Windows resource\r\n\r\nexceptions\r\n>>>>>>>>>>\r\n\r\nall winpty related exceptions are subclasses of ``yawinpty.YawinptyError``. ``help(yawinpty)`` for more information\r\n\r\n", "description_content_type": null, "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/PSoWin/yawinpty", "keywords": "", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "yawinpty", "package_url": "https://pypi.org/project/yawinpty/", "platform": "Windows", "project_url": "https://pypi.org/project/yawinpty/", "project_urls": { "Homepage": "https://github.com/PSoWin/yawinpty" }, "release_url": "https://pypi.org/project/yawinpty/0.4.3/", "requires_dist": null, "requires_python": "", "summary": "yet another winpty binding for python", "version": "0.4.3" }, "last_serial": 3113631, "releases": { "0.4.3": [ { "comment_text": "", "digests": { "md5": "389813e1a8ec30926bdc74691385cd9f", "sha256": "d03eab5e1844de2e7597c5f42e15414f0a19bcdee7013dc1f64f4442342f7bfa" }, "downloads": -1, "filename": "yawinpty-0.4.3-cp27-cp27m-win32.whl", "has_sig": false, "md5_digest": "389813e1a8ec30926bdc74691385cd9f", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 299183, "upload_time": "2017-08-22T04:10:32", "url": "https://files.pythonhosted.org/packages/df/87/9602c683ca21f945a17e1a3a5d2d8a00934edda428340817dcf96cd8e647/yawinpty-0.4.3-cp27-cp27m-win32.whl" }, { "comment_text": "", "digests": { "md5": "fa1fa872c4a22937110f8a6fb3437d18", "sha256": "f203e4814fc7a14ab8d484511eb629c933678c652922f3641156a71f4cfb1fbd" }, "downloads": -1, "filename": "yawinpty-0.4.3-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "fa1fa872c4a22937110f8a6fb3437d18", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 342429, "upload_time": "2017-08-22T04:10:35", "url": "https://files.pythonhosted.org/packages/9c/e2/0095c493126293aed1f17f0bcd90cccee7bd99e29d598077ed8a90d4d310/yawinpty-0.4.3-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "a5e814c71345b03b8b791ee5b9f52092", "sha256": "f49551df2d5f41cec25eb306c328af7638ecc49a3685100bf01a36a1f491d313" }, "downloads": -1, "filename": "yawinpty-0.4.3-cp34-cp34m-win32.whl", "has_sig": false, "md5_digest": "a5e814c71345b03b8b791ee5b9f52092", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 295131, "upload_time": "2017-08-22T04:10:38", "url": "https://files.pythonhosted.org/packages/93/c5/a15e6353e671796017852b84b6d527e17d8efb12ac57e42b646595017fbf/yawinpty-0.4.3-cp34-cp34m-win32.whl" }, { "comment_text": "", "digests": { "md5": "9055f0a360ae4124af121afc5fc5ce1c", "sha256": "b4ad5a00bbc2b16b739c19218a3059a7629d1dd5729cb7a00f6ffc573d2346a6" }, "downloads": -1, "filename": "yawinpty-0.4.3-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "9055f0a360ae4124af121afc5fc5ce1c", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 366283, "upload_time": "2017-08-22T04:10:41", "url": "https://files.pythonhosted.org/packages/85/d8/5e6d70117b349881a187db22228ddedecafe5229a0c5eb60b506045f2c97/yawinpty-0.4.3-cp34-cp34m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "27e6db64f150cbfcd2c67fe0f1450a2d", "sha256": "7c3e6889fc19632e4a780adfbe447ee45d689fe71faff311270c5777f6be4bd2" }, "downloads": -1, "filename": "yawinpty-0.4.3-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "27e6db64f150cbfcd2c67fe0f1450a2d", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 279740, "upload_time": "2017-08-22T04:10:45", "url": "https://files.pythonhosted.org/packages/4e/bd/af926e824fcc6efed36713e56478b90d62ca673b1e0203ec3d93bb0ada89/yawinpty-0.4.3-cp35-cp35m-win32.whl" }, { "comment_text": "", "digests": { "md5": "4202bf7b33388e5a358eae69bc9d449d", "sha256": "d259b926ebee9800bc85a161d1d1eb6aba217ee020cd025a949bff4c6bdccdc4" }, "downloads": -1, "filename": "yawinpty-0.4.3-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "4202bf7b33388e5a358eae69bc9d449d", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 326256, "upload_time": "2017-08-22T04:10:48", "url": "https://files.pythonhosted.org/packages/93/d5/956902d8b0cfa95cebe20e1a5e1e4ef07f115519fc8a66264ae2c8fab1d2/yawinpty-0.4.3-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "2bdbf0669271607d2e4a64e8e025087b", "sha256": "a38e20632eeafb13837e3dd77c3dc65d8b2ca534237c4e3d4b91f98c4f5a0298" }, "downloads": -1, "filename": "yawinpty-0.4.3-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "2bdbf0669271607d2e4a64e8e025087b", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 280969, "upload_time": "2017-08-22T04:10:52", "url": "https://files.pythonhosted.org/packages/f1/7f/5fd1322933177c46d1dfbbdfd5aef63448a4c373df60085b8826c7a78b75/yawinpty-0.4.3-cp36-cp36m-win32.whl" }, { "comment_text": "", "digests": { "md5": "1e4bc4aa400674c561f63760d04b8d2b", "sha256": "0c5855fc6ace4cd768950816bde0256302fbe2290a4f6237e352095958286834" }, "downloads": -1, "filename": "yawinpty-0.4.3-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "1e4bc4aa400674c561f63760d04b8d2b", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 328496, "upload_time": "2017-08-22T04:10:54", "url": "https://files.pythonhosted.org/packages/5f/31/3abc17a150762f6b44cf8c11dae208087506b028082dc9f261903350e833/yawinpty-0.4.3-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "becf16170ca4f921a4df673d32e7ec4d", "sha256": "7c1c60cb0f880da27df01b7828f030213d93e122241dce515f67148e3dad93f0" }, "downloads": -1, "filename": "yawinpty-0.4.3.tar.gz", "has_sig": false, "md5_digest": "becf16170ca4f921a4df673d32e7ec4d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 214713, "upload_time": "2017-08-22T04:10:57", "url": "https://files.pythonhosted.org/packages/5c/cb/1b4fa9159fd5e2e7bddb0d13d4948999d2908d5b77596f44825cf11a6175/yawinpty-0.4.3.tar.gz" } ], "0.4.3.dev1": [ { "comment_text": "", "digests": { "md5": "f3b749021a70c619f2cc79a63b26ab70", "sha256": "d52da80aac4bc0bc530c3c9d394e6dddda107a0356af854b04a48a364c2f4c67" }, "downloads": -1, "filename": "yawinpty-0.4.3.dev1-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "f3b749021a70c619f2cc79a63b26ab70", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 147212, "upload_time": "2017-07-12T09:10:22", "url": "https://files.pythonhosted.org/packages/55/f1/b0c2cf92d94c1bdc67305236aee1e8ebbede17d3bd20052a1dac85da9e84/yawinpty-0.4.3.dev1-cp35-cp35m-win32.whl" }, { "comment_text": "", "digests": { "md5": "85a055673ab80fce1f160700a7575740", "sha256": "465972250fba1737b6554c789430615c121a9fd402e6dce150579d4c9f321c44" }, "downloads": -1, "filename": "yawinpty-0.4.3.dev1-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "85a055673ab80fce1f160700a7575740", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 176559, "upload_time": "2017-07-12T09:10:27", "url": "https://files.pythonhosted.org/packages/6c/d9/c485196fc437f8941f3f32bc9855865370dacbd96fe0074f42db4cfbc17a/yawinpty-0.4.3.dev1-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "900024610165fc38aaace42f783786f3", "sha256": "8fd060051e641256ee509e19df743cf5c5d9aa854eef989f98803325e168113b" }, "downloads": -1, "filename": "yawinpty-0.4.3.dev1-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "900024610165fc38aaace42f783786f3", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 148110, "upload_time": "2017-07-12T09:10:29", "url": "https://files.pythonhosted.org/packages/90/1b/1af8e12bb98d9cc926ab1d1eea24499b955d9ee04c5f34aa61291043c186/yawinpty-0.4.3.dev1-cp36-cp36m-win32.whl" }, { "comment_text": "", "digests": { "md5": "48d1f9e09bda1e9786d84dc1d675a285", "sha256": "31fe10c57dc4a21a27645ea5a8fccc41c04c2d723886882ecb0d900fde710dca" }, "downloads": -1, "filename": "yawinpty-0.4.3.dev1-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "48d1f9e09bda1e9786d84dc1d675a285", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 178032, "upload_time": "2017-07-12T09:10:30", "url": "https://files.pythonhosted.org/packages/99/cb/8175da4999e1a78cf8fc053981afca42304f0699b13204af83a888cd3d32/yawinpty-0.4.3.dev1-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "176a93efbc7399c721bfb80c163dfaf7", "sha256": "40017cf4334f07d5731439aef690d1ff4240f0d7c6460884713e4fbb05839635" }, "downloads": -1, "filename": "yawinpty-0.4.3.dev1.tar.gz", "has_sig": false, "md5_digest": "176a93efbc7399c721bfb80c163dfaf7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 182907, "upload_time": "2017-07-12T09:10:32", "url": "https://files.pythonhosted.org/packages/d5/a6/3d3238a23dff93beab02c67ed621faf0a51cd8ead8823d4b01594f5aa94a/yawinpty-0.4.3.dev1.tar.gz" } ], "0.4.3.dev2": [ { "comment_text": "", "digests": { "md5": "c156a2a93de7f42140613ff02c1f7eab", "sha256": "890f0263f7b30f8452277c97d4df4be77b5e7857914bd2e4faf8f7a7d070a5a8" }, "downloads": -1, "filename": "yawinpty-0.4.3.dev2-cp27-cp27m-win32.whl", "has_sig": false, "md5_digest": "c156a2a93de7f42140613ff02c1f7eab", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 162726, "upload_time": "2017-07-13T21:09:05", "url": "https://files.pythonhosted.org/packages/0e/af/065c6c937f4a5c1ffa831ed7e2782d5ae34bafc42f0e3321dc602653e51d/yawinpty-0.4.3.dev2-cp27-cp27m-win32.whl" } ], "0.4.3.dev3": [ { "comment_text": "", "digests": { "md5": "ae51f9fb8723d59f230dcf007134e75d", "sha256": "7bd6ff9e72c261c07fd8685949fb6543c8a1e46100e826ac74645671fb48c21c" }, "downloads": -1, "filename": "yawinpty-0.4.3.dev3-cp27-cp27m-win32.whl", "has_sig": false, "md5_digest": "ae51f9fb8723d59f230dcf007134e75d", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 165931, "upload_time": "2017-07-15T11:19:36", "url": "https://files.pythonhosted.org/packages/89/89/abea454a00fb0df1acdda1b4503d47fb3f232ea626d2396f1065fa801eb2/yawinpty-0.4.3.dev3-cp27-cp27m-win32.whl" }, { "comment_text": "", "digests": { "md5": "2d7cfbf08544f833d91bf6eb840e49c0", "sha256": "96acc4d63a8b3de641edcc3ad37dcad69a84bf63d5ec9c551ef7fd0274fcfc8c" }, "downloads": -1, "filename": "yawinpty-0.4.3.dev3-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "2d7cfbf08544f833d91bf6eb840e49c0", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 195503, "upload_time": "2017-07-15T11:19:49", "url": "https://files.pythonhosted.org/packages/a8/2e/a385e0b996d0f9baa6ce9dee4e75dedc54dfe22379787ad01d8a4e39fad1/yawinpty-0.4.3.dev3-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "1a7b347ce0a1d45656eda7d4b7a3a362", "sha256": "fd4d2fa8908d545b87f91309e246732f07de101f44691b4b29b08fb7f8a6e551" }, "downloads": -1, "filename": "yawinpty-0.4.3.dev3-cp34-cp34m-win32.whl", "has_sig": false, "md5_digest": "1a7b347ce0a1d45656eda7d4b7a3a362", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 165741, "upload_time": "2017-07-15T11:20:02", "url": "https://files.pythonhosted.org/packages/c8/af/2b9de2b40f1f6563b5d671211e1b24dab81eb19b0341f18525429cbd5009/yawinpty-0.4.3.dev3-cp34-cp34m-win32.whl" }, { "comment_text": "", "digests": { "md5": "78af925b8bff52ab57b9f43ff6f0ed9f", "sha256": "6e0d561cbc15a8569283274959629f21ccf30297eba0aba9973fb774f4c212dd" }, "downloads": -1, "filename": "yawinpty-0.4.3.dev3-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "78af925b8bff52ab57b9f43ff6f0ed9f", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 195332, "upload_time": "2017-07-15T11:20:10", "url": "https://files.pythonhosted.org/packages/9f/92/fe11ccafa6d003de5fdd02bfac6f0b6343c025fa07e39785140bec00cd99/yawinpty-0.4.3.dev3-cp34-cp34m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "6c5d8d46991281d26665a9d6f5d9f7ae", "sha256": "11a8df8860236e68decc551267695676fc7edb0748ca5528cae2e3f415873505" }, "downloads": -1, "filename": "yawinpty-0.4.3.dev3-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "6c5d8d46991281d26665a9d6f5d9f7ae", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 158644, "upload_time": "2017-07-15T11:20:19", "url": "https://files.pythonhosted.org/packages/8d/fc/7e6e03945caf9020df51ddf9f5086310a46e64385775833a1a564fdd3f8d/yawinpty-0.4.3.dev3-cp35-cp35m-win32.whl" }, { "comment_text": "", "digests": { "md5": "3878650bd6d851f10e96e1bfb6a27776", "sha256": "c4373dcc142f5d6498d304e2a960416da3848fea3aff329518b74f0a074ef7c8" }, "downloads": -1, "filename": "yawinpty-0.4.3.dev3-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "3878650bd6d851f10e96e1bfb6a27776", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 188918, "upload_time": "2017-07-15T11:20:35", "url": "https://files.pythonhosted.org/packages/3c/fa/844f23723722d1e111beb89637174a0fe0ab8f4652dd32b0965d11f6653a/yawinpty-0.4.3.dev3-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "f6a744dccd7c23dee83c88ec3b9e7267", "sha256": "be463e8e59ce30a4900e912c1e79f9a6582fe7731630d41a3563708417277308" }, "downloads": -1, "filename": "yawinpty-0.4.3.dev3-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "f6a744dccd7c23dee83c88ec3b9e7267", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 159956, "upload_time": "2017-07-15T11:20:41", "url": "https://files.pythonhosted.org/packages/e0/34/2fa3a110a5bbca24c0867cb9c32f107904ecba736d64749a7f04e103eef0/yawinpty-0.4.3.dev3-cp36-cp36m-win32.whl" }, { "comment_text": "", "digests": { "md5": "0e432c7b1943e1655c0d0a649072f1d2", "sha256": "0c3e153b1e562ae5c31b3e2d647335c1616b34189226472536cee23f6ba65b54" }, "downloads": -1, "filename": "yawinpty-0.4.3.dev3-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "0e432c7b1943e1655c0d0a649072f1d2", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 190553, "upload_time": "2017-07-15T11:20:51", "url": "https://files.pythonhosted.org/packages/ca/a4/c00081c5a52a359d7985b951f60910e39e6912660453260e31b44a93d835/yawinpty-0.4.3.dev3-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "dedfbce5d37d54a2e1c010e6107c64d7", "sha256": "ffc79be6b1e270d8a84bdf9c31bb17ab51c31506305d24d9ea833aa08705a239" }, "downloads": -1, "filename": "yawinpty-0.4.3.dev3.tar.gz", "has_sig": false, "md5_digest": "dedfbce5d37d54a2e1c010e6107c64d7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 199119, "upload_time": "2017-07-15T11:21:01", "url": "https://files.pythonhosted.org/packages/85/f9/af5114e31dc6f1b9cf9ced5ce1c4272cb63d9dd9250723e47dba9ce1ae1d/yawinpty-0.4.3.dev3.tar.gz" } ], "0.4.3.dev4": [ { "comment_text": "", "digests": { "md5": "1abee78ea9a5e4fdb28e929d43a06e06", "sha256": "1e9fc2cfa051be290e7383c7eb9b0ea1bb852e6ae8e72e4995b47bab6f566e6b" }, "downloads": -1, "filename": "yawinpty-0.4.3.dev4-cp27-cp27m-win32.whl", "has_sig": false, "md5_digest": "1abee78ea9a5e4fdb28e929d43a06e06", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 166659, "upload_time": "2017-07-16T07:11:44", "url": "https://files.pythonhosted.org/packages/6e/60/b911bf18eca9b36ccabe48c45a376ee1e3f2a1ea255250c7ae096391bcec/yawinpty-0.4.3.dev4-cp27-cp27m-win32.whl" }, { "comment_text": "", "digests": { "md5": "a120281ed7a506c7518747b9a9032311", "sha256": "f6f36c291ad1c72bb2075ff0928af456f31efc4d479036e097d72378062dc935" }, "downloads": -1, "filename": "yawinpty-0.4.3.dev4-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "a120281ed7a506c7518747b9a9032311", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 196382, "upload_time": "2017-07-16T07:12:07", "url": "https://files.pythonhosted.org/packages/42/c6/35cf322be443dc50eb95150d9b901b4945c83dd199b553c62e0d3fdf188d/yawinpty-0.4.3.dev4-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "edab2e1e2f188797bb0c1761fe91393d", "sha256": "3e87d2c301e84382d2604174c8691f884d9a1414fc95d6949c38a7281b8f96a8" }, "downloads": -1, "filename": "yawinpty-0.4.3.dev4-cp34-cp34m-win32.whl", "has_sig": false, "md5_digest": "edab2e1e2f188797bb0c1761fe91393d", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 166434, "upload_time": "2017-07-16T07:12:31", "url": "https://files.pythonhosted.org/packages/b3/dd/b6b4af7a850d8f6f6ab688b27eae7ba7742a482a081ec8c01ed8d0e1ba2b/yawinpty-0.4.3.dev4-cp34-cp34m-win32.whl" }, { "comment_text": "", "digests": { "md5": "63e71021eaf9cfd6eb150e863558cbc9", "sha256": "55ef75ffd851106ff75b206467872be42bc8385265e983493f7b580cd866fe18" }, "downloads": -1, "filename": "yawinpty-0.4.3.dev4-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "63e71021eaf9cfd6eb150e863558cbc9", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 196249, "upload_time": "2017-07-16T07:12:55", "url": "https://files.pythonhosted.org/packages/53/76/179c7edb9e6b3a660a0ced83de98e12f6c96e32458701064621e478eafcc/yawinpty-0.4.3.dev4-cp34-cp34m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "78a5371464e1794b4433178b4b4d7901", "sha256": "d65d6c88aebb87bbdd131b673aca33a12433fd13eb041ca60bef073af1bc6636" }, "downloads": -1, "filename": "yawinpty-0.4.3.dev4-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "78a5371464e1794b4433178b4b4d7901", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 159295, "upload_time": "2017-07-16T07:13:18", "url": "https://files.pythonhosted.org/packages/0d/a3/6b18921a48b2792d8711624a4cefdace019a1502b31ffbb0fd6440530a8b/yawinpty-0.4.3.dev4-cp35-cp35m-win32.whl" }, { "comment_text": "", "digests": { "md5": "678c4cbef4990d01ba550e55b9c33808", "sha256": "b6aafb43d92d189cb8a81783da9a13b4202d61fdc76a7e9338bf5448177178ff" }, "downloads": -1, "filename": "yawinpty-0.4.3.dev4-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "678c4cbef4990d01ba550e55b9c33808", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 189476, "upload_time": "2017-07-16T07:13:44", "url": "https://files.pythonhosted.org/packages/35/25/02895edf3fd49b1d593ba7193c75c1446833f83bfd2136332067a9bb21db/yawinpty-0.4.3.dev4-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "1570ce0fdf0001bb145a9b05cc06eda1", "sha256": "05bcb2b3d10526db7a2081a1576aae89aeef941a62b2f56804c847ace930bb00" }, "downloads": -1, "filename": "yawinpty-0.4.3.dev4-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "1570ce0fdf0001bb145a9b05cc06eda1", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 160541, "upload_time": "2017-07-16T07:14:07", "url": "https://files.pythonhosted.org/packages/a6/72/202f57807a323d177e6539ab87d8f309127f8555c78709c20db6d4387d21/yawinpty-0.4.3.dev4-cp36-cp36m-win32.whl" }, { "comment_text": "", "digests": { "md5": "a67f07c557dcfe4269124fbfb1332be3", "sha256": "6277b3c374f890ba9e97d958e173ce202d2132d2cd52fee44bfa39dfce33e16c" }, "downloads": -1, "filename": "yawinpty-0.4.3.dev4-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "a67f07c557dcfe4269124fbfb1332be3", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 191072, "upload_time": "2017-07-16T07:14:30", "url": "https://files.pythonhosted.org/packages/67/be/65d300530455d2763172b503c644f09670a4cdfb17407876046c320b0dbf/yawinpty-0.4.3.dev4-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "17e8cac6c07898b8a2b6c3c3b3105b3e", "sha256": "f819175c19995baefc01684820b171e9613caddc345274509e20be354c6b0cd4" }, "downloads": -1, "filename": "yawinpty-0.4.3.dev4-pp258-pypy_41-win32.whl", "has_sig": false, "md5_digest": "17e8cac6c07898b8a2b6c3c3b3105b3e", "packagetype": "bdist_wheel", "python_version": "pp258", "requires_python": null, "size": 159390, "upload_time": "2017-07-17T12:07:39", "url": "https://files.pythonhosted.org/packages/ac/21/c70658142e8198dd1d3c6a7206d63f23315bddad8c340a103d7da7a5dafe/yawinpty-0.4.3.dev4-pp258-pypy_41-win32.whl" }, { "comment_text": "", "digests": { "md5": "81a8765b518efee22fe7cdd0950f98b9", "sha256": "58c1498225dcabc6fef2accae27845ad71901c48bc3da7d3b36cf0ec2330aa3f" }, "downloads": -1, "filename": "yawinpty-0.4.3.dev4.tar.gz", "has_sig": false, "md5_digest": "81a8765b518efee22fe7cdd0950f98b9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 200475, "upload_time": "2017-07-16T07:15:01", "url": "https://files.pythonhosted.org/packages/77/87/bc061745143e1a433a8e8b2cfecd12387a151f30745bd9a70bd2ca95517b/yawinpty-0.4.3.dev4.tar.gz" } ], "0.4.3.dev5": [ { "comment_text": "", "digests": { "md5": "d474fcaeaf4f807c48be261edb2a1db3", "sha256": "1041dbc3f3fbb3545e3498bc57db6d264333c2de855da01cc0497e1ab76be6a4" }, "downloads": -1, "filename": "yawinpty-0.4.3.dev5-cp27-cp27m-win32.whl", "has_sig": false, "md5_digest": "d474fcaeaf4f807c48be261edb2a1db3", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 297014, "upload_time": "2017-07-18T11:12:56", "url": "https://files.pythonhosted.org/packages/dc/f0/66ef34dc5a85b204ff338eb4d81a6206acaf544c77e8f873acb11dcd2fc3/yawinpty-0.4.3.dev5-cp27-cp27m-win32.whl" }, { "comment_text": "", "digests": { "md5": "c6f1e6ffb86cebd139e3d5455787141d", "sha256": "e52b3b8b546b2c8947d796696fe9d0e385cf6dee1c0b3e6492c9275e6dce7a1e" }, "downloads": -1, "filename": "yawinpty-0.4.3.dev5-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "c6f1e6ffb86cebd139e3d5455787141d", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 339050, "upload_time": "2017-07-18T11:13:04", "url": "https://files.pythonhosted.org/packages/a4/ee/f8194a62f0b5adf4e61898dfe08e75415df183c6067ea4c9d96ff4069a06/yawinpty-0.4.3.dev5-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "841bed5189e76863f3b694bdbc2abb87", "sha256": "6a5df59b3936907de5a1cb6ab80314db174c1b3aa1eed552e9bbe511eaca1246" }, "downloads": -1, "filename": "yawinpty-0.4.3.dev5-cp34-cp34m-win32.whl", "has_sig": false, "md5_digest": "841bed5189e76863f3b694bdbc2abb87", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 292828, "upload_time": "2017-07-18T11:13:13", "url": "https://files.pythonhosted.org/packages/8e/a5/97c40587641481177b1356526158621434aaef1e3df43261305e2f6699b5/yawinpty-0.4.3.dev5-cp34-cp34m-win32.whl" }, { "comment_text": "", "digests": { "md5": "3952405ddb108013d17ec9b39bba7444", "sha256": "9e9681d9e73e997818579abf46155de3f182d2a174119b0738d9f390994168d0" }, "downloads": -1, "filename": "yawinpty-0.4.3.dev5-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "3952405ddb108013d17ec9b39bba7444", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 363126, "upload_time": "2017-07-18T11:13:22", "url": "https://files.pythonhosted.org/packages/c5/f8/04b2a2c71ce8dc5466a3ccb8fe7506b9aae7cd0c139627a2695abd47ba28/yawinpty-0.4.3.dev5-cp34-cp34m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "4f38d1acce443101dce5b4088b218db8", "sha256": "793138e965183c202e8b0a68c6f1275d6ebcda56f5768c74a73444837591ef96" }, "downloads": -1, "filename": "yawinpty-0.4.3.dev5-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "4f38d1acce443101dce5b4088b218db8", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 271999, "upload_time": "2017-07-18T11:13:29", "url": "https://files.pythonhosted.org/packages/f0/eb/845297dae09f76743283c3c21d475022b7d4e1fd89c19e84f7d3b9c41771/yawinpty-0.4.3.dev5-cp35-cp35m-win32.whl" }, { "comment_text": "", "digests": { "md5": "369d55d03f67ef7cdbfc95ca22587f1e", "sha256": "7084a66abc81df7816fef0f2b4fd5aaa3f72bf9151b883a86f3a22faabec7642" }, "downloads": -1, "filename": "yawinpty-0.4.3.dev5-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "369d55d03f67ef7cdbfc95ca22587f1e", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 315462, "upload_time": "2017-07-18T11:13:48", "url": "https://files.pythonhosted.org/packages/cb/40/5349c7d50ae46df61255705a4de3345eda3914fd7806d7ba22af2712b9b3/yawinpty-0.4.3.dev5-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "c6f7b000678fb0e18d9c0efe57dc212c", "sha256": "3d3c6ecb8819c7a8e444549aa99b07ba24608c643545abc11af44533100204f4" }, "downloads": -1, "filename": "yawinpty-0.4.3.dev5-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "c6f7b000678fb0e18d9c0efe57dc212c", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 273110, "upload_time": "2017-07-18T11:13:56", "url": "https://files.pythonhosted.org/packages/1e/1b/4a34a6d46896ffdd5bbe56f583d37dc557dc8334fc5c2befea8bb78f77db/yawinpty-0.4.3.dev5-cp36-cp36m-win32.whl" }, { "comment_text": "", "digests": { "md5": "b74e736c9d9af389449ec46287aedb24", "sha256": "85c32579e019d3e94af12206e5e5ea377ef2316564d0a15ab69ba08f37edc4ac" }, "downloads": -1, "filename": "yawinpty-0.4.3.dev5-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "b74e736c9d9af389449ec46287aedb24", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 316709, "upload_time": "2017-07-18T11:14:14", "url": "https://files.pythonhosted.org/packages/13/00/0991438b6f4c802f010203d05925293dc615a09f4d642696b31cdc9c5fdc/yawinpty-0.4.3.dev5-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "f3a35556adf1e61dae2a685e44ac67e5", "sha256": "32d754f8bb34bba431cac41ff4d9a9796c52ff5ca7edc0ddaf11f676efaa022f" }, "downloads": -1, "filename": "yawinpty-0.4.3.dev5.tar.gz", "has_sig": false, "md5_digest": "f3a35556adf1e61dae2a685e44ac67e5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 202224, "upload_time": "2017-07-18T11:14:21", "url": "https://files.pythonhosted.org/packages/ed/42/0a5079fb97a85677eb63d469255baee62a569da41927392c66934dcb05d3/yawinpty-0.4.3.dev5.tar.gz" } ], "0.4.3a1": [ { "comment_text": "", "digests": { "md5": "76813b5b64cd3a787b2b52ad3fd71e1f", "sha256": "dced17936c1a21fbf090ba7db7bf639adf5b71a5e0d916dab6daeaf3f85aa7b9" }, "downloads": -1, "filename": "yawinpty-0.4.3a1-cp27-cp27m-win32.whl", "has_sig": false, "md5_digest": "76813b5b64cd3a787b2b52ad3fd71e1f", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 171138, "upload_time": "2017-07-23T05:42:23", "url": "https://files.pythonhosted.org/packages/90/23/e8dde8fef2dfdffe93b8b86d9d5cce9de0e6a21cf6a2d3c2a0eaab475670/yawinpty-0.4.3a1-cp27-cp27m-win32.whl" }, { "comment_text": "", "digests": { "md5": "0513480742d99b6c9994b7254b6cf191", "sha256": "217d5955d5f5052e9df9349f85e3efd345fa89164204a3e64b214b4072791dd5" }, "downloads": -1, "filename": "yawinpty-0.4.3a1-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "0513480742d99b6c9994b7254b6cf191", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 201522, "upload_time": "2017-07-23T05:42:31", "url": "https://files.pythonhosted.org/packages/56/8b/8848e4ebce382736006c32a616545ab9c4d96d650cabfddf59bc0ebdb06c/yawinpty-0.4.3a1-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "c3fc01306853b46a1258c187d1a46e57", "sha256": "79ae1d0ab6853db2a9d8aba31eb3b3d2e51945153691e44af9487324a6b90974" }, "downloads": -1, "filename": "yawinpty-0.4.3a1-cp34-cp34m-win32.whl", "has_sig": false, "md5_digest": "c3fc01306853b46a1258c187d1a46e57", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 171347, "upload_time": "2017-07-23T05:42:36", "url": "https://files.pythonhosted.org/packages/11/e5/0b5c9fe64dbf72e708ec71b67b8dcb29e8659b882d9429b91ba751d8ad49/yawinpty-0.4.3a1-cp34-cp34m-win32.whl" }, { "comment_text": "", "digests": { "md5": "b478e78b71cf4ab8bfa961c44f55ef90", "sha256": "c2e7812f3e0ad7ee39d0d2f359269874f3be4a87c1ed87340cd3aa68aaa0d58f" }, "downloads": -1, "filename": "yawinpty-0.4.3a1-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "b478e78b71cf4ab8bfa961c44f55ef90", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 202580, "upload_time": "2017-07-23T05:42:42", "url": "https://files.pythonhosted.org/packages/64/68/0d096284e75c393c63e2e705ae402485e86ada35a374bb8ad2661dfbf83e/yawinpty-0.4.3a1-cp34-cp34m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "15b909e9cb966dcd422ca8a4cf8484bb", "sha256": "6b3a30dcd824e30d71b27d3e60c505916783d9466b63237a3ba69604370d8f59" }, "downloads": -1, "filename": "yawinpty-0.4.3a1-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "15b909e9cb966dcd422ca8a4cf8484bb", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 169536, "upload_time": "2017-07-23T05:42:48", "url": "https://files.pythonhosted.org/packages/9b/55/2fffaa60d070df1e4220d1539cca18160135189b6e86927556735f710e85/yawinpty-0.4.3a1-cp35-cp35m-win32.whl" }, { "comment_text": "", "digests": { "md5": "2b035a624c409c21984cfae2c2725fbf", "sha256": "7598e34317963d6f0e9736d20044c71e35a711d1d98b03ee760fe06334da09d4" }, "downloads": -1, "filename": "yawinpty-0.4.3a1-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "2b035a624c409c21984cfae2c2725fbf", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 204209, "upload_time": "2017-07-23T05:42:54", "url": "https://files.pythonhosted.org/packages/21/36/34368d8cf6aebd25db65bff02071fdd417be5418318ed9990a08119a0cf0/yawinpty-0.4.3a1-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "c147e8c0d3861ef15ee0fc20ef0edeac", "sha256": "49a48877be0957c5845626d5dcbea1e964be40612af081c52cb2b13221da88ac" }, "downloads": -1, "filename": "yawinpty-0.4.3a1-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "c147e8c0d3861ef15ee0fc20ef0edeac", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 170847, "upload_time": "2017-07-23T05:42:59", "url": "https://files.pythonhosted.org/packages/2e/a1/02371ad094c19b52ba800d5fca4aab2e221870956dce0b7c38c5ccc8a7a6/yawinpty-0.4.3a1-cp36-cp36m-win32.whl" }, { "comment_text": "", "digests": { "md5": "c4940273ffdc363e317d9485627c0241", "sha256": "c5a87be4d3c85655a7e54ef2c87ac090450c2013a49c9328cbcee1441b137fd2" }, "downloads": -1, "filename": "yawinpty-0.4.3a1-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "c4940273ffdc363e317d9485627c0241", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 206284, "upload_time": "2017-07-23T05:43:05", "url": "https://files.pythonhosted.org/packages/2f/bd/fdd3532d7eb269ccb0c967a6781867f12ba207c1f794c3c902cf944a581a/yawinpty-0.4.3a1-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "1068680dd0e6ee55278d1d70947e3d1f", "sha256": "78a8b5789e2fc65231f9810872bc3713a190afe0e373922b8e772e1bf2fc7a57" }, "downloads": -1, "filename": "yawinpty-0.4.3a1.tar.gz", "has_sig": false, "md5_digest": "1068680dd0e6ee55278d1d70947e3d1f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 214640, "upload_time": "2017-07-23T05:43:11", "url": "https://files.pythonhosted.org/packages/2f/d0/1935ad85d824709869ff1b5ec57388835ee549d58f175593b71b727bc5f2/yawinpty-0.4.3a1.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "389813e1a8ec30926bdc74691385cd9f", "sha256": "d03eab5e1844de2e7597c5f42e15414f0a19bcdee7013dc1f64f4442342f7bfa" }, "downloads": -1, "filename": "yawinpty-0.4.3-cp27-cp27m-win32.whl", "has_sig": false, "md5_digest": "389813e1a8ec30926bdc74691385cd9f", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 299183, "upload_time": "2017-08-22T04:10:32", "url": "https://files.pythonhosted.org/packages/df/87/9602c683ca21f945a17e1a3a5d2d8a00934edda428340817dcf96cd8e647/yawinpty-0.4.3-cp27-cp27m-win32.whl" }, { "comment_text": "", "digests": { "md5": "fa1fa872c4a22937110f8a6fb3437d18", "sha256": "f203e4814fc7a14ab8d484511eb629c933678c652922f3641156a71f4cfb1fbd" }, "downloads": -1, "filename": "yawinpty-0.4.3-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "fa1fa872c4a22937110f8a6fb3437d18", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 342429, "upload_time": "2017-08-22T04:10:35", "url": "https://files.pythonhosted.org/packages/9c/e2/0095c493126293aed1f17f0bcd90cccee7bd99e29d598077ed8a90d4d310/yawinpty-0.4.3-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "a5e814c71345b03b8b791ee5b9f52092", "sha256": "f49551df2d5f41cec25eb306c328af7638ecc49a3685100bf01a36a1f491d313" }, "downloads": -1, "filename": "yawinpty-0.4.3-cp34-cp34m-win32.whl", "has_sig": false, "md5_digest": "a5e814c71345b03b8b791ee5b9f52092", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 295131, "upload_time": "2017-08-22T04:10:38", "url": "https://files.pythonhosted.org/packages/93/c5/a15e6353e671796017852b84b6d527e17d8efb12ac57e42b646595017fbf/yawinpty-0.4.3-cp34-cp34m-win32.whl" }, { "comment_text": "", "digests": { "md5": "9055f0a360ae4124af121afc5fc5ce1c", "sha256": "b4ad5a00bbc2b16b739c19218a3059a7629d1dd5729cb7a00f6ffc573d2346a6" }, "downloads": -1, "filename": "yawinpty-0.4.3-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "9055f0a360ae4124af121afc5fc5ce1c", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 366283, "upload_time": "2017-08-22T04:10:41", "url": "https://files.pythonhosted.org/packages/85/d8/5e6d70117b349881a187db22228ddedecafe5229a0c5eb60b506045f2c97/yawinpty-0.4.3-cp34-cp34m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "27e6db64f150cbfcd2c67fe0f1450a2d", "sha256": "7c3e6889fc19632e4a780adfbe447ee45d689fe71faff311270c5777f6be4bd2" }, "downloads": -1, "filename": "yawinpty-0.4.3-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "27e6db64f150cbfcd2c67fe0f1450a2d", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 279740, "upload_time": "2017-08-22T04:10:45", "url": "https://files.pythonhosted.org/packages/4e/bd/af926e824fcc6efed36713e56478b90d62ca673b1e0203ec3d93bb0ada89/yawinpty-0.4.3-cp35-cp35m-win32.whl" }, { "comment_text": "", "digests": { "md5": "4202bf7b33388e5a358eae69bc9d449d", "sha256": "d259b926ebee9800bc85a161d1d1eb6aba217ee020cd025a949bff4c6bdccdc4" }, "downloads": -1, "filename": "yawinpty-0.4.3-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "4202bf7b33388e5a358eae69bc9d449d", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 326256, "upload_time": "2017-08-22T04:10:48", "url": "https://files.pythonhosted.org/packages/93/d5/956902d8b0cfa95cebe20e1a5e1e4ef07f115519fc8a66264ae2c8fab1d2/yawinpty-0.4.3-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "2bdbf0669271607d2e4a64e8e025087b", "sha256": "a38e20632eeafb13837e3dd77c3dc65d8b2ca534237c4e3d4b91f98c4f5a0298" }, "downloads": -1, "filename": "yawinpty-0.4.3-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "2bdbf0669271607d2e4a64e8e025087b", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 280969, "upload_time": "2017-08-22T04:10:52", "url": "https://files.pythonhosted.org/packages/f1/7f/5fd1322933177c46d1dfbbdfd5aef63448a4c373df60085b8826c7a78b75/yawinpty-0.4.3-cp36-cp36m-win32.whl" }, { "comment_text": "", "digests": { "md5": "1e4bc4aa400674c561f63760d04b8d2b", "sha256": "0c5855fc6ace4cd768950816bde0256302fbe2290a4f6237e352095958286834" }, "downloads": -1, "filename": "yawinpty-0.4.3-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "1e4bc4aa400674c561f63760d04b8d2b", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 328496, "upload_time": "2017-08-22T04:10:54", "url": "https://files.pythonhosted.org/packages/5f/31/3abc17a150762f6b44cf8c11dae208087506b028082dc9f261903350e833/yawinpty-0.4.3-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "becf16170ca4f921a4df673d32e7ec4d", "sha256": "7c1c60cb0f880da27df01b7828f030213d93e122241dce515f67148e3dad93f0" }, "downloads": -1, "filename": "yawinpty-0.4.3.tar.gz", "has_sig": false, "md5_digest": "becf16170ca4f921a4df673d32e7ec4d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 214713, "upload_time": "2017-08-22T04:10:57", "url": "https://files.pythonhosted.org/packages/5c/cb/1b4fa9159fd5e2e7bddb0d13d4948999d2908d5b77596f44825cf11a6175/yawinpty-0.4.3.tar.gz" } ] }