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

Function get_environment

aura/analyzers/python_src_inspector.py:164–172  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

162
163
164def get_environment():
165 return {
166 "version": list(platform.python_version_tuple()),
167 "implementation": platform.python_implementation(),
168 "compiler": platform.python_compiler(),
169 "build": platform.python_build(),
170 "builtins": get_builtins(),
171 # TODO: 'comments': list(get_comments(source_code=source_code))
172 }
173
174
175def collect(source_code, encoding="utf-8", minimal=False):

Callers 2

collectFunction · 0.85
mainFunction · 0.85

Calls 1

get_builtinsFunction · 0.85

Tested by

no test coverage detected