MCPcopy
hub / github.com/explosion/spaCy / from_bytes

Function from_bytes

spacy/util.py:1395–1400  ·  view source on GitHub ↗
(
    bytes_data: bytes,
    setters: Dict[str, Callable[[bytes], Any]],
    exclude: Iterable[str],
)

Source from the content-addressed store, hash-verified

1393
1394
1395def from_bytes(
1396 bytes_data: bytes,
1397 setters: Dict[str, Callable[[bytes], Any]],
1398 exclude: Iterable[str],
1399) -> None:
1400 return from_dict(srsly.msgpack_loads(bytes_data), setters, exclude) # type: ignore[return-value]
1401
1402
1403def to_dict(

Callers

nothing calls this directly

Calls 1

from_dictFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…