MCPcopy Create free account
hub / github.com/OpenOSINT/OpenOSINT / main

Function main

openosint/cli.py:740–749  ·  view source on GitHub ↗

Synchronous entry point registered in pyproject.toml.

()

Source from the content-addressed store, hash-verified

738
739
740def main() -> None:
741 """Synchronous entry point registered in pyproject.toml."""
742 try:
743 asyncio.run(_async_main())
744 except KeyboardInterrupt:
745 print("\n[!] Interrupted.", file=sys.stderr)
746 sys.exit(130)
747 except Exception as exc:
748 print(f"[!] Fatal: {exc}", file=sys.stderr)
749 sys.exit(1)
750
751
752if __name__ == "__main__":

Callers 1

cli.pyFile · 0.70

Calls 2

_async_mainFunction · 0.85
runMethod · 0.45

Tested by

no test coverage detected