.. DO NOT EDIT. .. THIS FILE WAS AUTOMATICALLY GENERATED BY SPHINX-GALLERY. .. TO MAKE CHANGES, EDIT THE SOURCE PYTHON FILE: .. "gen/examples/usage_example.py" .. LINE NUMBERS ARE GIVEN BELOW. .. only:: html .. note:: :class: sphx-glr-download-link-note Click :ref:`here ` to download the full example code .. rst-class:: sphx-glr-example-title .. _sphx_glr_gen_examples_usage_example.py: Simple usage of MMBSE ============================ .. GENERATED FROM PYTHON SOURCE LINES 4-32 .. code-block:: default import pprint import mmbse_client as mmbse mmbse = mmbse.MMBSE(api_token="") # Check if MMBSE is authenticated print(mmbse.is_authenticated()) # Get model information model = mmbse.get_model("23") pprint.pprint(model) # Get output parameter output_parameter = mmbse.get_model_output_parameter_value("23", "Rref") print(f"Param: {output_parameter}") # Get input files inputs = mmbse.get_model_input_file_list("23") print(f"Inputs: {inputs}") # Upload input file new = mmbse.upload_model_input_file("23", "test_file.txt", "../tests/test_file.txt") print(f"New: {new}") # Get output parameters paramater_list = mmbse.get_model_output_parameter_list("61") print(f"Param list: {paramater_list}") .. rst-class:: sphx-glr-timing **Total running time of the script:** ( 0 minutes 0.000 seconds) .. _sphx_glr_download_gen_examples_usage_example.py: .. only:: html .. container:: sphx-glr-footer sphx-glr-footer-example .. container:: sphx-glr-download sphx-glr-download-python :download:`Download Python source code: usage_example.py ` .. container:: sphx-glr-download sphx-glr-download-jupyter :download:`Download Jupyter notebook: usage_example.ipynb ` .. only:: html .. rst-class:: sphx-glr-signature `Gallery generated by Sphinx-Gallery `_