MCPcopy
hub / github.com/pex-tool/pex / InstalledFile

Class InstalledFile

pex/pep_376.py:70–78  ·  view source on GitHub ↗

The record of a single installed file from a PEP 376 RECORD file. See: https://peps.python.org/pep-0376/#record

Source from the content-addressed store, hash-verified

68
69@attr.s(frozen=True)
70class InstalledFile(object):
71 """The record of a single installed file from a PEP 376 RECORD file.
72
73 See: https://peps.python.org/pep-0376/#record
74 """
75
76 path = attr.ib() # type: Text
77 hash = attr.ib(default=None) # type: Optional[Hash]
78 size = attr.ib(default=None) # type: Optional[int]
79
80
81@attr.s(frozen=True)

Callers 6

record_installed_fileFunction · 0.90
_iter_installed_filesFunction · 0.90
install_wheelFunction · 0.90
create_installed_fileFunction · 0.85
readMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected