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

Method score_github_forks

aura/package.py:402–409  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

400 return self.Value(stars, normalized, "GitHub stars", explanation)
401
402 def score_github_forks(self) -> Union[Value, NA]:
403 if self.github is None:
404 return self.NA("GitHub forks")
405
406 forks = self.github.repo["forks"]
407 normalized = log_scale(forks)
408 explanation = f"{forks} (+{normalized})"
409 return self.Value(forks, normalized, "GitHub forks", explanation)
410
411 def score_github_contributors(self) -> Union[Value, NA]:
412 if self.github is None:

Callers 1

get_score_entriesMethod · 0.95

Calls 1

log_scaleFunction · 0.85

Tested by

no test coverage detected