Releases: energyquantified/eq-python-client
Releases · energyquantified/eq-python-client
v0.15
v0.14.7
Bugfixes
- Set
price_area=Truefor areaXK
v0.14.6
Bugfixes
- Patch
PeriodSeries.to_timeseries()due to a regression with iterator behaviour in Python versions >=3.13.1, <3.13.4
v0.14.5
Improvements
- Add
__len__()method toTimeseriesandPeriodSeriesclasses. This allows users to use the built-inlen()function to get the number of values in a time series or period-based series.
Bugfixes
- Fix a bug in
PeriodSeries.to_timeseries()that caused a crash for python version 3.13 and above. Thank you to @igramatk for reporting this issue.
Deprecations
- Deprecate method parameter
exlude_tagsand addexclude_tagsas method parameter- Deprecated parameter will be removed in the next major release
- Affected methods:
eq.instances.list()eq.instances.load()eq.period_instances.list()eq.period_instances.load()
v0.14.4
Improvements
- Lower the minimum supported
frontvalue for OHLC data from1to0
v0.14.3
Improvements
- Update the documentation with instance tag filtering in the push feed
v0.14.2
Improvements
- Add
tagsandexclude_tagsto curve event filters, for filtering events by instance tags
v0.14.1
- Unpin
websocket-clientto allow for the latest version (until next major release)
v0.14
Improvements
- Minor documentation improvements
- Added support for Polars data frames conversion
- Introduced new methods:
to_pl_df()andto_polars_dataframe()
- Introduced new methods:
- Renamed Pandas data frame conversion methods for clarity and consistency
to_df()→to_pd_df()(old method deprecated)to_dataframe()→to_pandas_dataframe()(old method deprecated)
Bugfixes
- Instances from
eq.instances.list()previously had theirissuedtime parsed in the UTC timezone. This has been fixed to be parsed in the curve'sinstance_issued_timezoneif a curve object is provided to the method, otherwise (curve name) it will be parsed as a datetime with offset.
v0.13.12
Improvements
- Add parameters
sourceandonly_subscribedtoeq.metadata.curves()for filtering by source and subscribed curves, respectively. - Update curve search documentation with examples on how to filter by source and subscribed curves.