MCPcopy Create free account
hub / github.com/FSoft-AI4Code/CodeWiki / parse_arguments

Function parse_arguments

codewiki/src/be/main.py:31–43  ·  view source on GitHub ↗

Parse command line arguments.

()

Source from the content-addressed store, hash-verified

29
30
31def parse_arguments() -> argparse.Namespace:
32 """Parse command line arguments."""
33 parser = argparse.ArgumentParser(
34 description='Generate comprehensive documentation for Python components in dependency order.'
35 )
36 parser.add_argument(
37 '--repo-path',
38 type=str,
39 required=True,
40 help='Path to the repository'
41 )
42
43 return parser.parse_args()
44
45
46async def main() -> None:

Callers 1

mainFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected