]> kaliko git repositories - sid.git/commit
rtbl: Ease testing
authorkaliko <kaliko@azylum.org>
Thu, 23 Mar 2023 16:30:33 +0000 (17:30 +0100)
committerkaliko <kaliko@azylum.org>
Thu, 23 Mar 2023 16:30:33 +0000 (17:30 +0100)
commit6c1a29c0d63ca630a36eef61a0f38baf9f7a59a8
tree4f77819d8e26074e44dc43262ee45b3fe1d3f80e
parent0d54812d5ea9524b8dbc9c39b85e7618a5fddd0b
rtbl: Ease testing

Make testing easier with rtbl.BL.init mapping to add testing item to the
block list (locally).

Generate a hash:
>>> import hashlib
>>> test_hash = hashlib.sha256('user@example.org'.encode('utf-8')).hexdigest()

Then use it to pre-populate the block list:

>>> from sid.rtbl import RTBL, BL
>>> BL.init = {test_hash: 'For testing purposes'}
sid/rtbl.py