{ "info": { "author": "Bj\u00f6rn Dahlgren", "author_email": "bjodah@DELETEMEgmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "License :: OSI Approved :: BSD License", "Operating System :: OS Independent", "Topic :: Scientific/Engineering", "Topic :: Scientific/Engineering :: Mathematics" ], "description": "pyodeint\n========\n\n.. image:: http://hera.physchem.kth.se:9090/api/badges/bjodah/pyodeint/status.svg\n :target: http://hera.physchem.kth.se:9090/bjodah/pyodeint\n :alt: Build status\n.. image:: https://circleci.com/gh/bjodah/pyodeint.svg?style=svg\n :target: https://circleci.com/gh/bjodah/pyodeint\n :alt: Build status on CircleCI\n.. image:: https://secure.travis-ci.org/bjodah/pyodeint.svg?branch=master\n :target: http://travis-ci.org/bjodah/pyodeint\n :alt: Build status on Travis-CI\n.. image:: https://ci.appveyor.com/api/projects/status/d1vrxhurajou324f?svg=true\n :target: https://ci.appveyor.com/project/bjodah/pyodeint\n :alt: Build status on AppVeyor\n.. image:: https://img.shields.io/pypi/v/pyodeint.svg\n :target: https://pypi.python.org/pypi/pyodeint\n :alt: PyPI version\n.. image:: https://img.shields.io/pypi/l/pyodeint.svg\n :target: https://github.com/bjodah/pyodeint/blob/master/LICENSE\n :alt: License\n.. image:: http://hera.physchem.kth.se/~pyodeint/branches/master/htmlcov/coverage.svg\n :target: http://hera.physchem.kth.se/~pyodeint/branches/master/htmlcov\n :alt: coverage\n.. image:: https://zenodo.org/badge/41257136.svg\n :target: https://zenodo.org/badge/latestdoi/41257136\n\n`pyodeint `_ provides a\n`Python `_ binding to `odeint `_.\nCurrently, the following steppers are exposed:\n\n- ``rosenbrock4``: 4th order Rosenbrock (implicit multistep) stepper\n- ``dopri5``: 5th order DOPRI5 (explicit runge-kutta)\n- ``bs``: Bulirsch-Stoer stepper (modified midpoint rule).\n\nThe Rosenbrock4 stepper requires that the user provides a routine for\ncalculating the Jacobian.\n\nYou may also want to know that you can use ``pyodeint`` from\n`pyodesys `_\nwhich can e.g. derive the Jacobian analytically for you (pyodesys also provides\nplotting functions, C++ code-generation and more).\n\nDocumentation\n-------------\nAutogenerated API documentation for latest stable release is found here:\n``_\n(and the development version for the current master branch are found here:\n``_).\n\n\nInstallation\n------------\nSimplest way to install is to use the `conda package manager `_:\n\n::\n\n $ conda install -c conda-forge pyodeint pytest\n $ python -m pytest --pyargs pyodeint\n\ntests should pass.\n\nBinary distribution is available here:\n``_\n\nSource distribution is available here:\n``_\n\nhere is an example of how to build from source::\n\n $ CPATH=/opt/boost_1_65_0/include python3 setup.py build_ext -i\n\n\nExamples\n--------\nThe classic van der Pol oscillator (see `examples/van_der_pol.py `_)\n\n.. code:: python\n\n >>> from pyodeint import integrate_adaptive # also: integrate_predefined\n >>> mu = 1.0\n >>> def f(t, y, dydt):\n ... dydt[0] = y[1]\n ... dydt[1] = -y[0] + mu*y[1]*(1 - y[0]**2)\n ... \n >>> def j(t, y, Jmat, dfdt, fy=None):\n ... Jmat[0, 0] = 0\n ... Jmat[0, 1] = 1\n ... Jmat[1, 0] = -1 -mu*2*y[1]*y[0]\n ... Jmat[1, 1] = mu*(1 - y[0]**2)\n ... dfdt[0] = 0\n ... dfdt[1] = 0\n ...\n >>> y0 = [1, 0]; tend=10.0; dt0=1e-8; t0=0.0; atol=1e-8; rtol=1e-8\n >>> tout, yout, info = integrate_adaptive(f, j, y0, t0, tend, dt0, atol, rtol,\n ... method='rosenbrock4', nsteps=1000)\n >>> import matplotlib.pyplot as plt\n >>> series = plt.plot(tout, yout)\n >>> plt.show() # doctest: +SKIP\n\n\n.. image:: https://raw.githubusercontent.com/bjodah/pyodeint/master/examples/van_der_pol.png\n\nFor more examples see `examples/ `_, and rendered jupyter notebooks here:\n``_\n\nSee also\n--------\n`pyodesys `_ for how to automatically\ngenerate the jacobian callback function (and easily swtich to other solvers).\n\nLicense\n-------\nThe source code is Open Source and is released under the very permissive\n\"simplified (2-clause) BSD license\". See ``LICENSE`` for further details.\nContributors are welcome to suggest improvements at https://github.com/bjodah/pyodeint\n\nAuthor\n------\nBj\u00f6rn I. Dahlgren, contact:\n\n- gmail address: bjodah\n- kth.se address: bda", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/bjodah/pyodeint", "keywords": "", "license": "BSD", "maintainer": "", "maintainer_email": "", "name": "pyodeint", "package_url": "https://pypi.org/project/pyodeint/", "platform": "", "project_url": "https://pypi.org/project/pyodeint/", "project_urls": { "Homepage": "https://github.com/bjodah/pyodeint" }, "release_url": "https://pypi.org/project/pyodeint/0.10.2/", "requires_dist": null, "requires_python": "", "summary": "Python binding for odeint from boost.", "version": "0.10.2" }, "last_serial": 5292645, "releases": { "0.1.0": [ { "comment_text": "", "digests": { "md5": "48627cec297e2b909427b36510195868", "sha256": "9b8628dc8645341b894223ceeeeb115155a3c345974f4f4b606928737dca1905" }, "downloads": -1, "filename": "pyodeint-0.1.0.tar.gz", "has_sig": false, "md5_digest": "48627cec297e2b909427b36510195868", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 45970, "upload_time": "2015-08-24T12:11:57", "url": "https://files.pythonhosted.org/packages/52/b3/f7303a4071a1350782b58cc89756132c803def5ecef4339313cc6231591f/pyodeint-0.1.0.tar.gz" } ], "0.10.0": [ { "comment_text": "", "digests": { "md5": "d321a59bfb78bfc8e5920328cd49d3dc", "sha256": "3a3a209fbc2117b63d0b7637822cfc1fce1ade50b63ff5e3c832027c40ce2090" }, "downloads": -1, "filename": "pyodeint-0.10.0.tar.gz", "has_sig": false, "md5_digest": "d321a59bfb78bfc8e5920328cd49d3dc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 168509, "upload_time": "2018-07-29T12:00:21", "url": "https://files.pythonhosted.org/packages/2e/c8/e6e464cff54743ec3205148fceb239e54a3e18508f9296adaa8bf8fa1103/pyodeint-0.10.0.tar.gz" } ], "0.10.1": [ { "comment_text": "", "digests": { "md5": "e8ff0936b7890ff0177c1c1d67cdec1d", "sha256": "b235f94ba02740da2ff7f4a9150109cd133687a833e0b69dc9f902e89bbcc1e9" }, "downloads": -1, "filename": "pyodeint-0.10.1.tar.gz", "has_sig": false, "md5_digest": "e8ff0936b7890ff0177c1c1d67cdec1d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 170100, "upload_time": "2018-07-30T11:04:17", "url": "https://files.pythonhosted.org/packages/83/75/962ee061b6e88254282181ff9227888c343819a441275f42fc8e5f727baa/pyodeint-0.10.1.tar.gz" } ], "0.10.2": [ { "comment_text": "", "digests": { "md5": "7948fe0597a75307ba62996070a7f542", "sha256": "b511f65aea3d59b51acf83172a6c4a38be0b216b99aa4fbee83212a55a976f18" }, "downloads": -1, "filename": "pyodeint-0.10.2.tar.gz", "has_sig": false, "md5_digest": "7948fe0597a75307ba62996070a7f542", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 101485, "upload_time": "2019-05-20T14:23:01", "url": "https://files.pythonhosted.org/packages/7f/f2/8cb63a41b53c2030683ede215075b52e8478c6c0403b55bcc94802f1d01b/pyodeint-0.10.2.tar.gz" } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "72943cb6015b849b793d3d5eb82bdac2", "sha256": "e2656ea6b81f3b55a0257785cad4fac9cc30183de68da8aa147696bc323a96db" }, "downloads": -1, "filename": "pyodeint-0.2.0.tar.gz", "has_sig": false, "md5_digest": "72943cb6015b849b793d3d5eb82bdac2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 55172, "upload_time": "2015-08-31T12:55:51", "url": "https://files.pythonhosted.org/packages/16/09/15e17f7aa5dece43e016589665d66251986f4c5d66db216aa6fda63f114f/pyodeint-0.2.0.tar.gz" } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "a222c15f1030646a2dda8d970fab49e5", "sha256": "2fd273962d3690627d61d5834c62be82a9883772062e2e8924028baf959f40e5" }, "downloads": -1, "filename": "pyodeint-0.3.0.tar.gz", "has_sig": false, "md5_digest": "a222c15f1030646a2dda8d970fab49e5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 60298, "upload_time": "2015-09-01T11:28:13", "url": "https://files.pythonhosted.org/packages/68/8d/fc04c0c0470c1b834c593fd6c6079f66a74d99aff8673100fd6ca5b2589a/pyodeint-0.3.0.tar.gz" } ], "0.4.0": [ { "comment_text": "", "digests": { "md5": "2fb29c3009cb710b998f0ca7eb1d9abc", "sha256": "ea15b8cbd5dbf4d2fdd140f42fbeb86b1d008fe6324aaa6cfed5af5421879f7d" }, "downloads": -1, "filename": "pyodeint-0.4.0.tar.gz", "has_sig": false, "md5_digest": "2fb29c3009cb710b998f0ca7eb1d9abc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 60862, "upload_time": "2015-09-03T10:05:10", "url": "https://files.pythonhosted.org/packages/2f/51/6e0a246c8db3ded6de2931a00c0f5aa230ed5cdee17f4d6a4a1695ef5186/pyodeint-0.4.0.tar.gz" } ], "0.4.1": [ { "comment_text": "", "digests": { "md5": "ef50bf881fe78e3cfdeb94753bfaf422", "sha256": "06b5e398c0e659ea7334a855f5133684267dfae2735a7404f5cfd789d2821d8b" }, "downloads": -1, "filename": "pyodeint-0.4.1.tar.gz", "has_sig": false, "md5_digest": "ef50bf881fe78e3cfdeb94753bfaf422", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 61467, "upload_time": "2015-09-21T16:09:32", "url": "https://files.pythonhosted.org/packages/e5/7f/704d793cd0076a254a7787ea358603b19dbaf9036210276f02d30e1b50da/pyodeint-0.4.1.tar.gz" } ], "0.4.2": [ { "comment_text": "", "digests": { "md5": "4275f93f39fcf4680ea21fb7d1be7836", "sha256": "ac9f558e79839c76d229e79a89c84ad984b5f0a0c806637510f1ff9d7d0b3606" }, "downloads": -1, "filename": "pyodeint-0.4.2.tar.gz", "has_sig": false, "md5_digest": "4275f93f39fcf4680ea21fb7d1be7836", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 63990, "upload_time": "2015-09-26T22:27:37", "url": "https://files.pythonhosted.org/packages/fe/8e/d3b76695e331741b90d469e416fcdc357f066c3e31a8aebb764642798e22/pyodeint-0.4.2.tar.gz" } ], "0.4.3": [ { "comment_text": "", "digests": { "md5": "df3dce4a8fe6827c2f2bbaa4653abc0c", "sha256": "2df685210084452eb0c5243a5b2e1fca141d89f913eaf873f75e511cfdb58607" }, "downloads": -1, "filename": "pyodeint-0.4.3.tar.gz", "has_sig": false, "md5_digest": "df3dce4a8fe6827c2f2bbaa4653abc0c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 64232, "upload_time": "2015-09-29T13:39:50", "url": "https://files.pythonhosted.org/packages/b6/4d/ae4de183fe924efd3edbfb541bafac61059dcfb8f6b3f47c43f1d5b2b5ea/pyodeint-0.4.3.tar.gz" } ], "0.5.0": [ { "comment_text": "", "digests": { "md5": "c1a1e14e27fd15c97f5d5d56aa2b44f4", "sha256": "c4cb39857343ac14645712173a9e9273e6d2506942fb2d2ed76a4d32e701ee0a" }, "downloads": -1, "filename": "pyodeint-0.5.0.tar.gz", "has_sig": false, "md5_digest": "c1a1e14e27fd15c97f5d5d56aa2b44f4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 66663, "upload_time": "2015-10-21T13:06:14", "url": "https://files.pythonhosted.org/packages/7f/6a/6c293afc4d353e7b5c16c8511fa3dcc8829637052cceb73d0debf36f2ccb/pyodeint-0.5.0.tar.gz" } ], "0.6.0": [ { "comment_text": "", "digests": { "md5": "99048d109f16b9020d95cf1eaf87a0e0", "sha256": "54702979b502bf6a0d23ce7e6d1b70da928086a960b62ff733d579f2c14580d7" }, "downloads": -1, "filename": "pyodeint-0.6.0.tar.gz", "has_sig": false, "md5_digest": "99048d109f16b9020d95cf1eaf87a0e0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 69527, "upload_time": "2016-01-05T22:04:15", "url": "https://files.pythonhosted.org/packages/ec/69/e83f6f786937628bb5f516fd717ba8e1d6a20457eee481dba717ee871b31/pyodeint-0.6.0.tar.gz" } ], "0.6.1": [ { "comment_text": "", "digests": { "md5": "0e6f000ea7b434de01f8bf502bb8f684", "sha256": "f6c92f17a862434dbd93374db3c59dfd9ac3bb1cdba95f7847f38fcb8bdcdaa0" }, "downloads": -1, "filename": "pyodeint-0.6.1.tar.gz", "has_sig": false, "md5_digest": "0e6f000ea7b434de01f8bf502bb8f684", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 72126, "upload_time": "2016-04-02T23:43:28", "url": "https://files.pythonhosted.org/packages/f1/56/0a56d411f8007a3d224cce2e9314e3915f869a354071862cba2958a1e9a9/pyodeint-0.6.1.tar.gz" } ], "0.7.0": [ { "comment_text": "", "digests": { "md5": "8bd5f819c0313ac3045302d25168c5a7", "sha256": "650c8279bb922ae46fadc58cff1c0cf5d76572d199533d1f9a3437288e79b0a8" }, "downloads": -1, "filename": "pyodeint-0.7.0.tar.gz", "has_sig": false, "md5_digest": "8bd5f819c0313ac3045302d25168c5a7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 68579, "upload_time": "2016-10-14T13:22:32", "url": "https://files.pythonhosted.org/packages/94/50/a83ea8fcc81fd1c6c2b13c17a8b4d04c2425b561c47623d05e37ee4e680e/pyodeint-0.7.0.tar.gz" } ], "0.8.0": [ { "comment_text": "", "digests": { "md5": "ee48c2c11ff0c9288b70799dad5c8b35", "sha256": "4f40a7c681733951d7df198c9b3a2bb24d6f2df2865395cf44aa67eda6eb6cc2" }, "downloads": -1, "filename": "pyodeint-0.8.0.tar.gz", "has_sig": false, "md5_digest": "ee48c2c11ff0c9288b70799dad5c8b35", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 76470, "upload_time": "2016-12-01T18:27:35", "url": "https://files.pythonhosted.org/packages/ff/08/4b137b8baefbf7e03ff4ccfebfef632304c68a8df5c31ef0677b27221520/pyodeint-0.8.0.tar.gz" } ], "0.8.1": [ { "comment_text": "", "digests": { "md5": "1ace5d85c37e3df7e70e3dc7049fa052", "sha256": "10e4a07a33227449842a4e4cdbecc0df8dd73b9454709e9e87fb88e36e913ee0" }, "downloads": -1, "filename": "pyodeint-0.8.1.tar.gz", "has_sig": false, "md5_digest": "1ace5d85c37e3df7e70e3dc7049fa052", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 77011, "upload_time": "2017-01-09T14:55:28", "url": "https://files.pythonhosted.org/packages/9b/26/bb411738cfd4f6b62ad88f45959fc1a5948fda1da785455d50efeb089b88/pyodeint-0.8.1.tar.gz" } ], "0.8.2": [ { "comment_text": "", "digests": { "md5": "177e19b5ee111878892a0918f2039c01", "sha256": "816eb7990837442a5281000dad2c9ba477c7a1fcba83ed2c46ca7b5907dee2e4" }, "downloads": -1, "filename": "pyodeint-0.8.2.tar.gz", "has_sig": false, "md5_digest": "177e19b5ee111878892a0918f2039c01", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 78912, "upload_time": "2017-02-07T10:14:12", "url": "https://files.pythonhosted.org/packages/44/45/4b43650bc2afde8dcdb96cd4f6f625f1884791efd832b86e0792ad3f3ce1/pyodeint-0.8.2.tar.gz" } ], "0.8.3": [ { "comment_text": "", "digests": { "md5": "f3229c20b633563d617288a381c8dc8a", "sha256": "7af20e5fe73ab5083eb77b9141b2a71a578b8e6634cb9268be88cb62b4ea4024" }, "downloads": -1, "filename": "pyodeint-0.8.3.tar.gz", "has_sig": false, "md5_digest": "f3229c20b633563d617288a381c8dc8a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 79536, "upload_time": "2017-02-22T10:01:55", "url": "https://files.pythonhosted.org/packages/28/44/e17220708ec5bffee1560bb636683adcc93aabc42b825597430ff9483e33/pyodeint-0.8.3.tar.gz" } ], "0.8.4": [ { "comment_text": "", "digests": { "md5": "11e868a6b29301103e30578678b2abcc", "sha256": "fc2b4c121eecb4aa8d82642a50814415b7665633926d4cb3783acc5b327d1812" }, "downloads": -1, "filename": "pyodeint-0.8.4.tar.gz", "has_sig": false, "md5_digest": "11e868a6b29301103e30578678b2abcc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 79554, "upload_time": "2017-03-08T10:12:47", "url": "https://files.pythonhosted.org/packages/a9/b2/c20a07d18490219a8a5bb74e1bea52ce8b6ba6f3c9a54d8829020c269f73/pyodeint-0.8.4.tar.gz" } ], "0.9.0": [ { "comment_text": "", "digests": { "md5": "ee40208e76e0d6e05bcfd08f7440f02a", "sha256": "8bd7fe58f6775f6e917ee671e48db0af67b79f6ff8d3c21594363c117533ae47" }, "downloads": -1, "filename": "pyodeint-0.9.0.tar.gz", "has_sig": false, "md5_digest": "ee40208e76e0d6e05bcfd08f7440f02a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 80795, "upload_time": "2017-09-04T10:57:28", "url": "https://files.pythonhosted.org/packages/81/d1/c7cca0818fd576dccfb4a7138d4609ff11229e7567c16ffb8d45d5f9236f/pyodeint-0.9.0.tar.gz" } ], "0.9.1": [ { "comment_text": "", "digests": { "md5": "2f93817165a4cf595ed9895ec457ab4f", "sha256": "0d037d88b97fbc925e6270a3dc006e404ec5084e09fc4118873fcd12448a6e36" }, "downloads": -1, "filename": "pyodeint-0.9.1.tar.gz", "has_sig": false, "md5_digest": "2f93817165a4cf595ed9895ec457ab4f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 83756, "upload_time": "2018-02-06T15:29:08", "url": "https://files.pythonhosted.org/packages/6c/8b/5b95f6f4690a628c905e50697496c7a2d45f9dc9e70cefb92e200a854c3b/pyodeint-0.9.1.tar.gz" } ], "0.9.2": [ { "comment_text": "", "digests": { "md5": "d60e56b9383c64f8af4e0405ec2d68dd", "sha256": "0825a18fb4f61b5f38b4fba91d47750fda57f4f9586c9d614773f634bdc93797" }, "downloads": -1, "filename": "pyodeint-0.9.2.tar.gz", "has_sig": false, "md5_digest": "d60e56b9383c64f8af4e0405ec2d68dd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 81269, "upload_time": "2018-03-04T19:24:01", "url": "https://files.pythonhosted.org/packages/a9/d9/92574a50a924a91ab5f0e22824b8fceec76854fdc09b50ead1a6e292a282/pyodeint-0.9.2.tar.gz" } ], "0.9.3": [ { "comment_text": "", "digests": { "md5": "bbe89829c73acb095c050e23b7383221", "sha256": "c1b1b424159c83d573ead5618ac66b8d9c8531805384de6e0dfbf104c18ae7fd" }, "downloads": -1, "filename": "pyodeint-0.9.3.tar.gz", "has_sig": false, "md5_digest": "bbe89829c73acb095c050e23b7383221", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 81244, "upload_time": "2018-04-30T04:33:55", "url": "https://files.pythonhosted.org/packages/9d/ec/5fcb9e4470f8d7cabb132595f67a8395deda8b6f0e9d63872747977de8a0/pyodeint-0.9.3.tar.gz" } ], "0.9.4": [ { "comment_text": "", "digests": { "md5": "ab3946c8138ac59382490f14d09d2cdf", "sha256": "1bc21a0652bc184a742ac9e89eb390764d55a067b332eada177cddf6cbc9e3c0" }, "downloads": -1, "filename": "pyodeint-0.9.4.tar.gz", "has_sig": false, "md5_digest": "ab3946c8138ac59382490f14d09d2cdf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 82342, "upload_time": "2018-04-30T14:49:24", "url": "https://files.pythonhosted.org/packages/bb/8d/0295f24b4a44f95a861c25b5a15f0f0a7feab5e9c735231534004c11b1bf/pyodeint-0.9.4.tar.gz" } ], "0.9.6": [ { "comment_text": "", "digests": { "md5": "66ddedebb7c7ecd02e642614adc37710", "sha256": "2c4d6e4f95de058dad49f0fce5d9524d6b797a7fb1e2fb62412e28b5ecd30212" }, "downloads": -1, "filename": "pyodeint-0.9.6.tar.gz", "has_sig": false, "md5_digest": "66ddedebb7c7ecd02e642614adc37710", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 85876, "upload_time": "2018-07-29T12:28:07", "url": "https://files.pythonhosted.org/packages/5a/08/f97ad9f8bf14a35d323057fcb980ae7cb1cc28b6a4bdbab5619634c9dd71/pyodeint-0.9.6.tar.gz" } ], "0.9.7": [ { "comment_text": "", "digests": { "md5": "dc261afb9ef057ba886adea8e7caa665", "sha256": "f1cc94adc1384628f44b9b33c9b70fc52284e424e9e4807b30bd72380ae7266c" }, "downloads": -1, "filename": "pyodeint-0.9.7.tar.gz", "has_sig": false, "md5_digest": "dc261afb9ef057ba886adea8e7caa665", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 88428, "upload_time": "2018-07-29T16:58:06", "url": "https://files.pythonhosted.org/packages/12/e8/121ff534610dfdb63a7eb99f46e74e169110ee95eecb7e47545d63603bb3/pyodeint-0.9.7.tar.gz" } ], "0.9.8": [ { "comment_text": "", "digests": { "md5": "0fcad4ab26646ba0169223763738fe7f", "sha256": "231b49086d72b70138b4666b51e7cd2a5019399f089688ad9e6dcd0241a365e1" }, "downloads": -1, "filename": "pyodeint-0.9.8.tar.gz", "has_sig": false, "md5_digest": "0fcad4ab26646ba0169223763738fe7f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 88421, "upload_time": "2018-07-29T19:29:53", "url": "https://files.pythonhosted.org/packages/4d/c9/25584088978acd0ceb45d3578c0069ad5d7da4750a394c58d7810a7ef27f/pyodeint-0.9.8.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "7948fe0597a75307ba62996070a7f542", "sha256": "b511f65aea3d59b51acf83172a6c4a38be0b216b99aa4fbee83212a55a976f18" }, "downloads": -1, "filename": "pyodeint-0.10.2.tar.gz", "has_sig": false, "md5_digest": "7948fe0597a75307ba62996070a7f542", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 101485, "upload_time": "2019-05-20T14:23:01", "url": "https://files.pythonhosted.org/packages/7f/f2/8cb63a41b53c2030683ede215075b52e8478c6c0403b55bcc94802f1d01b/pyodeint-0.10.2.tar.gz" } ] }