MCPcopy
hub / github.com/521xueweihan/HelloGitHub / analyze

Function analyze

script/github_bot/github_bot.py:122–131  ·  view source on GitHub ↗

分析获取的数据 :return 符合过滤条件的数据

(json_data)

Source from the content-addressed store, hash-verified

120
121
122def analyze(json_data):
123 """
124 分析获取的数据
125 :return 符合过滤条件的数据
126 """
127 result_data = []
128 for fi_data in json_data:
129 if check_condition(fi_data):
130 result_data.append(fi_data)
131 return result_data
132
133
134def get_stars(data):

Callers 1

make_contentFunction · 0.85

Calls 1

check_conditionFunction · 0.85

Tested by

no test coverage detected