@click.group(help="Python script for automatically retrieving key information in app.")
defcli():
pass
# 创建Android任务
@cli.command(help="Get the key information of Android system.")
@click.option("-i","--inputs",required=True,type=str,help="Please enter the APK file or DEX file to be scanned or the corresponding APK download address.")
@click.option("-r","--rules",required=False,type=str,default="",help="Please enter a rule for temporary scanning of file contents.")
@cli.command(help="Get the key information of iOS system.")
@click.option("-i","--inputs",required=True,type=str,help="Please enter IPA file or ELF file to scan or corresponding IPA download address. App store is not supported at present.")
@click.option("-r","--rules",required=False,type=str,default="",help="Please enter a rule for temporary scanning of file contents.")
@cli.command(help="Get the key information of Web system.")
@click.option("-i","--inputs",required=True,type=str,help="Please enter the site directory or site file to scan or the corresponding site download address.")
@click.option("-r","--rules",required=False,type=str,default="",help="Please enter a rule for temporary scanning of file contents.")