{ "info": { "author": "Kevin Davies", "author_email": "kdavies4@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Environment :: Console", "Intended Audience :: Science/Research", "License :: OSI Approved :: BSD License", "Operating System :: Microsoft :: Windows", "Operating System :: POSIX :: Linux", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3.2", "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4", "Topic :: Scientific/Engineering", "Topic :: Utilities" ], "description": "#############\n ModelicaRes\n#############\n\n**Set up and analyze Modelica simulations**\n\nModelicaRes is a free, open-source tool that can be used to\n\n- generate simulation scripts,\n- load and browse data,\n- perform custom calculations,\n- filter and sort groups of results,\n- produce various plots and diagrams, and\n- export data to various formats via pandas_.\n\nThe figures are generated via matplotlib_, which offers a rich set of\npublication-quality plotting routines. ModelicaRes has methods to create and\nautomatically label xy plots, Bode and Nyquist plots, and Sankey diagrams.\nModelicaRes can be scripted or used in an interactive Python_ session with math\nand matrix functions from NumPy_.\n\nThe figures are generated via matplotlib_, which offers a rich set of plotting\nroutines. ModelicaRes has methods to create and automatically label\n`xy plots`_, Bode_ and Nyquist_ plots, and `Sankey diagrams`_. ModelicaRes can\nbe scripted or used in an interactive Python_ session with math and matrix\nfunctions from NumPy_.\n\nCurrently, ModelicaRes only loads Dymola/OpenModelica_-formatted results\n(\\*.mat), but the loading functions are modular so that other formats can be\nadded easily.\n\nPlease see the tutorial, which is available as an `IPython notebook\n`_\nor online as a `static page\n`_.\nFor the full documentation and many more examples, see the `main website`_.\n\nFor a list of changes, please see the `change log\n`_.\n\nInstallation\n~~~~~~~~~~~~\n\nFirst, install the dependencies. Most are installed automatically if you have\nthe setuptools_ module. However, SciPy_ >= 0.10.0 must be installed according\nto the instructions at http://www.scipy.org/install.html. The GUIs require\nQt_, which can be installed via PyQt4_, guidata_, or PySide_.\n\nThen install ModelicaRes. The easiest way is to use pip_::\n\n pip install modelicares\n\nOn Linux, it may be necessary to have root privileges::\n\n sudo pip install modelicares\n\nAnother way to install ModelicaRes is to download and extract a copy of the\npackage. The `main website`_, the `GitHub repository`_, and the `PyPI page`_\nhave copies which include the source code as well as examples and supporting\nfiles to build the documentation and run tests. Once you have a copy, run the\nfollowing command from the base folder::\n\n python setup.py install\n\nOr, on Linux::\n\n sudo python setup.py install\n\nThe `matplotlibrc file\n`_\nfile has some recommended revisions to matplotlib_'s defaults. To use it, copy\nit to the working directory or matplotlib_'s configuration directory. See\nhttp://matplotlib.org/users/customizing.html for details.\n\nCredits\n~~~~~~~\n\nThe main author is Kevin Davies. Code has been included from:\n\n- Richard Murray (**control.freqplot**---part of python-control_),\n- Joerg Raedler (method to expand a Modelica_ variable tree---from DyMat_),\n- Jason Grout (`ArrowLine class`_), and\n- Jason Heeris (`efficient base-10 logarithm`_).\n\nSuggestions and bug fixes have been provided by Arnout Aertgeerts, Kevin Bandy,\nThomas Beutlich, Moritz Lauster, Martin Sj\u00f6lund, Mike Tiller, and Michael\nWetter.\n\nLicense terms and development\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\nModelicaRes is published under a `BSD-compatible license\n`_. Please\nshare any modifications you make (preferably as a pull request to the ``master``\nbranch of the `GitHub repository`_) in order to help others. There are useful\ndevelopment scripts in the `hooks folder\n`_. If you find a\nbug, please `report it\n`_. If you have\nsuggestions, please `share them\n`_.\n\nSee also\n~~~~~~~~\n\n- awesim_: helps run simulation experiments and organize results\n- BuildingsPy_: supports unit testing\n- DyMat_: exports Modelica_ simulation data to comma-separated values\n (CSV_), Gnuplot_, MATLAB\u00ae, and Network Common Data Form (netCDF_)\n- PyFMI_: tools to work with models through the Functional Mock-Up Interface\n (FMI_) standard\n- PySimulator_: elaborate GUI; supports FMI_\n\n\n.. _main website: http://kdavies4.github.io/ModelicaRes/\n.. _PyPI page: http://pypi.python.org/pypi/ModelicaRes\n.. _GitHub repository: https://github.com/kdavies4/ModelicaRes\n\n.. _xy plots: http://kdavies4.github.io/ModelicaRes/simres.html#modelicares.simres.SimRes.plot\n.. _Bode: http://kdavies4.github.io/ModelicaRes/linres.html#modelicares.linres.LinRes.bode\n.. _Nyquist: http://kdavies4.github.io/ModelicaRes/linres.html#modelicares.linres.LinRes.nyquist\n.. _Sankey diagrams: http://kdavies4.github.io/ModelicaRes/simres.html#modelicares.simres.SimRes.sankey\n\n.. _Modelica: http://www.modelica.org/\n.. _Python: http://www.python.org/\n.. _pandas: http://pandas.pydata.org/\n.. _matplotlib: http://www.matplotlib.org/\n.. _NumPy: http://numpy.scipy.org/\n.. _SciPy: http://www.scipy.org/index.html\n.. _OpenModelica: https://www.openmodelica.org/\n.. _setuptools: https://pypi.python.org/pypi/setuptools\n.. _Qt: http://qt-project.org/\n.. _PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/\n.. _guidata: https://code.google.com/p/guidata/\n.. _PySide: http://qt-project.org/wiki/pyside\n.. _pip: https://pypi.python.org/pypi/pip\n.. _awesim: https://github.com/saroele/awesim\n.. _BuildingsPy: http://simulationresearch.lbl.gov/modelica/buildingspy/\n.. _DyMat: http://www.j-raedler.de/projects/dymat/\n.. _PyFMI: https://pypi.python.org/pypi/PyFMI\n.. _PySimulator: https://github.com/PySimulator/PySimulator\n.. _Gnuplot: http://www.gnuplot.info\n.. _CSV: http://en.wikipedia.org/wiki/Comma-separated_values\n.. _netCDF: http://www.unidata.ucar.edu/software/netcdf/\n.. _FMI: https://www.fmi-standard.org\n.. _python-control: http://sourceforge.net/apps/mediawiki/python-control\n.. _ArrowLine class: http://old.nabble.com/Arrows-using-Line2D-and-shortening-lines-td19104579.html\n.. _efficient base-10 logarithm: http://www.mail-archive.com/matplotlib-users@lists.sourceforge.net/msg14433.html", "description_content_type": null, "docs_url": null, "download_url": "https://github.com/kdavies4/ModelicaRes/archive/v0.12.2.zip", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "http://kdavies4.github.io/ModelicaRes/", "keywords": "Modelica,plot,results,simulation,experiment,Dymola,matplotlib,pandas", "license": "BSD-compatible (see LICENSE.txt)", "maintainer": null, "maintainer_email": null, "name": "ModelicaRes", "package_url": "https://pypi.org/project/ModelicaRes/", "platform": "any", "project_url": "https://pypi.org/project/ModelicaRes/", "project_urls": { "Download": "https://github.com/kdavies4/ModelicaRes/archive/v0.12.2.zip", "Homepage": "http://kdavies4.github.io/ModelicaRes/" }, "release_url": "https://pypi.org/project/ModelicaRes/0.12.2/", "requires_dist": null, "requires_python": null, "summary": "Utilities to set up and analyze Modelica simulation experiments", "version": "0.12.2" }, "last_serial": 1120904, "releases": { "0.1": [ { "comment_text": "", "digests": { "md5": "6cf470a76ba7d959fb3aae67839c32ac", "sha256": "08458e4708b4f1f1db804548e292a92b881b422c17fc072b1012b225f68a991f" }, "downloads": -1, "filename": "ModelicaRes-0.1.tar.gz", "has_sig": false, "md5_digest": "6cf470a76ba7d959fb3aae67839c32ac", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1664054, "upload_time": "2012-11-08T14:26:27", "url": "https://files.pythonhosted.org/packages/72/75/39dc9d9ff253a43dc437334d8215e7eaa07739c7b83f26febed7a2428bab/ModelicaRes-0.1.tar.gz" } ], "0.10.0": [ { "comment_text": "", "digests": { "md5": "1825410399f20e1d2c79ce41c3945e99", "sha256": "391a0518065276027a6df6123ea4e540166814a799d7cb02f9b27c9d00e06713" }, "downloads": -1, "filename": "ModelicaRes-0.10.0.tar.gz", "has_sig": false, "md5_digest": "1825410399f20e1d2c79ce41c3945e99", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3152971, "upload_time": "2014-05-01T01:23:11", "url": "https://files.pythonhosted.org/packages/f1/ef/2a4f39cd6f9fa50af3d772d37568c8dfc9d36bcafb278c4f960af487cb0a/ModelicaRes-0.10.0.tar.gz" } ], "0.11.0": [ { "comment_text": "", "digests": { "md5": "218898463481f3002ff3385b5141c445", "sha256": "84a4a4a8d39d38b1862ccd00403d4e9d4cb0c60b47af41adb278919f71142b78" }, "downloads": -1, "filename": "ModelicaRes-0.11.0.tar.gz", "has_sig": false, "md5_digest": "218898463481f3002ff3385b5141c445", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 858865, "upload_time": "2014-05-21T22:06:57", "url": "https://files.pythonhosted.org/packages/29/b7/4ad67fb0ff3b82f19bc6bcbea4c851f1a082573c39f6dc20f01a20063e5a/ModelicaRes-0.11.0.tar.gz" } ], "0.11.1": [ { "comment_text": "", "digests": { "md5": "373576b0f18abfbe563211610733c8e8", "sha256": "f8915e21cc8b97d1dc01580ceca3312e1f080616af6ca186fe353b96949f82d6" }, "downloads": -1, "filename": "ModelicaRes-0.11.1.tar.gz", "has_sig": false, "md5_digest": "373576b0f18abfbe563211610733c8e8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 858748, "upload_time": "2014-05-21T22:42:38", "url": "https://files.pythonhosted.org/packages/bd/53/f4da0de37dcb9442e817aeba9af80a60e6dfc41d3ee9ccf6534a875fd17f/ModelicaRes-0.11.1.tar.gz" } ], "0.12.0": [ { "comment_text": "", "digests": { "md5": "1593952209874759b82a5ffc3684acf1", "sha256": "228eef8c47902ad374a8a1dc5dcbaa95802f26138d264e0ead4ac9194b86ef4f" }, "downloads": -1, "filename": "ModelicaRes-0.12.0.tar.gz", "has_sig": false, "md5_digest": "1593952209874759b82a5ffc3684acf1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1534759, "upload_time": "2014-06-05T23:19:37", "url": "https://files.pythonhosted.org/packages/b6/29/26b5e18577e426cc94a2caf59b90a9debdc98078758cb0c8bdc2e01e8093/ModelicaRes-0.12.0.tar.gz" } ], "0.12.1": [ { "comment_text": "", "digests": { "md5": "a87208eafc9906aa81f81afeb830caf0", "sha256": "aabf927151ea9442510563f4f64b739d1aba8a31d97d91488916d26c71f49cbe" }, "downloads": -1, "filename": "ModelicaRes-0.12.1.tar.gz", "has_sig": false, "md5_digest": "a87208eafc9906aa81f81afeb830caf0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1551915, "upload_time": "2014-06-10T20:30:13", "url": "https://files.pythonhosted.org/packages/2f/c0/e1c76907661dedb5aecfbb4fa8ac068809ba5c1ba85129f5f4b1ba8ddcbf/ModelicaRes-0.12.1.tar.gz" } ], "0.12.2": [ { "comment_text": "", "digests": { "md5": "5b084f902ba3238353f7d6e2af2f94a0", "sha256": "ecccf53f6f22669666f04b1617e57d548174e62e35e73ed7eb9fddb3f2cfdbad" }, "downloads": -1, "filename": "ModelicaRes-0.12.2.tar.gz", "has_sig": false, "md5_digest": "5b084f902ba3238353f7d6e2af2f94a0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1552100, "upload_time": "2014-06-10T22:18:45", "url": "https://files.pythonhosted.org/packages/88/43/2ae45701f10e72f910a0984e5e34eb8d32b164f8d05db8b23880ea3efdc9/ModelicaRes-0.12.2.tar.gz" } ], "0.2": [ { "comment_text": "", "digests": { "md5": "d519823a1be8d0afe4f70a87d4254757", "sha256": "53de3c5994fce3045d8df576967276e7604e4c2a256eed357232cc16506cb1bd" }, "downloads": -1, "filename": "ModelicaRes-0.2.tar.gz", "has_sig": false, "md5_digest": "d519823a1be8d0afe4f70a87d4254757", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1668579, "upload_time": "2012-11-20T15:59:21", "url": "https://files.pythonhosted.org/packages/35/87/db529a44aeb20c1a1db608ba19f36d1c8c06ec2f3946be0bd3ed96e400c4/ModelicaRes-0.2.tar.gz" } ], "0.3": [ { "comment_text": "", "digests": { "md5": "0140e781c9d06fdb7d0f91cb2f986c76", "sha256": "8bd726acf87921a9443c257fbe163a7f3b95ed70b2d77a38332433e51dc61fab" }, "downloads": -1, "filename": "ModelicaRes-0.3.tar.gz", "has_sig": false, "md5_digest": "0140e781c9d06fdb7d0f91cb2f986c76", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1660876, "upload_time": "2012-12-04T17:47:59", "url": "https://files.pythonhosted.org/packages/9e/51/3cccf889bee1db1296fdebe6c0cfaacde62e488408a8fb574a62ec7bb272/ModelicaRes-0.3.tar.gz" } ], "0.4": [ { "comment_text": "", "digests": { "md5": "a539c98416a64be2043ab49d8bd8f1cb", "sha256": "65b19713c47188ad83780054fdec16c104f8b95b1e962fbf838e5fdc5f0d3175" }, "downloads": -1, "filename": "ModelicaRes-0.4.tar.gz", "has_sig": false, "md5_digest": "a539c98416a64be2043ab49d8bd8f1cb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1689029, "upload_time": "2012-12-10T20:27:47", "url": "https://files.pythonhosted.org/packages/41/cc/9ba1d114e9dcf7d4b115e315083827398edbd5d1410ad9f727548d5332f2/ModelicaRes-0.4.tar.gz" } ], "0.5": [ { "comment_text": "", "digests": { "md5": "100f795d88b961a74372b5d4c1b1832a", "sha256": "095d015092ffe9dd621de9aaedc7b1057ed037e362c65afb9d79567ed1721a0e" }, "downloads": -1, "filename": "ModelicaRes-0.5.tar.gz", "has_sig": false, "md5_digest": "100f795d88b961a74372b5d4c1b1832a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1772526, "upload_time": "2013-06-05T20:57:03", "url": "https://files.pythonhosted.org/packages/40/2c/16f253f3470b21d0a13e94df3fec0848312a46d87f0ac75c1e2b08e0616e/ModelicaRes-0.5.tar.gz" } ], "0.5.1": [ { "comment_text": "", "digests": { "md5": "3748cff990f5c2143341d2c402942b6d", "sha256": "e3ad7fc4700c799a9dfe8f022c9ebfbde29cb3a08163240012541894e4c83c89" }, "downloads": -1, "filename": "ModelicaRes-0.5.1.tar.gz", "has_sig": false, "md5_digest": "3748cff990f5c2143341d2c402942b6d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1736201, "upload_time": "2013-06-18T14:01:46", "url": "https://files.pythonhosted.org/packages/04/29/c4d608ea3cdd8abd5ab0a52367219db15b20370f98a44b3e2afe4ce96e2c/ModelicaRes-0.5.1.tar.gz" } ], "0.5.2": [ { "comment_text": "", "digests": { "md5": "974a54ebed923ddc8ce8e3325a6ff3ba", "sha256": "92a8416b11a8c9f23633f9c63de44bde83c863ec5506cb0c89d075b9baf5af60" }, "downloads": -1, "filename": "ModelicaRes-0.5.2.tar.gz", "has_sig": false, "md5_digest": "974a54ebed923ddc8ce8e3325a6ff3ba", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1611472, "upload_time": "2013-06-30T12:31:50", "url": "https://files.pythonhosted.org/packages/c4/a3/2b7219417d7fac81965bff74a2abf7f2fdb70fdf7e97b5ac6382d6a0cba9/ModelicaRes-0.5.2.tar.gz" } ], "0.6.0": [ { "comment_text": "", "digests": { "md5": "ac08036c23bba1e760832e2812a3f240", "sha256": "8be441569c213b0f28498a3f81c3ef9c80fa819bfc261c40e5574c9f52f6b0b3" }, "downloads": -1, "filename": "ModelicaRes-0.6.0.tar.gz", "has_sig": false, "md5_digest": "ac08036c23bba1e760832e2812a3f240", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1573223, "upload_time": "2013-07-02T18:01:43", "url": "https://files.pythonhosted.org/packages/e0/b1/883e164ab9e69931f9364078b468c0d6925c33d9a7e10bd25f0ccf01b45a/ModelicaRes-0.6.0.tar.gz" } ], "0.6.1": [ { "comment_text": "", "digests": { "md5": "0f6d3c23f86468652b28c82df5261a27", "sha256": "03741570a456627cdc88140a5078e42cdf133f756cb44d6ee3e8d41e224bf5ac" }, "downloads": -1, "filename": "ModelicaRes-0.6.1.tar.gz", "has_sig": false, "md5_digest": "0f6d3c23f86468652b28c82df5261a27", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 836909, "upload_time": "2013-07-03T02:24:11", "url": "https://files.pythonhosted.org/packages/b1/42/150284302687a4a6668f4639bfd1d2bee20f4a526f86d7b248bade6bb48b/ModelicaRes-0.6.1.tar.gz" } ], "0.6.2": [ { "comment_text": "", "digests": { "md5": "3b2a51daab5ee8aa1ef1e9dd53e83a7e", "sha256": "d132e7843bea85c8243cb3867311b06980437704a23f3af78ea8dc3066b1050d" }, "downloads": -1, "filename": "ModelicaRes-0.6.2.tar.gz", "has_sig": false, "md5_digest": "3b2a51daab5ee8aa1ef1e9dd53e83a7e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1172894, "upload_time": "2013-07-04T23:53:17", "url": "https://files.pythonhosted.org/packages/0e/68/f3e969ff857314af66e5ee8010ca96eb6bb8f858aa22ef8dc3252185aa9f/ModelicaRes-0.6.2.tar.gz" } ], "0.7.0": [ { "comment_text": "", "digests": { "md5": "ac9bb52a129daefd9154e48593eadcce", "sha256": "d9a8e91abad75bad9b03cc8e84ba744125dc6ed36742a9825b47f46cb39a8e95" }, "downloads": -1, "filename": "ModelicaRes-0.7.0.tar.gz", "has_sig": false, "md5_digest": "ac9bb52a129daefd9154e48593eadcce", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1171699, "upload_time": "2013-07-07T10:25:39", "url": "https://files.pythonhosted.org/packages/6b/d6/e3971ef060a890745e7a7dff6f4fdb322b0f859f342075156e8b83a7a885/ModelicaRes-0.7.0.tar.gz" } ], "0.7.1": [ { "comment_text": "", "digests": { "md5": "4d4bd8bce8d57991565106743af9adf4", "sha256": "28051fb15405e1b3911e1d94f5ac1a0d44d19595c4c9dcd83430425336951920" }, "downloads": -1, "filename": "ModelicaRes-0.7.1.tar.gz", "has_sig": false, "md5_digest": "4d4bd8bce8d57991565106743af9adf4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2804253, "upload_time": "2013-07-07T17:45:53", "url": "https://files.pythonhosted.org/packages/05/3c/17df851cc7250e1ceebd963ac2cd80f641a9ef1d98c74ec3b7ba12ff9524/ModelicaRes-0.7.1.tar.gz" } ], "0.7.2": [ { "comment_text": "", "digests": { "md5": "f4cf043c0d11cf7bb41889012315b48f", "sha256": "28b139fe350224db750a72e767d36689a5fc2e920381ced3754044c84223041f" }, "downloads": -1, "filename": "ModelicaRes-0.7.2.tar.gz", "has_sig": false, "md5_digest": "f4cf043c0d11cf7bb41889012315b48f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2519390, "upload_time": "2013-07-10T02:01:55", "url": "https://files.pythonhosted.org/packages/9c/8a/29e616ec9a08456ddd212ff87dd52be35ad0e76e899e7593390b36848464/ModelicaRes-0.7.2.tar.gz" } ], "0.8.0": [ { "comment_text": "", "digests": { "md5": "00bd0600b13438bc897b3ed0727ccedb", "sha256": "7087ce21d2346e85ce66318a1fdb66fbda51cad9290feb90bb23e098b4cfcf90" }, "downloads": -1, "filename": "ModelicaRes-0.8.0.tar.gz", "has_sig": false, "md5_digest": "00bd0600b13438bc897b3ed0727ccedb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2684943, "upload_time": "2013-08-06T19:20:24", "url": "https://files.pythonhosted.org/packages/f3/6a/afdcf8fed987399e6f85eb46063730c316bbbeaf56f9f7584f5f2b78dbda/ModelicaRes-0.8.0.tar.gz" } ], "0.8.1": [ { "comment_text": "", "digests": { "md5": "3a4465b706a8ea8ea76892c9276ded70", "sha256": "79e71193f4c274340a5a45a41cba43ee3e125e306ec0f08c96af6e476cf80b8d" }, "downloads": -1, "filename": "ModelicaRes-0.8.1.tar.gz", "has_sig": false, "md5_digest": "3a4465b706a8ea8ea76892c9276ded70", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2686995, "upload_time": "2013-08-06T19:45:21", "url": "https://files.pythonhosted.org/packages/5a/d2/8c189b7b109cb6b3da2f20ab0f56fe578bf66bd812a27b0ce74a28af047e/ModelicaRes-0.8.1.tar.gz" } ], "0.8.2": [ { "comment_text": "", "digests": { "md5": "2bab7e4d0ce366d6f7e351a58c6c5009", "sha256": "bd5de9232764c801ef7ab3712ce33a7f7fdc8dca1575e54cd4f7d4dba92bb660" }, "downloads": -1, "filename": "ModelicaRes-0.8.2.tar.gz", "has_sig": false, "md5_digest": "2bab7e4d0ce366d6f7e351a58c6c5009", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2708090, "upload_time": "2013-10-16T14:58:24", "url": "https://files.pythonhosted.org/packages/99/af/d4c116b2779da8f33b7ae8f2c9b8a3fe555bcceed33928375fffddaa195d/ModelicaRes-0.8.2.tar.gz" } ], "0.9.0": [ { "comment_text": "", "digests": { "md5": "6f71d3391159141183734ac65a4c4962", "sha256": "89577fafe75da2254523c72ef53a27c9e603881882269c5e37f2df64361a99e8" }, "downloads": -1, "filename": "ModelicaRes-0.9.0.tar.gz", "has_sig": false, "md5_digest": "6f71d3391159141183734ac65a4c4962", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2702807, "upload_time": "2014-03-18T02:59:17", "url": "https://files.pythonhosted.org/packages/11/ac/3b4c3393637697e451827f03d8b3b8a21189cf8e985711b12192defc5c60/ModelicaRes-0.9.0.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "5b084f902ba3238353f7d6e2af2f94a0", "sha256": "ecccf53f6f22669666f04b1617e57d548174e62e35e73ed7eb9fddb3f2cfdbad" }, "downloads": -1, "filename": "ModelicaRes-0.12.2.tar.gz", "has_sig": false, "md5_digest": "5b084f902ba3238353f7d6e2af2f94a0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1552100, "upload_time": "2014-06-10T22:18:45", "url": "https://files.pythonhosted.org/packages/88/43/2ae45701f10e72f910a0984e5e34eb8d32b164f8d05db8b23880ea3efdc9/ModelicaRes-0.12.2.tar.gz" } ] }