cameo uses the model data structures defined by cobrapy, our favorite COnstraints-Based Reconstruction and Analysis tool for Python. cameo is thus 100% compatible with cobrapy. For efficiency reasons though cameo implements its own analysis methods that take advantage of a more advanced solver interface.
from cameo import models
from cameo.visualization.plotting.with_plotly import PlotlyPlotter
model = models.bigg.e_coli_core
plotter = PlotlyPlotter()
Flux variability analysis (FVA) enables the computation of lower and upper bounds of reaction fluxes.
from cameo import flux_variability_analysis
fva_result = flux_variability_analysis(model)
fva_result.data_frame
fva_result.plot(plotter, index=fva_result.data_frame.index[:25])