码迷,mamicode.com
首页 > 其他好文 > 详细

shodan分析

时间:2016-06-21 10:31:43      阅读:137      评论:0      收藏:0      [点我收藏+]

标签:

click:

官方主页:http://click.pocoo.org/5/

支持:

   1 命令的任意嵌套
   2 自动生成帮助信息
   3 支持在运行时子命令的延迟加载

 安装:

pip install click

 例子:

import click

@click.command()
@click.option(‘--count‘, default=1, help=‘Number of greetings.‘)
@click.option(‘--name‘, prompt=‘Your name‘,
 help=‘The person to greet.‘)
def hello(count, name):
"""Simple program that greets NAME for a total of COUNT times."""
 for x in range(count):
 click.echo(‘Hello %s!‘ % name)

if __name__ == ‘__main__‘:
hello()

 运行:

$ python hello.py --help
Usage: hello.py [OPTIONS]

 Simple program that greets NAME for a total of COUNT times.

Options:
 --count INTEGER Number of greetings.
 --name TEXT The person to greet.
 --help Show this message and exit.

 

 

参考:

  http://www.thinksaas.cn/topics/0/346/346148.html

shodan分析

标签:

原文地址:http://www.cnblogs.com/persuit/p/5602625.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!