MCPcopy Create free account
hub / github.com/cdgriffith/Box / from_csv

Method from_csv

box/box_list.py:540–547  ·  view source on GitHub ↗
(
        cls,
        csv_string: str | None = None,
        filename: str | PathLike | None = None,
        encoding: str = "utf-8",
        errors: str = "strict",
    )

Source from the content-addressed store, hash-verified

538
539 @classmethod
540 def from_csv(
541 cls,
542 csv_string: str | None = None,
543 filename: str | PathLike | None = None,
544 encoding: str = "utf-8",
545 errors: str = "strict",
546 ):
547 return cls(_from_csv(csv_string=csv_string, filename=filename, encoding=encoding, errors=errors))

Callers 2

test_from_csvMethod · 0.80
_to_csvFunction · 0.80

Calls 1

_from_csvFunction · 0.90

Tested by 1

test_from_csvMethod · 0.64