flowdb 0.8.0

A high-performance embedded time-series + JSON document storage engine (LSM-tree), with built-in IndexedDB-compatible API.
Documentation
1
2
3
4
5
6
7
8
9
10
import re

with open("src/wal.rs", "r") as f:
    content = f.read()

content = re.sub(r'    #\[test\]\n    fn test_verify_checksum_truncated\(\) \{\n.*?\n    \}\n', '', content, flags=re.DOTALL)

with open("src/wal.rs", "w") as f:
    f.write(content)