Metadata-Version: 2.5
Name: sbml4humans
Version: 0.6.1
Summary: Interactive, human readable reports of SBML models, in the browser and from python.
Project-URL: Homepage, https://sbml4humans.de
Project-URL: Documentation, https://matthiaskoenig.github.io/sbml4humans/
Project-URL: Repository, https://github.com/matthiaskoenig/sbml4humans
Author-email: Matthias König <konigmatt@googlemail.com>
License-Expression: MIT
Keywords: COMBINE archive,SBML,computational modelling,report,systems biology
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Science/Research
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.14
Classifier: Topic :: Scientific/Engineering :: Bio-Informatics
Requires-Python: >=3.14
Requires-Dist: fastapi>=0.141.1
Requires-Dist: httpx>=0.28.1
Requires-Dist: lxml>=6.0.0
Requires-Dist: numpy>=2.2.2
Requires-Dist: pint>=0.25.3
Requires-Dist: platformdirs>=4.4
Requires-Dist: pydantic>=2.12
Requires-Dist: pymetadata>=0.6.2
Requires-Dist: python-libsbml>=5.21.1
Requires-Dist: python-multipart>=0.0.32
Requires-Dist: uvicorn>=0.52.4
Description-Content-Type: text/markdown

# SBML4Humans

SBML4Humans creates interactive, human readable reports of [SBML](https://sbml.org) models: one table per element type, a search over everything, and an inspector which follows every reference between the objects of a model, for SBML core and the packages comp, fbc, qual and distrib.

The package opens the report of a file of your machine in the browser. The file is read by a local server and never leaves the machine:

```python
from sbml4humans import show

show("model.xml")
```

```bash
sbml4humans model.xml
```

The web application is at [sbml4humans.de](https://sbml4humans.de), the documentation at [matthiaskoenig.github.io/sbml4humans](https://matthiaskoenig.github.io/sbml4humans/), with [Reports from python](https://matthiaskoenig.github.io/sbml4humans/python/) for this package, and the source at [github.com/matthiaskoenig/sbml4humans](https://github.com/matthiaskoenig/sbml4humans).

SBML4Humans is released under the MIT license. If you use it in your work, please cite it as the [documentation](https://matthiaskoenig.github.io/sbml4humans/#how-to-cite) describes.
