{ "info": { "author": "Richard Lincoln", "author_email": "r.w.lincoln@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Environment :: Console", "Intended Audience :: Developers", "Intended Audience :: Education", "Intended Audience :: Science/Research", "License :: OSI Approved :: BSD License", "Natural Language :: English", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.6", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Topic :: Scientific/Engineering" ], "description": "**Development Status**\n\nPYPOWER is no longer actively maintained. However, should improvements\nto PYPOWER be required then the `original author `_\nmay be available on contract. Please do not hesitate to get in\n`contact `_ directly.\n\nIntroduction\n============\n\nPYPOWER is a power flow and Optimal Power Flow (OPF) solver. It is a port of\nMATPOWER_ to the Python_ programming language. Current\nfeatures include:\n\n* DC and AC (Newton's method & Fast Decoupled) power flow and\n* DC and AC optimal power flow (OPF)\n\n\nInstallation\n============\n\nPYPOWER depends upon:\n\n* Python_ 2.6-3.6 and\n* SciPy_ 0.9 or later.\n\nIt can be installed using pip_::\n\n $ pip install PYPOWER\n\nAlternatively, `download `_ and\nunpack the tarball and install::\n\n $ tar zxf PYPOWER-4.x.y.tar.gz\n $ python setup.py install\n\n\nUsing PYPOWER\n=============\n\nInstalling PYPOWER creates ``pf`` and ``opf`` commands. To list the command\noptions::\n\n $ pf -h\n\nPYPOWER includes a selection of test cases. For example, to run a power flow\non the IEEE 14 bus test case::\n\n $ pf -c case14\n\nAlternatively, the path to a PYPOWER case data file can be specified::\n\n $ pf /path/to/case14.py\n\nThe ``opf`` command has the same calling syntax. For example, to solve an OPF\nfor the IEEE Reliability Test System and write the solved case to file::\n\n $ opf -c case24_ieee_rts --solvedcase=rtsout.py\n\nFor further information please refer to https://rwl.github.io/PYPOWER/ and the\n`API documentation`_.\n\n\nSupport\n=======\n\nQuestions and comments regarding PYPOWER should be directed to the `mailing\nlist `_:\n\n pypower@googlegroups.com\n\n\nLicense & Copyright\n===================\n\nCopyright (c) 1996-2015, Power System Engineering Research Center (PSERC) \nCopyright (c) 2010-2018 Richard Lincoln \n\nThe code in PYPOWER is distributed under the 3-clause BSD license\nbelow. The PYPOWER case files distributed with PYPOWER are not covered\nby the BSD license. In most cases, the data has either been included\nwith permission or has been converted from data available from a\npublic source.\n\nWhile not required by the terms of the license, we do request that\npublications derived from the use of MATPOWER explicitly acknowledge\nthat fact by citing:\n\n R. D. Zimmerman, C. E. Murillo-Sanchez, and R. J. Thomas, \"MATPOWER:\n Steady-State Operations, Planning and Analysis Tools for Power Systems\n Research and Education,\" Power Systems, IEEE Transactions on, vol. 26,\n no. 1, pp. 12\u201319, Feb. 2011.\n\nLinks\n=====\n\n* MATPOWER_ from PSERC (Cornell)\n* pandapower_ from Fraunhofer IWES and University of Kassel\n* TESP_ from PNNL\n* MatDyn_ by Stijn Cole\n* PSAT_ by Federico Milano\n* OpenDSS_ from EPRI\n* GridLAB-D_ from PNNL\n* PyCIM_\n\n.. _Python: http://www.python.org\n.. _pip: https://pip.pypa.io\n.. _SciPy: http://www.scipy.org\n.. _MATPOWER: http://www.pserc.cornell.edu/matpower/\n.. _Git: http://git-scm.com/\n.. _GitHub: http://github.com/rwl/PYPOWER\n.. _`API documentation`: https://rwl.github.io/PYPOWER/api\n.. _PyCIM: http://www.pycim.org\n.. _MatDyn: http://www.esat.kuleuven.be/electa/teaching/matdyn/\n.. _PSAT: http://www.uclm.es/area/gsee/web/Federico/psat.htm\n.. _OpenDSS: http://sourceforge.net/projects/electricdss/\n.. _GridLAB-D: http://sourceforge.net/projects/gridlab-d/\n.. _pandapower: http://www.uni-kassel.de/go/pandapower\n.. _TESP: https://tesp.readthedocs.io\n\n\nChangelog\n=========\n\nVersion 5.1.2 (2017-06-09)\n--------------------------\n\n- [NEW] Configured continuous integration using Travis.\n\nVersion 5.1.0 (2017-06-09)\n--------------------------\n\n- [NEW] Added Python 3 support.\n\nVersion 5.0.1 (2016-07-04)\n--------------------------\n\n- [FIX] Fixed `issue #21`_ and `issue #25`_ in savecase() (`pull request #26`_).\n- [CHANGE] Based on 'recursion limit' issues affecting savemat() in savecase(), converted non-scalars to arrays.\n- [NEW] Created t_savecase.py and added t_savecase() to test_pypower.py.\n\n.. _`issue #21`: https://github.com/rwl/PYPOWER/issues/21\n.. _`issue #25`: https://github.com/rwl/PYPOWER/issues/25\n.. _`pull request #26`: https://github.com/rwl/PYPOWER/pull/26/\n\nVersion 5.0.0 (2015-05-29)\n--------------------------\n\n- [CHANGE] 3-clause BSD License\n\n\nVersion 4.1.2 (2014-10-27)\n--------------------------\n\n- [FIX] Fixed error in runopf() (`issue #11`_).\n- [FIX] Fixed runpf.py with ENFORCE_Q_LIMS option (`pull request #13`_).\n\n.. _`issue #11`: https://github.com/rwl/PYPOWER/issues/11\n.. _`pull request #13`: https://github.com/rwl/PYPOWER/pull/13/\n\n\nVersion 4.1.1 (2014-09-17)\n--------------------------\n\n- [FIX] loadcase.py: Fixed NumPy 1.9 warning about \"== None\" comparisions.\n\n\nVersion 4.1.0 (2014-05-29)\n--------------------------\n\n- [NEW] Support for Python 3 (3.3 and above).\n- [CHANGE]\u00a0Updated to MATPOWER 4.1.\n- [REMOVED]\u00a0Support for Python 2.5 and below.\n\n\nVersion 4.0.1 (2011-07-14)\n--------------------------\n\n- [CHANGE] printpf.py: changed boolean operators from bitwise to logical to fix\n the output options\n\n- [FIX] savecase.py: adding indentation to produce valid Python modules\n\n\nVersion 4.0.0 (2011-07-07)\n--------------------------\n\nInitial release, port of MATPOWER version 4.0", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/rwl/PYPOWER", "keywords": "", "license": "BSD", "maintainer": "", "maintainer_email": "", "name": "PYPOWER", "package_url": "https://pypi.org/project/PYPOWER/", "platform": "", "project_url": "https://pypi.org/project/PYPOWER/", "project_urls": { "Homepage": "https://github.com/rwl/PYPOWER" }, "release_url": "https://pypi.org/project/PYPOWER/5.1.4/", "requires_dist": null, "requires_python": "", "summary": "Solves power flow and optimal power flow problems", "version": "5.1.4" }, "last_serial": 4011717, "releases": { "0.1.1": [], "3.2.0b1": [ { "comment_text": "", "digests": { "md5": "057a428adfcc33a75a400f9cb808c9cc", "sha256": "f4363fe80113c73b148a037f3d3dedfcfd857e49ba1c22a6180a696c09a9030c" }, "downloads": -1, "filename": "PYPOWER-3.2.0b1-py2.5.egg", "has_sig": false, "md5_digest": "057a428adfcc33a75a400f9cb808c9cc", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 438583, "upload_time": "2011-08-25T16:36:08", "url": "https://files.pythonhosted.org/packages/16/bb/69aad38f1a51f7c5faa4a6afdbaa84af7683c037be43248d113708db8323/PYPOWER-3.2.0b1-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "699c4af5a068f6ddb50ebe2fb406cf65", "sha256": "c73a9ffc552f20b236fb6a9299ad961c210b1a5f26f8e4d8400b2e2054e123c0" }, "downloads": -1, "filename": "PYPOWER-3.2.0b1-py2.6.egg", "has_sig": false, "md5_digest": "699c4af5a068f6ddb50ebe2fb406cf65", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 438436, "upload_time": "2011-08-25T16:35:46", "url": "https://files.pythonhosted.org/packages/3c/5e/59213d17e1190e8a7ced2d3f2817228b57efe78f9ec028f77a8187352e22/PYPOWER-3.2.0b1-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "af24f0abd9f51fcd14aa9cd81735bde0", "sha256": "b882658f0427a6d3e5afa13c6595fdc04d3ca55d453f50b06cd41cc0d62540d2" }, "downloads": -1, "filename": "PYPOWER-3.2.0b1-py2.7.egg", "has_sig": false, "md5_digest": "af24f0abd9f51fcd14aa9cd81735bde0", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 439212, "upload_time": "2011-08-25T16:40:03", "url": "https://files.pythonhosted.org/packages/76/07/06f7d6fc63b0ca457b6c852a5d0d9d2966a93b9db0815266e6d10e72dbb4/PYPOWER-3.2.0b1-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "b9726b695fb089ff0dabb5aa48824e12", "sha256": "4854805f538c151ea2beee74a42b4f770dd4a1cf9562e4bbc255084baa323c44" }, "downloads": -1, "filename": "PYPOWER-3.2.0b1.tar.gz", "has_sig": false, "md5_digest": "b9726b695fb089ff0dabb5aa48824e12", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 153875, "upload_time": "2011-08-25T16:35:42", "url": "https://files.pythonhosted.org/packages/14/56/8d55fcd40ebb5c42de360c3233977983c12bc3e184bad49986ec965490fc/PYPOWER-3.2.0b1.tar.gz" }, { "comment_text": "", "digests": { "md5": "ca436ac33d5302bfb2d9b19ba6f87547", "sha256": "965b742e754e333984373be89fabf6937ff501427ca00c80c638887feae845c1" }, "downloads": -1, "filename": "PYPOWER-3.2.0b1.win32.exe", "has_sig": false, "md5_digest": "ca436ac33d5302bfb2d9b19ba6f87547", "packagetype": "bdist_wininst", "python_version": "any", "requires_python": null, "size": 435047, "upload_time": "2011-08-25T16:40:19", "url": "https://files.pythonhosted.org/packages/b0/9f/dea14aa90cfa5ad6dd951656f960c57e01821ca584b0f90a03e4cbddce9d/PYPOWER-3.2.0b1.win32.exe" } ], "4.0.0": [ { "comment_text": "", "digests": { "md5": "0505bd773b2df8aa807808cd53e968ff", "sha256": "edb30e3f5449d25efb8a3da7999df0aefd89fb00894b996664c71b4839f0f692" }, "downloads": -1, "filename": "PYPOWER-4.0.0-py2.5.egg", "has_sig": false, "md5_digest": "0505bd773b2df8aa807808cd53e968ff", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 643173, "upload_time": "2011-07-07T22:57:19", "url": "https://files.pythonhosted.org/packages/36/57/adfa9641063a234630121e0f6ff470af3abc535c69c46c5fb4547a2cdadf/PYPOWER-4.0.0-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "1a79206356933ff5f0a7095a1d9edea8", "sha256": "438920397ee3c7410f61ca2e69a5a243dcb1b104b34525de5df3d15933c117fc" }, "downloads": -1, "filename": "PYPOWER-4.0.0-py2.6.egg", "has_sig": false, "md5_digest": "1a79206356933ff5f0a7095a1d9edea8", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 642880, "upload_time": "2011-07-07T22:56:52", "url": "https://files.pythonhosted.org/packages/78/4f/e106576a498f022eb41b9d980bfb1ababb2c7709abcd74e3e9454227e9fa/PYPOWER-4.0.0-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "1569c5061315b86e794fc2347dcb1dc2", "sha256": "847e95c19e5b6a7b4afc5bcad6ea392aa6bb5a9d16585eca73b9c3e5dbe719a0" }, "downloads": -1, "filename": "PYPOWER-4.0.0.tar.gz", "has_sig": false, "md5_digest": "1569c5061315b86e794fc2347dcb1dc2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 244599, "upload_time": "2011-07-07T22:56:47", "url": "https://files.pythonhosted.org/packages/61/8c/110ca763f4804c010e5d85e617e0822564cf9ae4c3783e5db0de5a7f5112/PYPOWER-4.0.0.tar.gz" }, { "comment_text": "", "digests": { "md5": "c080d1eb15a7302d1aa74f7028631764", "sha256": "bb52b336d8c599e944cc1c6ec9b1f012039800b67de1f89ac34078274cb4cf3a" }, "downloads": -1, "filename": "PYPOWER-4.0.0.win32.exe", "has_sig": false, "md5_digest": "c080d1eb15a7302d1aa74f7028631764", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 542857, "upload_time": "2011-07-07T23:26:33", "url": "https://files.pythonhosted.org/packages/90/c1/34849afd3c39b22f2202e5140244993677ce1e0aae7ee8baad735648e44a/PYPOWER-4.0.0.win32.exe" }, { "comment_text": "", "digests": { "md5": "28dd1a23d124bf50e12a9c40a4eb336f", "sha256": "165cdf28260c4c591fff10f685f8ae60e05767b166fce394c2f58c47cd517baf" }, "downloads": -1, "filename": "PYPOWER-4.0.0.win32.msi", "has_sig": false, "md5_digest": "28dd1a23d124bf50e12a9c40a4eb336f", "packagetype": "bdist_msi", "python_version": "2.7", "requires_python": null, "size": 573440, "upload_time": "2011-07-07T23:26:56", "url": "https://files.pythonhosted.org/packages/bb/7c/eb2e6183037f624f59beb9903e7fea70567462554bd0a80522a20a4cdae7/PYPOWER-4.0.0.win32.msi" } ], "4.0.1": [ { "comment_text": "", "digests": { "md5": "ad471e21853d2461ac3380f449b4aa67", "sha256": "c1a879829edb81ed8154e6cb5b11ebe7363d0b50e0cf205bc80285a9c52adf06" }, "downloads": -1, "filename": "PYPOWER-4.0.1-py2.5.egg", "has_sig": false, "md5_digest": "ad471e21853d2461ac3380f449b4aa67", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 643680, "upload_time": "2011-07-14T21:53:38", "url": "https://files.pythonhosted.org/packages/8e/ad/6d2c89a8eb5db86a26d248dcac2989b5f4b2265b9b084527f413e4ed1038/PYPOWER-4.0.1-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "c362be33c1d09df81167b5316841a051", "sha256": "2b8a30e2d26ea9149a40b6986540353ef762503c8d636a65bd5660aec7dbb54c" }, "downloads": -1, "filename": "PYPOWER-4.0.1-py2.6.egg", "has_sig": false, "md5_digest": "c362be33c1d09df81167b5316841a051", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 643387, "upload_time": "2011-07-14T21:53:19", "url": "https://files.pythonhosted.org/packages/71/a4/97e10ecbabdee1f5cdd3bdbddb82598c5cde5e1398cc12a7ac41a7086a34/PYPOWER-4.0.1-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "98756a4a3304589ccd5ebb8516e2f9a2", "sha256": "b72fa79e4b9d4c4752e3b20ed90e3eae2efd8ce87200c28d71a5af3c0156a0d3" }, "downloads": -1, "filename": "PYPOWER-4.0.1.tar.gz", "has_sig": false, "md5_digest": "98756a4a3304589ccd5ebb8516e2f9a2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 245500, "upload_time": "2011-07-14T21:53:21", "url": "https://files.pythonhosted.org/packages/72/95/3cef679aea190b2b34c51f3743685053efc1b647c0428608515a69daf39e/PYPOWER-4.0.1.tar.gz" }, { "comment_text": "", "digests": { "md5": "0636d07475a380eff6d130a58d00f28b", "sha256": "6d4c6ff3efd6b812c0f430334b03abd20486f77e8c54cd372a889b7eb616aa23" }, "downloads": -1, "filename": "PYPOWER-4.0.1.win32.exe", "has_sig": false, "md5_digest": "0636d07475a380eff6d130a58d00f28b", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 542555, "upload_time": "2011-07-14T22:14:15", "url": "https://files.pythonhosted.org/packages/5a/2e/98a293753f051ba89bf0d779f8cd749bbe53fb6288535ae6a9528d3e376d/PYPOWER-4.0.1.win32.exe" }, { "comment_text": "", "digests": { "md5": "e36c0a43cb44ac945f57be79993702e6", "sha256": "8299731d5537995ef84e2b0d3de8ad80fc1aad5fab44e90eced867eca0aa27cc" }, "downloads": -1, "filename": "PYPOWER-4.0.1.win32.msi", "has_sig": false, "md5_digest": "e36c0a43cb44ac945f57be79993702e6", "packagetype": "bdist_msi", "python_version": "2.7", "requires_python": null, "size": 360448, "upload_time": "2011-07-14T22:14:33", "url": "https://files.pythonhosted.org/packages/7c/d5/7fc8cbc564e397494e0d05c616feadbe33a98ee76b7826f24be7be533ba1/PYPOWER-4.0.1.win32.msi" } ], "4.1.0": [ { "comment_text": "", "digests": { "md5": "d93420805d13d6bd3f02d4f705c4a5e2", "sha256": "c37433613401814a7901b4fb3aab4a7fc194798faf0459414055b10b2d87bd80" }, "downloads": -1, "filename": "PYPOWER-4.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "d93420805d13d6bd3f02d4f705c4a5e2", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 380046, "upload_time": "2014-05-29T20:23:41", "url": "https://files.pythonhosted.org/packages/e5/be/e489d873fee09bc571185b485fc300c2a12b762f671092bb442e2aca3c3e/PYPOWER-4.1.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "536c8f7157d1b05391e4477dc3349028", "sha256": "7378b9772ed9f6a2e95f43947ee41d9afad1a5898a37aa915dd14253bf02bad0" }, "downloads": -1, "filename": "PYPOWER-4.1.0.tar.gz", "has_sig": false, "md5_digest": "536c8f7157d1b05391e4477dc3349028", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 246811, "upload_time": "2014-05-29T20:23:45", "url": "https://files.pythonhosted.org/packages/33/e4/36265a009896ea13958e9a8884fab841860beed356bc4d3c017946e84c61/PYPOWER-4.1.0.tar.gz" } ], "4.1.1": [ { "comment_text": "", "digests": { "md5": "e57a9ca3d63ffe12132f111ee4603463", "sha256": "e6fc11e3aee0ee9b348c956aa590ce86a54f0eddc76c6a030cbfdef45382ee49" }, "downloads": -1, "filename": "PYPOWER-4.1.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e57a9ca3d63ffe12132f111ee4603463", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 380256, "upload_time": "2014-09-17T09:54:44", "url": "https://files.pythonhosted.org/packages/21/f0/a8c4701fb08747dc1896121ea5a7f2f50963ad7a1557c906822cf408733d/PYPOWER-4.1.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c7c7a4b365e3dc40f6ddccdb7c16f09b", "sha256": "d565f40be217a5d3b920fcbf9877cfbd6f8ba4b6c87069cbcee41bdf73d6d553" }, "downloads": -1, "filename": "PYPOWER-4.1.1.tar.gz", "has_sig": false, "md5_digest": "c7c7a4b365e3dc40f6ddccdb7c16f09b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 275702, "upload_time": "2014-09-17T09:54:48", "url": "https://files.pythonhosted.org/packages/9b/49/f86b1792fcdfb8b6a1d7ca16277c5717a5a2a1773a5a223e1d51bc3dcf7d/PYPOWER-4.1.1.tar.gz" } ], "4.1.2": [ { "comment_text": "", "digests": { "md5": "55ed08363a3c16d10aa890625a3f0213", "sha256": "6f410f8b443433909e9e3e314112141f32905d74771739d2084d1a57255a012f" }, "downloads": -1, "filename": "PYPOWER-4.1.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "55ed08363a3c16d10aa890625a3f0213", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 380472, "upload_time": "2014-10-27T08:36:47", "url": "https://files.pythonhosted.org/packages/a7/2d/284f4490f6df7cdb83aa491a2ed71d3c914c175bde6ffbda7b31bc54d3fb/PYPOWER-4.1.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4db3b28af84519f01403c385979f1294", "sha256": "4057f729fe1ca85831c2f328577067576dc7693cb0e9ce75901bc8054522cbf2" }, "downloads": -1, "filename": "PYPOWER-4.1.2.tar.gz", "has_sig": false, "md5_digest": "4db3b28af84519f01403c385979f1294", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 249404, "upload_time": "2014-10-27T08:36:50", "url": "https://files.pythonhosted.org/packages/d5/df/047d653bb00bc8b59636d8dd85c7806227168bd3cf07360e9b90b6905451/PYPOWER-4.1.2.tar.gz" } ], "5.0.1": [ { "comment_text": "", "digests": { "md5": "cec0629c54a2c1d8c3f6ec6f232eaa49", "sha256": "1544c1efa9de872d7b1dc6f7c178b7cfad1dfd3de127c6b09982aae3e9ddfddf" }, "downloads": -1, "filename": "PYPOWER-5.0.1.tar.gz", "has_sig": false, "md5_digest": "cec0629c54a2c1d8c3f6ec6f232eaa49", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 260558, "upload_time": "2015-05-29T19:53:23", "url": "https://files.pythonhosted.org/packages/10/b1/caa79c9eb9eaec2d975c7597d42d7defa0af3035a48cc8bde603dd0059bb/PYPOWER-5.0.1.tar.gz" } ], "5.1.0": [ { "comment_text": "", "digests": { "md5": "e61dc2e6d4358f359f94939728bf88de", "sha256": "42e086359c736c3ad89c403765ac06147aea657f007ae30c02f9d44dcc611fad" }, "downloads": -1, "filename": "PYPOWER-5.1.0-py2.7.egg", "has_sig": false, "md5_digest": "e61dc2e6d4358f359f94939728bf88de", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 679014, "upload_time": "2017-06-09T10:51:47", "url": "https://files.pythonhosted.org/packages/55/96/76f1edfeb707246249696b1b222c6386d8efe5bf55174a652d881d545a15/PYPOWER-5.1.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "2e33681092112b3a86fe39cb57778bb2", "sha256": "28b4e97da4e7ddca92e08e96f0098cc0ed2512d170ad303304902f464c688176" }, "downloads": -1, "filename": "PYPOWER-5.1.0.tar.gz", "has_sig": false, "md5_digest": "2e33681092112b3a86fe39cb57778bb2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 269366, "upload_time": "2017-06-09T10:51:49", "url": "https://files.pythonhosted.org/packages/b7/31/3bf12272bba3b4295aea088b0e968e9fecdf155b1df94269e32d0d600bd2/PYPOWER-5.1.0.tar.gz" } ], "5.1.2": [ { "comment_text": "", "digests": { "md5": "486e8693bd8eeddef96328cdec187b45", "sha256": "cb024161aadb74c9f953529b9fbb95dcc8fff1816a8669ceec35630c03a3b8a5" }, "downloads": -1, "filename": "PYPOWER-5.1.2-py2.7.egg", "has_sig": false, "md5_digest": "486e8693bd8eeddef96328cdec187b45", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 679139, "upload_time": "2017-06-09T11:13:14", "url": "https://files.pythonhosted.org/packages/9c/f9/cc1956a4dce0418dc1fb4d470dce044037b4aad9dcdd1a66b4950ef1d604/PYPOWER-5.1.2-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "e8e5c0e80863656a37d8404b4b970e7e", "sha256": "279e8fbb8d61077f572c51d8a87aad779cfa95d8eea079d199a0d4193cf6a697" }, "downloads": -1, "filename": "PYPOWER-5.1.2.tar.gz", "has_sig": false, "md5_digest": "e8e5c0e80863656a37d8404b4b970e7e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 269436, "upload_time": "2017-06-09T11:13:16", "url": "https://files.pythonhosted.org/packages/d6/3f/c3127baabd154083349d7e899190f213e69ba5666a051ec884982982f75e/PYPOWER-5.1.2.tar.gz" } ], "5.1.3": [ { "comment_text": "", "digests": { "md5": "7948d32ed5160b8fea164922594dd995", "sha256": "cfab3ca044006e95b9416d56e8e4ad66d330626953e43c7f165b8e8059334439" }, "downloads": -1, "filename": "PYPOWER-5.1.3.tar.gz", "has_sig": false, "md5_digest": "7948d32ed5160b8fea164922594dd995", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 268786, "upload_time": "2017-09-27T08:45:23", "url": "https://files.pythonhosted.org/packages/5d/f0/aab1f154418997b46d95dd0cfcb194195c04e40e923e32cc92447461eff1/PYPOWER-5.1.3.tar.gz" } ], "5.1.4": [ { "comment_text": "", "digests": { "md5": "103fc98bd517b6dc8eee306b3516399a", "sha256": "a3e290111d344190713f61b4d85338b97dad42421d94521bf5b7bb2f080270b5" }, "downloads": -1, "filename": "PYPOWER-5.1.4.tar.gz", "has_sig": false, "md5_digest": "103fc98bd517b6dc8eee306b3516399a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 262679, "upload_time": "2018-06-28T15:07:24", "url": "https://files.pythonhosted.org/packages/ec/e2/2e3dbb314f08ff0222aba90ada335f18bc3e7a022654d949b0d43f027b88/PYPOWER-5.1.4.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "103fc98bd517b6dc8eee306b3516399a", "sha256": "a3e290111d344190713f61b4d85338b97dad42421d94521bf5b7bb2f080270b5" }, "downloads": -1, "filename": "PYPOWER-5.1.4.tar.gz", "has_sig": false, "md5_digest": "103fc98bd517b6dc8eee306b3516399a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 262679, "upload_time": "2018-06-28T15:07:24", "url": "https://files.pythonhosted.org/packages/ec/e2/2e3dbb314f08ff0222aba90ada335f18bc3e7a022654d949b0d43f027b88/PYPOWER-5.1.4.tar.gz" } ] }