add datetable cnfcnpj

This commit is contained in:
2025-11-24 11:45:53 -03:00
parent 5b1ba9e9c7
commit 78ad183e61
29 changed files with 828 additions and 255 deletions

View File

@@ -9,8 +9,8 @@ def test_detect_delimiter():
def test_byte_ranges():
csvpath = 'tests/samples/users.csv'
ranges = byte_ranges(csvpath, 10)
*_, pair = ranges
start_byte, end_byte = pair
*_, chunk = ranges
start_byte, end_byte = chunk
assert ranges == [(0, 808), (809, 1655), (1656, 2303)]