MCPcopy Create free account
hub / github.com/OpenRaiser/PaperFlow / main

Function main

scripts/show_profile.py:103–112  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

101
102
103def main():
104 user_id = sys.argv[1] if len(sys.argv) > 1 else "user_001"
105
106 profile = get_profile(user_id)
107
108 if profile:
109 print(format_profile(profile))
110 else:
111 print(f"[ERROR] No profile found for user: {user_id}")
112 print("Run cold_start.py first to create a profile.")
113
114
115if __name__ == "__main__":

Callers 1

show_profile.pyFile · 0.70

Calls 2

get_profileFunction · 0.90
format_profileFunction · 0.85

Tested by

no test coverage detected