You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Loading the prms (the user config file) should not be done if cellpy is used purely as a library.
Only the following "API"s should load as default:
# the cellpy get functioncellpy.get()
# the batch utilityb=batch.init()
# other "large" utilities (when they get implemented), for examplecellpy.live() # monitor (a) running experiment(s)# most likely the easyplot should also load the prmscellpy.utils.easyplot()
The text was updated successfully, but these errors were encountered:
Consider splitting core cellpy features and utils etc
# Using cellpy only as a library:importcellpy# only imports core# Using cellpy as an app:importcellpy.somethingasclp# matplotlib-like solution - loads prms etc# orcellpy.init() # or somthing similar - loads prms etc
Loading the prms (the user config file) should not be done if
cellpy
is used purely as a library.Only the following "API"s should load as default:
The text was updated successfully, but these errors were encountered: