visualdynamics.io.sniffing¶
sniffing
¶
What every sniffer does before it reads anything.
A sniffer answers "is this file yours?" and must never raise doing it — an unreadable file is simply not ours, whatever the reason. Each text importer was carrying its own copy of that try/open/except; the rule lives here once.
Functions:
| Name | Description |
|---|---|
text_head |
The first |
npz_has |
Whether an |
Functions:¶
text_head
¶
The first size characters of a text file, or None where the
file cannot be read. errors='replace' because a sniff judges the
shape of the text, and one undecodable byte must not veto a file
the loader would take.
Source code in src/visualdynamics/io/sniffing.py
npz_has
¶
Whether an .npz at path carries every one of keys — the
question the three npz importers ask, each of which once carried
its own copy of the open/except. allow_pickle is the caller's
call: the Rattlesnake specification is plain arrays and refuses
pickles, sdynpy's saves carry object arrays.