mirror of
https://gitlab.com/chicken-riders/RcGcDb.git
synced 2025-02-23 00:54:09 +00:00
6 lines
289 B
Python
6 lines
289 B
Python
![]() |
import argparse
|
||
|
|
||
|
parser = argparse.ArgumentParser(description="Starts the bot to retrieve wiki recent changes.")
|
||
|
parser.add_argument("-d", "--debug", action='store_true', help="Starts debugging session, will cause exceptions to return immediately")
|
||
|
command_line_args = parser.parse_args()
|