Python bindings for LibSBML, a library for reading, writing, and manipulating SBML (Systems Biology Markup Language) documents. This package provides the libsbml module, which wraps the C++ library SBML API with Python objects. Version 5.21.1 is current; releases follow the upstream LibSBML releases.
pip install python-libsbmlVerified import paths — ran on the pinned version, not inferred.
Create an SBML Document, write to file, and read it back. Checks for operation success and errors.
Use 'import libsbml'.
Explicitly pass level and version when creating a new document: libsbml.SBMLDocument(3, 2)
Compare to libsbml.LIBSBML_OPERATION_SUCCESS explicitly: if result != libsbml.LIBSBML_OPERATION_SUCCESS.
Install with: pip install python-libsbml. Ensure activating the correct virtual environment.
Do not assign to the name 'libsbml' after importing. Use a different variable for your document: doc = libsbml.SBMLDocument()
No dependency data recorded yet.