MCPcopy Create free account
hub / github.com/SourceCode-AI/aura / __init__

Method __init__

aura/analyzers/data_finder.py:30–38  ·  view source on GitHub ↗
(self, *args, **kwargs)

Source from the content-addressed store, hash-verified

28 """Extracts artifacts from the source code such sa URLs or Base64 blobs"""
29
30 def __init__(self, *args, **kwargs):
31 super().__init__(*args, **kwargs)
32
33 self._no_blobs = False
34
35 if "AURA_NO_BLOBS" in os.environ:
36 self._no_blobs = True
37
38 self.__min_blob_size = self.get_min_size()
39
40 @classmethod
41 def get_min_size(cls) -> int:

Callers 1

__init__Method · 0.45

Calls 1

get_min_sizeMethod · 0.95

Tested by

no test coverage detected