diff --git a/bindings/python/quokka/program.py b/bindings/python/quokka/program.py index 836a19c4..5ee0efab 100644 --- a/bindings/python/quokka/program.py +++ b/bindings/python/quokka/program.py @@ -159,6 +159,11 @@ def __hash__(self) -> int: """Hash of the Program (use the hash from the exported file)""" return int(self.proto.meta.hash.hash_value, 16) + @property + def name(self) -> str: + """Returns the underlying binary name""" + return self.proto.meta.executable_name + @property def hash(self) -> str: """Returns the hash value of the binary (either sha256 or MD5)."""