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
Copy file name to clipboardExpand all lines: CHANGELOG.md
+8Lines changed: 8 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,13 @@
1
1
# Changelog
2
2
3
+
## 0.29.0 - 2024-02-13
4
+
5
+
#### Enhancements
6
+
- Added `tz` parameter to `DBNStore.to_df` which will convert all timestamp fields from UTC to a specified timezone when used with `pretty_ts`
7
+
8
+
#### Bug fixes
9
+
-`Live.block_for_close` and `Live.wait_for_close` will now call `Live.stop` when a timeout is reached instead of `Live.terminate` to close the stream more gracefully
Copy file name to clipboardExpand all lines: databento/live/client.py
+11-6Lines changed: 11 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -463,8 +463,7 @@ def subscribe(
463
463
stype_in : SType or str, default 'raw_symbol'
464
464
The input symbology type to resolve from.
465
465
start : str or int, optional
466
-
UNIX nanosecond epoch timestamp to start streaming from. Must be
467
-
within 24 hours.
466
+
UNIX nanosecond epoch timestamp to start streaming from (inclusive), based on `ts_event`. Must be within 24 hours except when requesting the mbo or definition schemas.
468
467
469
468
Raises
470
469
------
@@ -538,6 +537,9 @@ def block_for_close(
538
537
Block until the session closes or a timeout is reached. A session will
539
538
close after `Live.stop` is called or the remote gateway disconnects.
540
539
540
+
If a `timeout` is specified, `Live.stop` will be called when the
0 commit comments