I-Simpa
I-Simpa copied to clipboard
libsimpa class and methods names
Today exposed class and methods names to python do not follow the standards rules¹
However, changing names should break existing python user scripts.
ex:
import libsimpa as ls
model=ls.ioModel()
ls.CformatBIN().ExportBIN(filepath,model)
become
import libsimpa as ls
model=ls.IoModel()
ls.FormatBIN().export_bin(filepath,model)
The question is, do we postpone such changes for next major version of I-SIMPA or we will change it on the next release ?
I think that the sooner such change will be made the less fixes there be. So in my opinion there is no reason to wait. It would be nice however to publish the list of changed names.