I-Simpa icon indicating copy to clipboard operation
I-Simpa copied to clipboard

libsimpa class and methods names

Open nicolas-f opened this issue 9 years ago • 1 comments

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 ?

nicolas-f avatar Jan 25 '16 14:01 nicolas-f

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.

wbinek avatar Feb 04 '16 19:02 wbinek