MCPcopy Create free account
hub / github.com/RASAAS/docmcp-knowledge / main

Function main

scripts/fetch_standards_overview.py:177–191  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

175
176
177def main():
178 FULLTEXT_DIR.mkdir(parents=True, exist_ok=True)
179 with open(INDEX_PATH, "r", encoding="utf-8") as f:
180 index = json.load(f)
181
182 entries = index.get("entries", [])
183 print(f"Processing {len(entries)} standards...\n")
184
185 success = 0
186 for entry in entries:
187 if process_standard(entry):
188 success += 1
189 time.sleep(2)
190
191 print(f"\nDone: {success}/{len(entries)} standards")
192
193
194if __name__ == "__main__":

Callers 1

Calls 2

process_standardFunction · 0.85
getMethod · 0.80

Tested by

no test coverage detected