Metadata-Version: 2.4
Name: epimodels
Version: 0.5.2
Summary: Library of mathematical epidemic models for use in simulation studies and inference.
Author-email: Flávio Codeço Coelho <fccoelho@gmail.com>
Project-URL: Homepage, https://github.com/fccoelho/epimodels
Project-URL: Documentation, https://epimodels.readthedocs.io
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Python: >=3.12
Description-Content-Type: text/markdown
License-File: LICENSE.txt
License-File: AUTHORS.rst
Requires-Dist: cython>=3.0.11
Requires-Dist: matplotlib>=3.10.0
Requires-Dist: mypy>=1.13.0
Requires-Dist: notebook>=7.4.2
Requires-Dist: numpy>=2.2.0
Requires-Dist: scipy>=1.14.1
Requires-Dist: sphinx>=8.1.3
Requires-Dist: sympy>=1.13.3
Dynamic: license-file


# Epimodels



This library a simple interface to simulate mathematical epidemic models.
 


## Getting started


Simple SIR simulation

```python
from epimodels.continuous.models import SIR

model = SIR()
model([1000, 1, 0], [0, 50], 1001, {'beta': 2, 'gamma': .1})
model.plot_traces()
```


### Related libraries

For stochastic epidemic models check [this](https://github.com/fccoelho/EpiStochModels).
