Sylvain Leclerc
Sylvain Leclerc
@annetill @EtienneLt @geofjamg Any opinion about the renaming propositions ? This would promote the concept of "configured bus" from an implementation detail in java to the API level, which seems...
> Probably 4 is the cleanest solution (the one we would have chosen if report have been part of the design from start) but it breaks the API compatibility: Maybe...
For the loadflow result, it seems indeed the way to go to switch to a global `LoadFlowResults` object, returning a list like today does not leave enough place for future...
@CBiasuzzi @massimo-ferraro @geofjamg About that issue, after all the discussions above I am changing my mind ... Since the beginning, we have chosen (myself in the first place) to not...
PS: possibly in a further evolution, we could enable to write to the reporter from python, and create sub reporters (nice to structure the report for a complex python process)
**Some thoughts about that issue:** so the implementation issue here is that the data `qmax` is format-specific (not part of standard IIDM): that's why it's stored as a generic `String`...
Thanks : actually, alone, it does not try to parse strings, it only changes the dtype of the column if the objects are already numbers or booleans. But indeed, in...
@geofjamg @EtienneLt @CBiasuzzi @massimo-ferraro @obrix : please do not hesitate to formulate a critical opinion on this proposed layout (implemented on loadflow module only as an illustration): all actual code...
For reference, pandas uses those unions for typing file inputs: ```python # filenames and file-like-objects Buffer = Union[IO[AnyStr], RawIOBase, BufferedIOBase, TextIOBase, TextIOWrapper, mmap] FileOrBuffer = Union[str, Buffer[AnyStr]] FilePathOrBuffer = Union["PathLike[str]",...
See also discussions on #102