Added
- Decimal type support (203).
- UUID type support (202).
- Datetime type support and tarantool.Datetime type (204).
Tarantool datetime objects are decoded to `tarantool.Datetime`
type. `tarantool.Datetime` may be encoded to Tarantool datetime
objects.
You can create `tarantool.Datetime` objects either from
MessagePack data or by using the same API as in Tarantool:
python
dt1 = tarantool.Datetime(year=2022, month=8, day=31,
hour=18, minute=7, sec=54,
nsec=308543321)
dt2 = tarantool.Datetime(timestamp=1661969274)
dt3 = tarantool.Datetime(timestamp=1661969274, nsec=308543321)
`tarantool.Datetime` exposes `year`, `month`, `day`, `hour`,
`minute`, `sec`, `nsec`, `timestamp` and `value` (integer epoch time
with nanoseconds precision) properties if you need to convert
`tarantool.Datetime` to any other kind of datetime object:
python
pdt = pandas.Timestamp(year=dt.year, month=dt.month, day=dt.day,
hour=dt.hour, minute=dt.minute, second=dt.sec,
microsecond=(dt.nsec // 1000),
nanosecond=(dt.nsec % 1000))
- Offset in datetime type support (204).
Use `tzoffset` parameter to set up offset timezone:
python
dt = tarantool.Datetime(year=2022, month=8, day=31,
hour=18, minute=7, sec=54,
nsec=308543321, tzoffset=180)
You may use `tzoffset` property to get timezone offset of a datetime
object.
- Timezone in datetime type support (204).
Use `tz` parameter to set up timezone name:
python
dt = tarantool.Datetime(year=2022, month=8, day=31,
hour=18, minute=7, sec=54,
nsec=308543321, tz='Europe/Moscow')
If both `tz` and `tzoffset` is specified, `tz` is used.
You may use `tz` property to get timezone name of a datetime object.
- Datetime interval type support and tarantool.Interval type (229).
Tarantool datetime interval objects are decoded to `tarantool.Interval`
type. `tarantool.Interval` may be encoded to Tarantool interval
objects.
You can create `tarantool.Interval` objects either from
MessagePack data or by using the same API as in Tarantool:
python
di = tarantool.Interval(year=-1, month=2, day=3,
hour=4, minute=-5, sec=6,
nsec=308543321,
adjust=tarantool.IntervalAdjust.NONE)
Its attributes (same as in init API) are exposed, so you can
use them if needed.
- Datetime interval arithmetic support (229).
Valid operations:
- `tarantool.Datetime` + `tarantool.Interval` = `tarantool.Datetime`
- `tarantool.Datetime` - `tarantool.Interval` = `tarantool.Datetime`
- `tarantool.Datetime` - `tarantool.Datetime` = `tarantool.Interval`
- `tarantool.Interval` + `tarantool.Interval` = `tarantool.Interval`
- `tarantool.Interval` - `tarantool.Interval` = `tarantool.Interval`
Since `tarantool.Interval` could contain `month` and `year` fields
and such operations could be ambiguous, you can use `adjust` field
to tune the logic. The behavior is the same as in Tarantool, see
[Interval arithmetic RFC](https://github.com/tarantool/tarantool/wiki/Datetime-Internals#interval-arithmetic).
- `tarantool.IntervalAdjust.NONE` -- only truncation toward the end of
month performed (default mode).
python
>>> dt = tarantool.Datetime(year=2022, month=3, day=31)
datetime: Timestamp('2022-03-31 00:00:00'), tz: ""
>>> di = tarantool.Interval(month=1, adjust=tarantool.IntervalAdjust.NONE)
>>> dt + di
datetime: Timestamp('2022-04-30 00:00:00'), tz: ""
- `tarantool.IntervalAdjust.EXCESS` -- overflow mode, without any snap
or truncation to the end of month, straight addition of days in month,
stopping over month boundaries if there is less number of days.
python
>>> dt = tarantool.Datetime(year=2022, month=1, day=31)
datetime: Timestamp('2022-01-31 00:00:00'), tz: ""
>>> di = tarantool.Interval(month=1, adjust=tarantool.IntervalAdjust.EXCESS)
>>> dt + di
datetime: Timestamp('2022-03-02 00:00:00'), tz: ""
- `tarantool.IntervalAdjust.LAST` -- mode when day snaps to the end of month,
if happens.
python
>>> dt = tarantool.Datetime(year=2022, month=2, day=28)
datetime: Timestamp('2022-02-28 00:00:00'), tz: ""
>>> di = tarantool.Interval(month=1, adjust=tarantool.IntervalAdjust.LAST)
>>> dt + di
datetime: Timestamp('2022-03-31 00:00:00'), tz: ""
- Support iproto feature discovery (206).
- Backport ConnectionPool support for Python 3.6.
- Support extra information for iproto errors (232).
- Error extension type support (232).
- Support pandas way to build datetime from timestamp (PR 252).
`timestamp_since_utc_epoch` is a parameter to set timestamp
conversion behavior for timezone-aware datetimes.
If ``False`` (default), behaves similar to Tarantool `datetime.new()`:
python
>>> dt = tarantool.Datetime(timestamp=1640995200, timestamp_since_utc_epoch=False)
>>> dt
datetime: Timestamp('2022-01-01 00:00:00'), tz: ""
>>> dt.timestamp
1640995200.0
>>> dt = tarantool.Datetime(timestamp=1640995200, tz='Europe/Moscow',
... timestamp_since_utc_epoch=False)
>>> dt
datetime: Timestamp('2022-01-01 00:00:00+0300', tz='Europe/Moscow'), tz: "Europe/Moscow"
>>> dt.timestamp
1640984400.0
Thus, if ``False``, datetime is computed from timestamp
since epoch and then timezone is applied without any
conversion. In that case, `dt.timestamp` won't be equal to
initialization `timestamp` for all timezones with non-zero offset.
If ``True``, behaves similar to `pandas.Timestamp`:
python
>>> dt = tarantool.Datetime(timestamp=1640995200, timestamp_since_utc_epoch=True)
>>> dt
datetime: Timestamp('2022-01-01 00:00:00'), tz: ""
>>> dt.timestamp
1640995200.0
>>> dt = tarantool.Datetime(timestamp=1640995200, tz='Europe/Moscow',
... timestamp_since_utc_epoch=True)
>>> dt
datetime: Timestamp('2022-01-01 03:00:00+0300', tz='Europe/Moscow'), tz: "Europe/Moscow"
>>> dt.timestamp
1640995200.0
Thus, if ``True``, datetime is computed in a way that `dt.timestamp` will
always be equal to initialization `timestamp`.
- Support iproto feature push (201).
- Pack pip package with GitHub Actions (198).
- Publish pip package with GitHub Actions (198).
- Pack RPM package with GitHub Actions (164, 198).
- Publish RPM package with GitHub Actions (164, 198).
- Pack deb package with GitHub Actions (198).
- Publish deb package with GitHub Actions (198).
Changed
- Bump msgpack requirement to 1.0.4 (PR 223).
The only reason of this bump is various vulnerability fixes,
msgpack>=0.4.0 and msgpack-python==0.4.0 are still supported.
- Change documentation HTML theme (67).
- Update API documentation strings (67).
- Update documentation index, quick start and guide pages (67).
- Use git version to set package version (238).
- Extract tarantool.Datetime encode and decode to external
functions (PR 252).
- Extract tarantool.Interval encode and decode to external
functions (PR 252).
- Do not enforce msgpack version (198).
Fixed
- Package build (238).
- Allow any MessagePack supported type as a request key (240).
- Putting test files in pip package (238).
- Make connection close idempotent (250).
- readthedocs version (255).
- timezone offset with old pytz and pandas (198).