ramses-rf 0.52.0__py3-none-any.whl → 0.52.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- ramses_rf/database.py +7 -7
- ramses_rf/device/hvac.py +2 -2
- ramses_rf/entity_base.py +33 -34
- ramses_rf/gateway.py +1 -0
- ramses_rf/version.py +1 -1
- {ramses_rf-0.52.0.dist-info → ramses_rf-0.52.1.dist-info}/METADATA +1 -1
- {ramses_rf-0.52.0.dist-info → ramses_rf-0.52.1.dist-info}/RECORD +12 -12
- ramses_tx/gateway.py +1 -1
- ramses_tx/version.py +1 -1
- {ramses_rf-0.52.0.dist-info → ramses_rf-0.52.1.dist-info}/WHEEL +0 -0
- {ramses_rf-0.52.0.dist-info → ramses_rf-0.52.1.dist-info}/entry_points.txt +0 -0
- {ramses_rf-0.52.0.dist-info → ramses_rf-0.52.1.dist-info}/licenses/LICENSE +0 -0
ramses_rf/database.py
CHANGED
|
@@ -224,16 +224,16 @@ class MessageIndex:
|
|
|
224
224
|
pass # self._lock.release()
|
|
225
225
|
|
|
226
226
|
if (
|
|
227
|
-
dup and msg.src is not msg.
|
|
228
|
-
): # when src==dst, expect to add duplicate, don't
|
|
229
|
-
_LOGGER.
|
|
227
|
+
dup and msg.src is not msg.dst and not msg.dst.id.startswith("18:") # HGI
|
|
228
|
+
): # when src==dst, expect to add duplicate, don't warn
|
|
229
|
+
_LOGGER.debug(
|
|
230
230
|
"Overwrote dtm (%s) for %s: %s (contrived log?)",
|
|
231
231
|
msg.dtm,
|
|
232
232
|
msg._pkt._hdr,
|
|
233
233
|
dup[0]._pkt,
|
|
234
234
|
)
|
|
235
235
|
if old is not None:
|
|
236
|
-
_LOGGER.
|
|
236
|
+
_LOGGER.debug("Old msg replaced: %s", old)
|
|
237
237
|
|
|
238
238
|
return old
|
|
239
239
|
|
|
@@ -305,7 +305,7 @@ class MessageIndex:
|
|
|
305
305
|
payload_keys(msg.payload),
|
|
306
306
|
),
|
|
307
307
|
)
|
|
308
|
-
_LOGGER.
|
|
308
|
+
_LOGGER.debug(f"Added {msg} to gwy.msg_db")
|
|
309
309
|
|
|
310
310
|
return _old_msgs[0] if _old_msgs else None
|
|
311
311
|
|
|
@@ -468,7 +468,7 @@ class MessageIndex:
|
|
|
468
468
|
if ts in self._msgs:
|
|
469
469
|
lst.append(self._msgs[ts])
|
|
470
470
|
else: # happens in tests with artificial msg from heat
|
|
471
|
-
_LOGGER.
|
|
471
|
+
_LOGGER.info("MessageIndex timestamp %s not in device messages", ts)
|
|
472
472
|
return tuple(lst)
|
|
473
473
|
|
|
474
474
|
def get_rp_codes(self, parameters: tuple[str, ...]) -> list[Code]:
|
|
@@ -529,7 +529,7 @@ class MessageIndex:
|
|
|
529
529
|
# if include_expired or not self._msgs[ts].HAS_EXPIRED: # not working
|
|
530
530
|
lst.append(self._msgs[ts])
|
|
531
531
|
else: # happens in tests with dummy msg from heat init
|
|
532
|
-
_LOGGER.
|
|
532
|
+
_LOGGER.info("MessageIndex ts %s not in device messages", ts)
|
|
533
533
|
return tuple(lst)
|
|
534
534
|
|
|
535
535
|
def clr(self) -> None:
|
ramses_rf/device/hvac.py
CHANGED
|
@@ -927,7 +927,7 @@ class HvacVentilator(FilterChange): # FAN: RP/31DA, I/31D[9A], 2411
|
|
|
927
927
|
"""
|
|
928
928
|
res_mode: list = self._msg_qry(sql)
|
|
929
929
|
# SQLite query on MessageIndex
|
|
930
|
-
_LOGGER.
|
|
930
|
+
_LOGGER.debug(f"{res_mode} # FAN_MODE FETCHED from MessageIndex")
|
|
931
931
|
|
|
932
932
|
sql = f"""
|
|
933
933
|
SELECT code from messages WHERE verb in (' I', 'RP')
|
|
@@ -936,7 +936,7 @@ class HvacVentilator(FilterChange): # FAN: RP/31DA, I/31D[9A], 2411
|
|
|
936
936
|
"""
|
|
937
937
|
res_rate: list = self._msg_qry(sql)
|
|
938
938
|
# SQLite query on MessageIndex
|
|
939
|
-
_LOGGER.
|
|
939
|
+
_LOGGER.debug(
|
|
940
940
|
f"{res_rate} # FAN_RATE FETCHED from MessageIndex"
|
|
941
941
|
) # DEBUG always empty?
|
|
942
942
|
|
ramses_rf/entity_base.py
CHANGED
|
@@ -67,7 +67,8 @@ if TYPE_CHECKING:
|
|
|
67
67
|
|
|
68
68
|
|
|
69
69
|
_QOS_TX_LIMIT = 12 # TODO: needs work
|
|
70
|
-
_ID_SLICE =
|
|
70
|
+
_ID_SLICE = 9 # base address only, legacy _msgs 9
|
|
71
|
+
_SQL_SLICE = 12 # msg_db dst field query 12
|
|
71
72
|
_SZ_LAST_PKT: Final = "last_msg"
|
|
72
73
|
_SZ_NEXT_DUE: Final = "next_due"
|
|
73
74
|
_SZ_TIMEOUT: Final = "timeout"
|
|
@@ -193,18 +194,18 @@ class _MessageDB(_Entity):
|
|
|
193
194
|
self._msgs_: dict[
|
|
194
195
|
Code, Message
|
|
195
196
|
] = {} # TODO(eb): deprecated, used in test, remove Q1 2026
|
|
196
|
-
if not self._gwy.msg_db: # TODO(eb): deprecated since 0.52.
|
|
197
|
+
if not self._gwy.msg_db: # TODO(eb): deprecated since 0.52.1, remove Q1 2026
|
|
197
198
|
self._msgz_: dict[
|
|
198
199
|
Code, dict[VerbT, dict[bool | str | None, Message]]
|
|
199
200
|
] = {} # code/verb/ctx,
|
|
200
201
|
|
|
201
|
-
# As of 0.52.
|
|
202
|
+
# As of 0.52.1 we use SQLite MessageIndex, see ramses_rf/database.py
|
|
202
203
|
# _msgz_ (nested) was only used in this module. Note:
|
|
203
204
|
# _msgz (now rebuilt from _msgs) also used in: client, base, device.heat
|
|
204
205
|
|
|
205
206
|
def _handle_msg(self, msg: Message) -> None:
|
|
206
207
|
"""Store a msg in the DBs.
|
|
207
|
-
Uses SQLite MessageIndex since 0.52.
|
|
208
|
+
Uses SQLite MessageIndex since 0.52.1
|
|
208
209
|
"""
|
|
209
210
|
|
|
210
211
|
if not (
|
|
@@ -232,11 +233,11 @@ class _MessageDB(_Entity):
|
|
|
232
233
|
# Result in test log: lookup fails
|
|
233
234
|
# msg.src = 01:073976 (CTL)
|
|
234
235
|
# Added msg from 01:073976 (CTL) with code 0005 to _gwy.msg_db
|
|
235
|
-
# query is for: 01:073976 < no suffix
|
|
236
|
+
# query is for: 01:073976 < no suffix, extended lookup to [:12] chars
|
|
236
237
|
|
|
237
238
|
# ignore any replaced message that might be returned
|
|
238
239
|
else: # TODO(eb): remove Q1 2026
|
|
239
|
-
if msg.code not in self._msgz_: # deprecated since 0.52.
|
|
240
|
+
if msg.code not in self._msgz_: # deprecated since 0.52.1
|
|
240
241
|
# Store msg verb + ctx by code in nested self._msgz_ Dict
|
|
241
242
|
self._msgz_[msg.code] = {msg.verb: {msg._pkt._ctx: msg}}
|
|
242
243
|
elif msg.verb not in self._msgz_[msg.code]:
|
|
@@ -247,7 +248,7 @@ class _MessageDB(_Entity):
|
|
|
247
248
|
self._msgz_[msg.code][msg.verb][msg._pkt._ctx] = msg
|
|
248
249
|
|
|
249
250
|
# Also store msg by code in flat self._msgs_ dict (stores the latest I/RP msgs by code)
|
|
250
|
-
# TODO(eb): deprecated since 0.52.
|
|
251
|
+
# TODO(eb): deprecated since 0.52.1, remove next block _msgs_ Q1 2026
|
|
251
252
|
if msg.verb in (I_, RP): # drop RQ's
|
|
252
253
|
# if msg.code == Code._3150 and msg.src.id.startswith(
|
|
253
254
|
# "02:"
|
|
@@ -399,7 +400,7 @@ class _MessageDB(_Entity):
|
|
|
399
400
|
|
|
400
401
|
assert isinstance(code, Message), (
|
|
401
402
|
f"Invalid format: _msg_value({code})"
|
|
402
|
-
) # catch invalidly formatted code, only handle Message
|
|
403
|
+
) # catch invalidly formatted code, only handle Message from here
|
|
403
404
|
return self._msg_value_msg(code, *args, **kwargs)
|
|
404
405
|
|
|
405
406
|
def _msg_value_code(
|
|
@@ -410,7 +411,7 @@ class _MessageDB(_Entity):
|
|
|
410
411
|
**kwargs: Any,
|
|
411
412
|
) -> dict | list | None:
|
|
412
413
|
"""
|
|
413
|
-
Query the message
|
|
414
|
+
Query the message dict or the SQLite index for the most recent
|
|
414
415
|
key: value pairs(s) for a given code.
|
|
415
416
|
|
|
416
417
|
:param code: filter messages by Code or a tuple of Codes, optional
|
|
@@ -442,9 +443,8 @@ class _MessageDB(_Entity):
|
|
|
442
443
|
|
|
443
444
|
elif isinstance(code, tuple):
|
|
444
445
|
msgs = [m for m in self._msgs.values() if m.code in code]
|
|
445
|
-
msg = (
|
|
446
|
-
|
|
447
|
-
) # return highest = latest? value found in code:value pairs
|
|
446
|
+
msg = max(msgs) if msgs else None
|
|
447
|
+
# return highest = latest? value found in code:value pairs
|
|
448
448
|
else:
|
|
449
449
|
msg = self._msgs.get(code)
|
|
450
450
|
|
|
@@ -458,7 +458,7 @@ class _MessageDB(_Entity):
|
|
|
458
458
|
domain_id: str | None = None,
|
|
459
459
|
) -> dict | list | None:
|
|
460
460
|
"""
|
|
461
|
-
Get from a Message all or a specific key with its value,
|
|
461
|
+
Get from a Message all or a specific key with its value(s),
|
|
462
462
|
optionally filtering for a zone or a domain
|
|
463
463
|
|
|
464
464
|
:param msg: a Message to inspect
|
|
@@ -500,17 +500,17 @@ class _MessageDB(_Entity):
|
|
|
500
500
|
or (idx == SZ_DOMAIN_ID)
|
|
501
501
|
), (
|
|
502
502
|
f"full dict:{msg_dict}, payload:{msg.payload} < Coding error: key='{idx}', val='{val}'"
|
|
503
|
-
) # should not be there (
|
|
503
|
+
) # should not be there (TODO(eb): BUG but occurs when using SQLite MessageIndex)
|
|
504
504
|
|
|
505
|
-
if
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
return
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
505
|
+
if (
|
|
506
|
+
key == "*" or not key
|
|
507
|
+
): # from a SQLite wildcard query, return first=only? k,v
|
|
508
|
+
return {
|
|
509
|
+
k: v
|
|
510
|
+
for k, v in msg_dict.items()
|
|
511
|
+
if k not in ("dhw_idx", SZ_DOMAIN_ID, SZ_ZONE_IDX) and k[:1] != "_"
|
|
512
|
+
}
|
|
513
|
+
return msg_dict.get(key)
|
|
514
514
|
|
|
515
515
|
# SQLite methods, since 0.52.0
|
|
516
516
|
|
|
@@ -518,7 +518,6 @@ class _MessageDB(_Entity):
|
|
|
518
518
|
"""
|
|
519
519
|
Retrieve from the MessageIndex a list of Code keys involving this device.
|
|
520
520
|
|
|
521
|
-
:param kwargs: not used as of 0.52.0
|
|
522
521
|
:return: list of Codes or empty list when query returned empty
|
|
523
522
|
"""
|
|
524
523
|
if self._gwy.msg_db:
|
|
@@ -530,7 +529,7 @@ class _MessageDB(_Entity):
|
|
|
530
529
|
res: list[Code] = []
|
|
531
530
|
|
|
532
531
|
for rec in self._gwy.msg_db.qry_field(
|
|
533
|
-
sql, (self.id[:
|
|
532
|
+
sql, (self.id[:_SQL_SLICE], self.id[:_SQL_SLICE])
|
|
534
533
|
):
|
|
535
534
|
_LOGGER.debug("Fetched from index: %s", rec[0])
|
|
536
535
|
# Example: "Fetched from index: code 1FD4"
|
|
@@ -581,7 +580,7 @@ class _MessageDB(_Entity):
|
|
|
581
580
|
res = None
|
|
582
581
|
|
|
583
582
|
for rec in self._gwy.msg_db.qry_field(
|
|
584
|
-
sql, (vb, self.id[:
|
|
583
|
+
sql, (vb, self.id[:_SQL_SLICE], self.id[:_SQL_SLICE], code_qry, key)
|
|
585
584
|
):
|
|
586
585
|
_LOGGER.debug("Fetched from index: %s", rec)
|
|
587
586
|
assert isinstance(rec[0], dt) # mypy hint
|
|
@@ -605,7 +604,7 @@ class _MessageDB(_Entity):
|
|
|
605
604
|
|
|
606
605
|
:param code: (optional) a single message Code to use, e.g. 31DA
|
|
607
606
|
:param key: (optional) message keyword to fetch the value for, e.g. SZ_HUMIDITY or * (wildcard)
|
|
608
|
-
:param kwargs: not used as of 0.52.
|
|
607
|
+
:param kwargs: not used as of 0.52.1
|
|
609
608
|
:return: a single string or float value or None when qry returned empty
|
|
610
609
|
"""
|
|
611
610
|
val_msg: dict | list | None = None
|
|
@@ -642,7 +641,7 @@ class _MessageDB(_Entity):
|
|
|
642
641
|
# """SELECT code from messages WHERE verb in (' I', 'RP') AND (src = ? OR dst = ?)
|
|
643
642
|
# AND (code = '31DA' OR ...) AND (plk LIKE '%{SZ_FAN_INFO}%' OR ...)""" = 2 params
|
|
644
643
|
for rec in self._gwy.msg_db.qry_field(
|
|
645
|
-
sql, (self.id[:
|
|
644
|
+
sql, (self.id[:_SQL_SLICE], self.id[:_SQL_SLICE])
|
|
646
645
|
):
|
|
647
646
|
_pl = self._msgs[Code(rec[0])].payload
|
|
648
647
|
# add payload dict to res(ults)
|
|
@@ -698,7 +697,7 @@ class _MessageDB(_Entity):
|
|
|
698
697
|
_msg_dict = { # ? use ctx (context) instead of just the address?
|
|
699
698
|
m.code: m
|
|
700
699
|
for m in self._gwy.msg_db.qry(
|
|
701
|
-
sql, (self.id[:
|
|
700
|
+
sql, (self.id[:_SQL_SLICE], self.id[:_SQL_SLICE])
|
|
702
701
|
) # e.g. 01:123456_HW
|
|
703
702
|
}
|
|
704
703
|
# if CTL, remove 3150, 3220 heat_demand, both are only stored on children
|
|
@@ -774,12 +773,12 @@ class _Discovery(_MessageDB):
|
|
|
774
773
|
code: CODES_SCHEMA[code][SZ_NAME]
|
|
775
774
|
for code in sorted(
|
|
776
775
|
self._gwy.msg_db.get_rp_codes(
|
|
777
|
-
(self.id[:
|
|
776
|
+
(self.id[:_SQL_SLICE], self.id[:_SQL_SLICE])
|
|
778
777
|
)
|
|
779
778
|
)
|
|
780
779
|
if self._is_not_deprecated_cmd(code)
|
|
781
780
|
}
|
|
782
|
-
return { # TODO(eb): deprecated since 0.52.
|
|
781
|
+
return { # TODO(eb): deprecated since 0.52.1, remove Q1 2026
|
|
783
782
|
code: (CODES_SCHEMA[code][SZ_NAME] if code in CODES_SCHEMA else None)
|
|
784
783
|
for code in sorted(self._msgz)
|
|
785
784
|
if self._msgz[code].get(RP) and self._is_not_deprecated_cmd(code)
|
|
@@ -806,7 +805,7 @@ class _Discovery(_MessageDB):
|
|
|
806
805
|
AND (src = ? OR dst = ?)
|
|
807
806
|
"""
|
|
808
807
|
for rec in self._gwy.msg_db.qry_field(
|
|
809
|
-
sql, (self.id[:
|
|
808
|
+
sql, (self.id[:_SQL_SLICE], self.id[:_SQL_SLICE])
|
|
810
809
|
):
|
|
811
810
|
_LOGGER.debug("Fetched OT ctx from index: %s", rec[0])
|
|
812
811
|
res.append(rec[0])
|
|
@@ -937,8 +936,8 @@ class _Discovery(_MessageDB):
|
|
|
937
936
|
sql,
|
|
938
937
|
(
|
|
939
938
|
task[_SZ_COMMAND].code,
|
|
940
|
-
self.tcs.id[:_ID_SLICE],
|
|
941
|
-
self.tcs.id[:_ID_SLICE],
|
|
939
|
+
self.tcs.id[:_ID_SLICE], # OK? not _SQL_SLICE?
|
|
940
|
+
self.tcs.id[:_ID_SLICE], # OK? not _SQL_SLICE?
|
|
942
941
|
),
|
|
943
942
|
)[0] # expect 1 Message in returned tuple
|
|
944
943
|
else: # TODO(eb) remove next Q1 2026
|
ramses_rf/gateway.py
CHANGED
|
@@ -175,6 +175,7 @@ class Gateway(Engine):
|
|
|
175
175
|
|
|
176
176
|
# initialize SQLite index, set in _tx/Engine
|
|
177
177
|
if self._sqlite_index: # TODO(eb): default to ON in Q4 2025
|
|
178
|
+
_LOGGER.info("Ramses RF starts SQLite MessageIndex")
|
|
178
179
|
self.create_sqlite_message_index() # if activated in ramses_cc > Engine
|
|
179
180
|
|
|
180
181
|
# temporarily turn on discovery, remember original state
|
ramses_rf/version.py
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: ramses_rf
|
|
3
|
-
Version: 0.52.
|
|
3
|
+
Version: 0.52.1
|
|
4
4
|
Summary: A stateful RAMSES-II protocol decoder & analyser.
|
|
5
5
|
Project-URL: Homepage, https://github.com/ramses-rf/ramses_rf
|
|
6
6
|
Project-URL: Bug Tracker, https://github.com/ramses-rf/ramses_rf/issues
|
|
@@ -7,19 +7,19 @@ ramses_cli/utils/convert.py,sha256=D_YiCyX5na9pgC-_NhBlW9N1dgRKUK-uLtLBfofjzZM,1
|
|
|
7
7
|
ramses_rf/__init__.py,sha256=VG3E9GHbtC6lx6E1DMQJeFitHnydMKJyPxQBethdrzg,1193
|
|
8
8
|
ramses_rf/binding_fsm.py,sha256=uZAOl3i19KCXqqlaLJWkEqMMP7NJBhVPW3xTikQD1fY,25996
|
|
9
9
|
ramses_rf/const.py,sha256=L3z31CZ-xqno6oZp_h-67CB_5tDDqTwSWXsqRtsjMcs,5460
|
|
10
|
-
ramses_rf/database.py,sha256=
|
|
10
|
+
ramses_rf/database.py,sha256=aQntZW-ARiJ8GFVeT5T4LLWMeshs_lw_tnNet_S146U,20785
|
|
11
11
|
ramses_rf/dispatcher.py,sha256=UqilAoL6T85ZFPkcpvcfuidNbusONngQoCVWHV6vOzk,11277
|
|
12
|
-
ramses_rf/entity_base.py,sha256=
|
|
12
|
+
ramses_rf/entity_base.py,sha256=T3NCo41l6KDqip6ptLdYn2b7pmGit37NgAHoBvhT42s,56063
|
|
13
13
|
ramses_rf/exceptions.py,sha256=mt_T7irqHSDKir6KLaf6oDglUIdrw0S40JbOrWJk5jc,3657
|
|
14
|
-
ramses_rf/gateway.py,sha256=
|
|
14
|
+
ramses_rf/gateway.py,sha256=AEgVKoW1I3D8zYIkQfMnC6CN3TV1gxamfIaXRQ2IUSk,21216
|
|
15
15
|
ramses_rf/helpers.py,sha256=TNk_QkpIOB3alOp1sqnA9LOzi4fuDCeapNlW3zTzNas,4250
|
|
16
16
|
ramses_rf/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
17
17
|
ramses_rf/schemas.py,sha256=UhvRhV4nZ3kvrLLM3wwIguQUIjIgd_AKvp2wkTSpNEA,13468
|
|
18
|
-
ramses_rf/version.py,sha256=
|
|
18
|
+
ramses_rf/version.py,sha256=X_vGsHP_Eb6ovijJi7zzwEWH5kud2r0V1sImKWLqKv4,125
|
|
19
19
|
ramses_rf/device/__init__.py,sha256=sUbH5dhbYFXSoM_TPFRutpRutBRpup7_cQ9smPtDTy8,4858
|
|
20
20
|
ramses_rf/device/base.py,sha256=Yx0LZwMEb49naY8FolZ8HEBFb6XCPQBTVN_TWyO2nKg,17777
|
|
21
21
|
ramses_rf/device/heat.py,sha256=UmZuA-5czrfoClVEeUAPWgze5obWNQpYI7ZPQpVJB6s,54704
|
|
22
|
-
ramses_rf/device/hvac.py,sha256=
|
|
22
|
+
ramses_rf/device/hvac.py,sha256=0iQt9yFXgapaaiLWimGYF1Mh2c_TR58JyaYvWU1nSdE,45605
|
|
23
23
|
ramses_rf/system/__init__.py,sha256=uZLKio3gLlBzePa2aDQ1nxkcp1YXOGrn6iHTG8LiNIw,711
|
|
24
24
|
ramses_rf/system/faultlog.py,sha256=GdGmVGT3137KsTlV_nhccgIFEmYu6DFsLTn4S-8JSok,12799
|
|
25
25
|
ramses_rf/system/heat.py,sha256=3jaFEChU-HlWCRMY1y7u09s7AH4hT0pC63hnqwdmZOc,39223
|
|
@@ -32,7 +32,7 @@ ramses_tx/const.py,sha256=pnxq5upXvLUizv9Ye_I1llD9rAa3wddHgsSkc91AIUc,30300
|
|
|
32
32
|
ramses_tx/exceptions.py,sha256=FJSU9YkvpKjs3yeTqUJX1o3TPFSe_B01gRGIh9b3PNc,2632
|
|
33
33
|
ramses_tx/fingerprints.py,sha256=nfftA1E62HQnb-eLt2EqjEi_la0DAoT0wt-PtTMie0s,11974
|
|
34
34
|
ramses_tx/frame.py,sha256=GzNsXr15YLeidJYGtk_xPqsZQh4ehDDlUCtT6rTDhT8,22046
|
|
35
|
-
ramses_tx/gateway.py,sha256=
|
|
35
|
+
ramses_tx/gateway.py,sha256=8o9NyEAyIui3B6HA0R8o64u4U8NZFlNl0TQ6rhwMoCk,11369
|
|
36
36
|
ramses_tx/helpers.py,sha256=J4OCRckp3JshGQTvvqEskFjB1hPS7uA_opVsuIqmZds,32915
|
|
37
37
|
ramses_tx/logger.py,sha256=qYbUoNPnPaFWKVsYvLG6uTVuPTdZ8HsMzBbGx0DpBqc,10177
|
|
38
38
|
ramses_tx/message.py,sha256=-moQ8v3HVlNSl-x3U0DDfDcj8WQ7vLqclMNxsohbmnw,13449
|
|
@@ -47,9 +47,9 @@ ramses_tx/schemas.py,sha256=IYCDH0jp3446Gtl_378aBmWyXN90e-uYudfkZkOKR24,13147
|
|
|
47
47
|
ramses_tx/transport.py,sha256=bGprlfuuwBgQ1bmBRSrcicuk7s-jVqyuKpZCfQ-sSpw,58469
|
|
48
48
|
ramses_tx/typed_dicts.py,sha256=w-0V5t2Q3GiNUOrRAWiW9GtSwbta_7luME6GfIb1zhI,10869
|
|
49
49
|
ramses_tx/typing.py,sha256=eF2SlPWhNhEFQj6WX2AhTXiyRQVXYnFutiepllYl2rI,5042
|
|
50
|
-
ramses_tx/version.py,sha256=
|
|
51
|
-
ramses_rf-0.52.
|
|
52
|
-
ramses_rf-0.52.
|
|
53
|
-
ramses_rf-0.52.
|
|
54
|
-
ramses_rf-0.52.
|
|
55
|
-
ramses_rf-0.52.
|
|
50
|
+
ramses_tx/version.py,sha256=Wf50ZhDvYDcZoyYmD6Yu8apfRhpvbfMyTBj_GYjoYbw,123
|
|
51
|
+
ramses_rf-0.52.1.dist-info/METADATA,sha256=7mrN8yPSMpAdK4-lYvWCmhKyRLrJgr2WQE4px21H7t0,4000
|
|
52
|
+
ramses_rf-0.52.1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
53
|
+
ramses_rf-0.52.1.dist-info/entry_points.txt,sha256=NnyK29baOCNg8DinPYiZ368h7MTH7bgTW26z2A1NeIE,50
|
|
54
|
+
ramses_rf-0.52.1.dist-info/licenses/LICENSE,sha256=-Kc35W7l1UkdiQ4314_yVWv7vDDrg7IrJfMLUiq6Nfs,1074
|
|
55
|
+
ramses_rf-0.52.1.dist-info/RECORD,,
|
ramses_tx/gateway.py
CHANGED
|
@@ -113,7 +113,7 @@ class Engine:
|
|
|
113
113
|
self._include,
|
|
114
114
|
self._exclude,
|
|
115
115
|
)
|
|
116
|
-
self._sqlite_index = kwargs.pop(SZ_SQLITE_INDEX)
|
|
116
|
+
self._sqlite_index = kwargs.pop(SZ_SQLITE_INDEX, False) # default True?
|
|
117
117
|
self._kwargs: dict[str, Any] = kwargs # HACK
|
|
118
118
|
|
|
119
119
|
self._engine_lock = Lock() # FIXME: threading lock, or asyncio lock?
|
ramses_tx/version.py
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|