{ "info": { "author": "Fabrice Salvaire", "author_email": "fabrice.salvaire@orange.fr", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Intended Audience :: Education", "License :: OSI Approved :: GNU General Public License (GPL)", "Operating System :: OS Independent", "Programming Language :: Python :: 3.5", "Topic :: Scientific/Engineering" ], "description": ".. -*- Mode: rst -*-\n\n.. -*- Mode: rst -*-\n\n..\n |PySpiceUrl|\n |PySpiceHomePage|_\n |PySpiceDoc|_\n |PySpice@github|_\n |PySpice@readthedocs|_\n |PySpice@readthedocs-badge|\n |PySpice@pypi|_\n\n.. |PySpiceUrl| replace:: https://pyspice.fabrice-salvaire.fr\n\n.. |PySpiceHomePage| replace:: PySpice Home Page\n.. _PySpiceHomePage: https://pyspice.fabrice-salvaire.fr\n\n.. .. |PySpice@readthedocs-badge| image:: https://readthedocs.org/projects/pyspice/badge/?version=latest\n.. :target: http://pyspice.readthedocs.org/en/latest\n\n.. |PySpice@github| replace:: https://github.com/FabriceSalvaire/PySpice\n.. .. _PySpice@github: https://github.com/FabriceSalvaire/PySpice\n\n.. |PySpice@pypi| replace:: https://pypi.python.org/pypi/PySpice\n.. .. _PySpice@pypi: https://pypi.python.org/pypi/PySpice\n\n.. |Pypi Version| image:: https://img.shields.io/pypi/v/PySpice.svg\n :target: https://pypi.python.org/pypi/PySpice\n :alt: PySpice last version\n\n.. |Pypi License| image:: https://img.shields.io/pypi/l/PySpice.svg\n :target: https://pypi.python.org/pypi/PySpice\n :alt: PySpice license\n\n.. |Pypi Python Version| image:: https://img.shields.io/pypi/pyversions/PySpice.svg\n :target: https://pypi.python.org/pypi/PySpice\n :alt: PySpice python version\n\n.. |Build Status| image:: https://travis-ci.org/FabriceSalvaire/PySpice.svg?branch=master\n :target: https://travis-ci.org/FabriceSalvaire/PySpice\n :alt: PySpice build status @travis-ci.org\n\n.. |ohloh| image:: https://www.openhub.net/accounts/230426/widgets/account_tiny.gif\n :target: https://www.openhub.net/accounts/fabricesalvaire\n :alt: Fabrice Salvaire's Ohloh profile\n :height: 15px\n :width: 80px\n\n.. coverage test\n.. https://img.shields.io/pypi/status/Django.svg\n.. https://img.shields.io/github/stars/badges/shields.svg?style=social&label=Star\n\n.. End\n.. -*- Mode: rst -*-\n\n.. _CFFI: http://cffi.readthedocs.org/en/latest/\n.. _Circuit_macros: http://ece.uwaterloo.ca/~aplevich/Circuit_macros\n.. _IPython: http://ipython.org\n.. _Kicad: http://www.kicad-pcb.org\n.. _Matplotlib: http://matplotlib.org\n.. _Modelica: http://www.modelica.org\n.. _Ngspice: http://ngspice.sourceforge.net\n.. _Numpy: http://www.numpy.org\n.. _PyPI: https://pypi.python.org/pypi\n.. _Pyterate: https://github.com/FabriceSalvaire/Pyterate\n.. _Python: http://python.org\n.. _Sphinx: http://sphinx-doc.org\n.. _Tikz: http://www.texample.net/tikz\n.. _Xyce: https://xyce.sandia.gov\n\n.. |CFFI| replace:: CFFI\n.. |Circuit_macros| replace:: Circuit_macros\n.. |IPython| replace:: IPython\n.. |Kicad| replace:: Kicad\n.. |Matplotlib| replace:: Matplotlib\n.. |Modelica| replace:: Modelica\n.. |Ngspice| replace:: Ngspice\n.. |Numpy| replace:: Numpy\n.. |PyPI| replace:: PyPI\n.. |Pyterate| replace:: Pyterate\n.. |Python| replace:: Python\n.. |Sphinx| replace:: Sphinx\n.. |Tikz| replace:: Tikz\n.. |Xyce| replace:: Xyce\n\n=====================================================================================\n PySpice : Simulate Electronic Circuit using Python and the Ngspice / Xyce Simulators\n=====================================================================================\n\n|Pypi License|\n|Pypi Python Version|\n\n|Pypi Version|\n\n* Quick Link to `Production Branch `_\n* Quick Link to `Devel Branch `_\n\nOverview\n========\n\nWhat is PySpice ?\n-----------------\n\nPySpice is a Python module which interface |Python|_ to the |Ngspice|_ and |Xyce|_ circuit\nsimulators.\n\nWhere is the Documentation ?\n----------------------------\n\nThe documentation is available on the |PySpiceHomePage|_.\n\nWhat are the main features ?\n----------------------------\n\n* support Ngspice and Xyce circuit simulators\n* support **Linux**, **Windows** and Mac **OS X** platforms\n* licensed under **GPLv3** therms\n* implement an **Ngspice shared library binding** using CFFI which support external sources\n* implement (partial) **SPICE netlist parser**\n* implement an **Oriented Object API** to define circuit\n* export simulation output to |Numpy|_ arrays\n* plot using |Matplotlib|_\n* handle **units**\n* work with **Kicad schematic editor**\n* implement a **documentation generator**\n* provides many **examples**\n\nHow to install it ?\n-------------------\n\nLook at the `installation `_ section in the documentation.\n\nCredits\n=======\n\nAuthors: `Fabrice Salvaire `_\n\nNews\n====\n\n.. -*- Mode: rst -*-\n\n\n.. no title here\n\nV1.3.0 (development release)\n----------------------------\n\nV1.2.0 (production release) 2018-06-07\n--------------------------------------\n\n * Initial support of the |Xyce|_ simulator. Xyce is an open source, SPICE-compatible,\n high-performance analog circuit simulator, capable of solving extremely large circuit problems\n developed at Sandia National Laboratories. Xyce will make PySpice suitable for industry and\n research use.\n * Fixed OSX support\n * Splitted G device\n * Implemented partially `A` XSPICE device\n * Implemented missing transmission line devices\n * Implemented high level current sources\n **Notice: Some classes were renamed !**\n * Implemented node kwarg e.g. :code:`circuit.Q(1, base=1, collector=2, emitter=3, model='npn')`\n * Implemented raw spice pass through (see `User FAQ `_)\n * Implemented access to internal parameters (cf. :code:`save @device[parameter]`)\n * Implemented check for missing ground node\n * Implemented a way to disable an element and clone netlist\n * Improved SPICE parser\n * Improved unit support:\n\n * Implemented unit prefix cast `U_\u03bcV(U_mV(1))` to easily convert values\n * Added `U_mV`, ... shortcuts\n * Added Numpy array support to unit, see `UnitValues` **Notice: this new feature could be buggy !!!**\n * Rebased `WaveForm` to `UnitValues`\n\n * Fixed node order so as to not confuse users **Now PySpice matches SPICE order for two ports elements !**\n * Fixed device shortcuts in `Netlist` class\n * Fixed model kwarg for BJT **Notice: it must be passed exclusively as kwarg !**\n * Fixed subcircuit nesting\n * Outsourced documentation generator to |Pyterate|_\n * Updated `setup.py` for wheel\n\n.. :ref:`user-faq-page`\n\nV1.1.0 2017-09-06\n-----------------\n\n * Enhanced shared mode\n * Shared mode is now set as default on Linux\n\nV1.0.0 2017-09-06\n-----------------\n\n * Bump version to v1.0.0 since it just works!\n * Support Windows platform using Ngspice shared mode\n * Fixed shared mode\n * Fixed and completed Spice parser : tested on example's libraries\n\nV0.4.2\n------\n\n * Fixed Spice parser for lower case device prefix.\n\nV0.4.0 2017-07-31\n-----------------\n\n * Git repository cleanup: filtered generated doc and useless files so as to shrink the repository size.\n * Improved documentation generator: Implemented :code:`format` for RST content and Tikz figure.\n * Improved unit support: It implements now the International System of Units.\n And we can now use unit helper like :code:`u_mV` or compute the value of :code:`1.2@u_k\u03a9 / 2@u_mA`.\n The relevant documentation is on this `page `_.\n * Added the Simulation instance to the Analysis class.\n * Refactored simulation parameters as classes.\n\nV0.3.2 2017-02-22\n-----------------\n\n * fixed CCCS and CCVS\n\nV0.3.1 2017-02-22\n-----------------\n\n * fixed ngspice shared\n\nV0.3.0 2015-12-08\n-----------------\n\n * Added an example to show how to use the NgSpice Shared Simulation Mode.\n * Completed the Spice netlist parser and added examples, we could now use a schematic editor\n to define the circuit. The program *cir2py* translates a circuit file to Python.\n\nV0 2014-03-21\n-------------\n\nStarted project\n\n.. End\n\n.. End\n\n\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/FabriceSalvaire/PySpice", "keywords": "spice berkeley ngspice xyce electronic circuit simulation simulator", "license": "GPLv3", "maintainer": "", "maintainer_email": "", "name": "PySpice", "package_url": "https://pypi.org/project/PySpice/", "platform": "any", "project_url": "https://pypi.org/project/PySpice/", "project_urls": { "Homepage": "https://github.com/FabriceSalvaire/PySpice" }, "release_url": "https://pypi.org/project/PySpice/1.3.2/", "requires_dist": [ "PyYAML", "cffi", "matplotlib", "numpy", "ply", "scipy" ], "requires_python": "", "summary": "Simulate electronic circuit using Python and the Ngspice / Xyce simulators", "version": "1.3.2" }, "last_serial": 4926367, "releases": { "0.1.0": [], "0.2.0": [ { "comment_text": "", "digests": { "md5": "fe7298421239e630b101fcc210d5adc4", "sha256": "ed34559f3214cb2133b634b26487b8914c38cb28cab7f1160bdd0909c8390f5c" }, "downloads": -1, "filename": "PySpice-0.2.0.tar.gz", "has_sig": false, "md5_digest": "fe7298421239e630b101fcc210d5adc4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2145220, "upload_time": "2015-04-14T14:50:00", "url": "https://files.pythonhosted.org/packages/19/c1/1ea77134e374bf8d9190583a06f2614c0ed6a599970a5be336753209f0fe/PySpice-0.2.0.tar.gz" } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "eb67a51760090d254ec9a7cea0dd6712", "sha256": "259f11288cb0f5d7f3eb4b6f470c6d2ce7a532fea88a21c971ca516577154e92" }, "downloads": -1, "filename": "PySpice-0.2.1.tar.gz", "has_sig": false, "md5_digest": "eb67a51760090d254ec9a7cea0dd6712", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2135042, "upload_time": "2015-05-25T16:42:31", "url": "https://files.pythonhosted.org/packages/6a/9b/3f38a5764e28ae49d1d04d5a87d8748bb63cf79a82315412c90dab27bafb/PySpice-0.2.1.tar.gz" } ], "0.2.2": [], "0.2.3": [ { "comment_text": "", "digests": { "md5": "2ed7a1288f7dd4d45192d6bf2ac1bc47", "sha256": "822fe1b4e5dfde25cb034a40a0285da0c330ab771f8181671aab51e88239888d" }, "downloads": -1, "filename": "PySpice-0.2.3.tar.gz", "has_sig": false, "md5_digest": "2ed7a1288f7dd4d45192d6bf2ac1bc47", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6828634, "upload_time": "2015-11-21T19:03:22", "url": "https://files.pythonhosted.org/packages/bc/a7/1a06193e59bab0ee5fbfec55947d00cdde985ad5da66988fe5ad376c88a7/PySpice-0.2.3.tar.gz" } ], "0.2.4": [ { "comment_text": "", "digests": { "md5": "bdd42a50f320eddeeb3298e47dd511c8", "sha256": "f1a958da1b7daa899be5764b69da25709ca3201ba5758bb84d681a788e040a90" }, "downloads": -1, "filename": "PySpice-0.2.4.tar.gz", "has_sig": false, "md5_digest": "bdd42a50f320eddeeb3298e47dd511c8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6828466, "upload_time": "2015-11-24T19:09:18", "url": "https://files.pythonhosted.org/packages/cd/7a/202fa7b9b81b541e8869ef105feccdc3e3dce17f1cc04144c617f2535826/PySpice-0.2.4.tar.gz" } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "432d7cdeec7e5464d766a7225985c54d", "sha256": "e37c19431fcf7cb1439cca64d3b87dd0f09461ea995573f8eb87eee364418582" }, "downloads": -1, "filename": "PySpice-0.3.0.tar.gz", "has_sig": false, "md5_digest": "432d7cdeec7e5464d766a7225985c54d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7069737, "upload_time": "2015-12-08T11:03:15", "url": "https://files.pythonhosted.org/packages/25/7a/428a78419b92f4b7cac523fab37aa505d3dffe22767493a65ca251ede876/PySpice-0.3.0.tar.gz" } ], "0.3.1": [ { "comment_text": "", "digests": { "md5": "b48cd4a8c2efc025c1484483a505683e", "sha256": "251e632d1c41c6abedabfeb6c470822fa5ac86241919b752d6473d4a85f50786" }, "downloads": -1, "filename": "PySpice-0.3.1.tar.gz", "has_sig": false, "md5_digest": "b48cd4a8c2efc025c1484483a505683e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7868304, "upload_time": "2017-02-22T18:28:49", "url": "https://files.pythonhosted.org/packages/e1/d1/7ae6b27202f893090f066cba2d9f659fff0f504d0136823fd53ebf746672/PySpice-0.3.1.tar.gz" } ], "0.3.2": [ { "comment_text": "", "digests": { "md5": "e2eeb3f3a0f6949245437a1b41bf612f", "sha256": "b7563fa14dc4ccc6531a88515a3e12d97a0121024ab11b64c01e39ec50fa47f1" }, "downloads": -1, "filename": "PySpice-0.3.2.tar.gz", "has_sig": false, "md5_digest": "e2eeb3f3a0f6949245437a1b41bf612f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7868356, "upload_time": "2017-02-22T18:41:18", "url": "https://files.pythonhosted.org/packages/2c/b4/d4bf46d8a9b2709e7a473dbadb24d8e0de981238114ccfb5e13cdde64172/PySpice-0.3.2.tar.gz" } ], "0.3.3": [ { "comment_text": "", "digests": { "md5": "e5ac83cd22994d89337fcd60fe18b5ae", "sha256": "839eff84fd439cf603d4121023bcafcf3e63e566dde857df36993813e822aab0" }, "downloads": -1, "filename": "PySpice-0.3.3.tar.gz", "has_sig": false, "md5_digest": "e5ac83cd22994d89337fcd60fe18b5ae", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 665500, "upload_time": "2017-06-05T01:10:52", "url": "https://files.pythonhosted.org/packages/04/b4/99603163022978510913878b0d4aeaa47095a6b9aa423c7155c3e3fb3a84/PySpice-0.3.3.tar.gz" } ], "0.4.0": [ { "comment_text": "", "digests": { "md5": "231451d367396d2f8db273d53eef994a", "sha256": "a6855fd40cd5e367275b43409c7c8ab06459e9598f4ebf03f6939dc50bbf5bf2" }, "downloads": -1, "filename": "PySpice-0.4.0.tar.gz", "has_sig": false, "md5_digest": "231451d367396d2f8db273d53eef994a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2140842, "upload_time": "2017-08-01T21:15:03", "url": "https://files.pythonhosted.org/packages/00/be/a819b6c953282ede5015ceaed1144ed32d4ceb6490146791fa036779f45f/PySpice-0.4.0.tar.gz" } ], "0.4.1": [ { "comment_text": "", "digests": { "md5": "6df17b65bc20bd7a1df405fcd8c60139", "sha256": "8fbcd8c5369cb389045e2613fef2b4a45ffc10d76a549df5bdb449d30181d169" }, "downloads": -1, "filename": "PySpice-0.4.1.tar.gz", "has_sig": false, "md5_digest": "6df17b65bc20bd7a1df405fcd8c60139", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2143245, "upload_time": "2017-08-03T10:54:33", "url": "https://files.pythonhosted.org/packages/5f/1a/48a4ba8045d292cdf7bb522355bd0ac4cbb2986e52dc342eabda96cc6605/PySpice-0.4.1.tar.gz" } ], "0.4.2": [ { "comment_text": "", "digests": { "md5": "e288477f78c9e0148e11c7b47358aa59", "sha256": "231c2fb7f5687a7f09ee017c2a381cd21827d80400fd7035590f9b54b05c66c2" }, "downloads": -1, "filename": "PySpice-0.4.2.tar.gz", "has_sig": false, "md5_digest": "e288477f78c9e0148e11c7b47358aa59", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2143309, "upload_time": "2017-08-03T11:04:47", "url": "https://files.pythonhosted.org/packages/b5/b5/c97e87b282357ac8b3a9678533b235b58c384e368acadd99adcecea57179/PySpice-0.4.2.tar.gz" } ], "1.0.0": [ { "comment_text": "", "digests": { "md5": "e592991629cce5d76cd126911a982612", "sha256": "9426037139211c6e50e632e00e30111858469e172e4f561570acd776294809d9" }, "downloads": -1, "filename": "PySpice-1.0.0.tar.gz", "has_sig": false, "md5_digest": "e592991629cce5d76cd126911a982612", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3652088, "upload_time": "2017-09-06T00:43:40", "url": "https://files.pythonhosted.org/packages/5e/af/5d5bd1a266c0de4a902a035b840dfb404dfe5ac1d032889bdc2638b000d7/PySpice-1.0.0.tar.gz" } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "fb4c68f3ac063d8be10568d0ee6fe2ba", "sha256": "455c197bda42cdf38c3f02574482130e1d6ed3fa7535611c6345d9438159617e" }, "downloads": -1, "filename": "PySpice-1.1.0.tar.gz", "has_sig": false, "md5_digest": "fb4c68f3ac063d8be10568d0ee6fe2ba", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3656128, "upload_time": "2017-09-06T17:26:12", "url": "https://files.pythonhosted.org/packages/5c/c7/23b71609fbfa1765954709b9945596cdfadac815c504aceab3d0db9d0200/PySpice-1.1.0.tar.gz" } ], "1.1.1": [ { "comment_text": "", "digests": { "md5": "e6d3b36ee798a11ea03f5d32e77a3c28", "sha256": "2d66f4546b2918968cb1365739aafc8574bbd8a54a906f02dfa9374456892481" }, "downloads": -1, "filename": "PySpice-1.1.1.tar.gz", "has_sig": false, "md5_digest": "e6d3b36ee798a11ea03f5d32e77a3c28", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3769096, "upload_time": "2017-09-07T20:35:02", "url": "https://files.pythonhosted.org/packages/88/ad/c064f5220fbfcaac26c7c79ba2e4ea63797b17ac9df5dce4d9dc40e9d96e/PySpice-1.1.1.tar.gz" } ], "1.1.2": [ { "comment_text": "", "digests": { "md5": "400aca12f66f3c0eaf2b80071db6f0d3", "sha256": "0b0af9eb0bd5e179ddccdb34ea20bf7f17bc088db82dcfa4fc6ab8fd4bd265d9" }, "downloads": -1, "filename": "PySpice-1.1.2.tar.gz", "has_sig": false, "md5_digest": "400aca12f66f3c0eaf2b80071db6f0d3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3777404, "upload_time": "2017-09-17T15:35:28", "url": "https://files.pythonhosted.org/packages/37/05/3aa21665c42971911ba646f3b9507cc4dec0f60430067e9ed93088ce8876/PySpice-1.1.2.tar.gz" } ], "1.1.3": [ { "comment_text": "", "digests": { "md5": "02a381b60a51dbe6ede833e3c19ae185", "sha256": "905622f3800bec55e46c2682b3c0c713513959b623337096eb44f0d20dc8be4e" }, "downloads": -1, "filename": "PySpice-1.1.3.tar.gz", "has_sig": false, "md5_digest": "02a381b60a51dbe6ede833e3c19ae185", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3813983, "upload_time": "2017-09-20T11:57:09", "url": "https://files.pythonhosted.org/packages/71/42/19b8dc8158e027656ea1762d33375548aaf323284ee1cedd89e392ef3731/PySpice-1.1.3.tar.gz" } ], "1.1.4": [ { "comment_text": "", "digests": { "md5": "38f2bd0ca869928f132204fb5339cc91", "sha256": "fa95c5acda60693f9d7594f503d958fc12195a2fc1c5d88d6d89a693ce4278b2" }, "downloads": -1, "filename": "PySpice-1.1.4.tar.gz", "has_sig": false, "md5_digest": "38f2bd0ca869928f132204fb5339cc91", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3858733, "upload_time": "2017-11-08T12:45:19", "url": "https://files.pythonhosted.org/packages/7d/42/89c81404c0d3285ed2d2214fb9acde8730096108ebfab89df7c4d64b36d6/PySpice-1.1.4.tar.gz" } ], "1.2.0": [ { "comment_text": "", "digests": { "md5": "ddc2b710fdca3d9c89ff21e44615d65e", "sha256": "7335cf5e5936c87e485a2640eac745cb90452f151a7f6c93e6717161f6d81d98" }, "downloads": -1, "filename": "PySpice-1.2.0-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "ddc2b710fdca3d9c89ff21e44615d65e", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 105115, "upload_time": "2018-06-07T16:57:47", "url": "https://files.pythonhosted.org/packages/68/6e/5b5075bdf3d37bcd6783502c8af4c7759ab4f93c2434b2baf8475d3beb07/PySpice-1.2.0-py2.py3-none-any.whl" } ], "1.3.0": [ { "comment_text": "", "digests": { "md5": "3fb655742a373d7b11cd1d21b32a159d", "sha256": "f9361c1c3d20759184750cd61d88c73ee4464655069ef12d0df03241b0933ee0" }, "downloads": -1, "filename": "PySpice-1.3.0-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "3fb655742a373d7b11cd1d21b32a159d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 125847, "upload_time": "2019-03-10T22:40:48", "url": "https://files.pythonhosted.org/packages/76/4d/fb4dc42c498d18752f613478c2ff9ba088efe221f1bcc7e5678d72895866/PySpice-1.3.0-py2.py3-none-any.whl" } ], "1.3.1": [ { "comment_text": "", "digests": { "md5": "43530ccceb601148b9bc4baebedbf50e", "sha256": "9a101428fbcf2913c516ce8ca9c80210f13805f7de91838e3ab6ff9b26d3f16a" }, "downloads": -1, "filename": "PySpice-1.3.1-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "43530ccceb601148b9bc4baebedbf50e", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 125845, "upload_time": "2019-03-10T23:46:17", "url": "https://files.pythonhosted.org/packages/f3/ea/f28460477ffe369c99093411cd734f831405eeb2dac5998d847e31d38783/PySpice-1.3.1-py2.py3-none-any.whl" } ], "1.3.2": [ { "comment_text": "", "digests": { "md5": "0e9c00a86dfc5f743bc901b9970cc7bb", "sha256": "913bbdb5ac58a9fc17585d04da58883cf36b79e762e2988d498e58237d5d9442" }, "downloads": -1, "filename": "PySpice-1.3.2-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "0e9c00a86dfc5f743bc901b9970cc7bb", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 128185, "upload_time": "2019-03-11T18:14:17", "url": "https://files.pythonhosted.org/packages/ef/19/125b357100c4178cf21f208a18f6fad26f9be2cdfb947b093e19c6026e40/PySpice-1.3.2-py2.py3-none-any.whl" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "0e9c00a86dfc5f743bc901b9970cc7bb", "sha256": "913bbdb5ac58a9fc17585d04da58883cf36b79e762e2988d498e58237d5d9442" }, "downloads": -1, "filename": "PySpice-1.3.2-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "0e9c00a86dfc5f743bc901b9970cc7bb", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 128185, "upload_time": "2019-03-11T18:14:17", "url": "https://files.pythonhosted.org/packages/ef/19/125b357100c4178cf21f208a18f6fad26f9be2cdfb947b093e19c6026e40/PySpice-1.3.2-py2.py3-none-any.whl" } ] }