pyspider源代碼-run.py click模塊

[run文檔]https://github.com/binux/pyspider/blob/master/pyspider/run.py

import os
import sys
import six
import copy
import time
import shutil
import logging
import logging.config
import click
import pyspider

click

click.group

Commands can be attached to other commands of type Group
. This allows arbitrary nesting of scripts. As an example here is a script that implements two commands for managing databases
命令可以通過group添加其他的命令.可以在腳本中隨意嵌套,這里有一個例子,實現(xiàn)兩個管理數(shù)據(jù)庫的命令

@click.group()
def cli():
    pass

@click.command()
def initdb():
    click.echo('Initialized the database')

@click.command()
def dropdb():
    click.echo('Dropped the database')

cli.add_command(initdb)
cli.add_command(dropdb)

可以簡寫為

@click.group()
def cli():
    pass

@cli.command()
def initdb():
    click.echo('Initialized the database')

@cli.command()
def dropdb():
    click.echo('Dropped the database')
if __name__ == '__main__':
    cli()
>>>python text.py  dropdb
Dropped the database

click.option

To add parameters, use the option()
and argument()
decorators
使用option()和argument()添加參數(shù)

import click


@click.command()
@click.option('--count', default=1, help='number of greetings')
@click.argument('name')
def hello(count, name):
    for x in range(count):
        click.echo('Hello %s!' % name)
if __name__ == '__main__':
    hello()
>>>python text.py xxx --count=2
Hello xxx!
Hello xxx!

click.version_option

Adds a --version option which immediately ends the program printing out the version number. This is implemented as an eager option that prints the version and exits the program in the callback.
添加一個--version選項,讓程序在打印出version之后立即退出,Click 提供 eager 標識對參數(shù)名進行標識蔑匣,如果輸入該參數(shù)军援,則會攔截既定的命令行執(zhí)行流程,跳轉去執(zhí)行一個回調函數(shù)

import click


@click.command()
@click.option('--count', default=1, help='number of greetings')
@click.argument('name')
@click.version_option(version='1', prog_name='pyspider')#添加version_option選項
def hello(count, name):
    for x in range(count):
        click.echo('Hello %s!' % name)
if __name__ == '__main__':
    hello()
>>>python text.py xxx --count=2 --version 1
pyspider, version 1

click.pass_context

更新
Marks a callback as wanting to receive the current context object as first argument.

返回當前上下文作為第一個參數(shù)傳遞給對應的方法.

import click
@click.command()
@click.option('--count', default=1, help='Number of greetings.')
@click.option('--name', prompt='Your name',
              help='The person to greet.')
@click.pass_context
def hello(ctx,**kwargs):
    click.echo(ctx)
    click.echo(kwargs)
  

if __name__ == '__main__':
    hello()

run

>>> python test.py 
Your name: aaa
<click.core.Context object at 0x7f74d2cf0210>
{'count': 1, 'name': u'aaa'}

As you can see from the earlier example, the basic command group accepts a debug argument which is passed to its callback, but not to the sync command itself. The sync command only accepts its own arguments.
This allows tools to act completely independent of each other, but how does one command talk to a nested one? The answer to this is the Context
.
Each time a command is invoked, a new context is created and linked with the parent context. Normally, you can’t see these contexts, but they are there. Contexts are passed to parameter callbacks together with the value automatically. Commands can also ask for the context to be passed by marking themselves with the pass_context()
decorator. In that case, the context is passed as first argument.
The context can also carry a program specified object that can be used for the program’s purposes. What this means is that you can build a script like this:
上一個比較簡單的版本,這一組命令接受debug參數(shù)通過自己的函數(shù),但是sync命令沒辦法接受.sync命令只能接受自己的參數(shù),這讓每一個命令相對獨立,但是一個命令如何傳遞給參數(shù),這個回答就是content

每次一個命令被調用,一個新的上下文被處創(chuàng)建和指向父類上下文.通常,你看不到這些上下文.但是,上下文自動傳遞給參數(shù)和方法.命令可以通過 pass_context()來請求和傳遞上下文.在這種情況下上下文作文第一個參數(shù).

上下文還可以攜帶可以程序指定對象辞州。這意味著您可以構建如下腳本:

@click.group()
@click.option('--debug/--no-debug', default=False)
@click.pass_context
def cli(ctx, debug):
    ctx.obj['DEBUG'] = debug

@cli.command()
@click.pass_context
def sync(ctx):
    click.echo('Debug is %s' % (ctx.obj['DEBUG'] and 'on' or 'off'))

if __name__ == '__main__':
    cli(obj={})

click.Choice

Sometimes, you want to have a parameter be a choice of a list of values. In that case you can use Choice
type. It can be instantiated with a list of valid values.

你想讓一個參數(shù)有一個選擇列表.

import click
@click.command()
@click.option('--hash-type', type=click.Choice(['md5', 'sha1']))
def digest(hash_type):
    click.echo(hash_type)
if __name__ == '__main__':
    
    digest()
python text.py --hash-type md5
md5

最后編輯于
?著作權歸作者所有,轉載或內容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市拳缠,隨后出現(xiàn)的幾起案子子巾,更是在濱河造成了極大的恐慌,老刑警劉巖罚随,帶你破解...
    沈念sama閱讀 211,042評論 6 490
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異羽资,居然都是意外死亡淘菩,警方通過查閱死者的電腦和手機,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 89,996評論 2 384
  • 文/潘曉璐 我一進店門屠升,熙熙樓的掌柜王于貴愁眉苦臉地迎上來潮改,“玉大人,你說我怎么就攤上這事弥激〗福” “怎么了?”我有些...
    開封第一講書人閱讀 156,674評論 0 345
  • 文/不壞的土叔 我叫張陵微服,是天一觀的道長趾疚。 經常有香客問我,道長以蕴,這世上最難降的妖魔是什么糙麦? 我笑而不...
    開封第一講書人閱讀 56,340評論 1 283
  • 正文 為了忘掉前任,我火速辦了婚禮丛肮,結果婚禮上赡磅,老公的妹妹穿的比我還像新娘。我一直安慰自己宝与,他們只是感情好焚廊,可當我...
    茶點故事閱讀 65,404評論 5 384
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著习劫,像睡著了一般咆瘟。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上诽里,一...
    開封第一講書人閱讀 49,749評論 1 289
  • 那天袒餐,我揣著相機與錄音,去河邊找鬼。 笑死灸眼,一個胖子當著我的面吹牛卧檐,可吹牛的內容都是我干的。 我是一名探鬼主播焰宣,決...
    沈念sama閱讀 38,902評論 3 405
  • 文/蒼蘭香墨 我猛地睜開眼霉囚,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了匕积?” 一聲冷哼從身側響起佛嬉,我...
    開封第一講書人閱讀 37,662評論 0 266
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎闸天,沒想到半個月后,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體斜做,經...
    沈念sama閱讀 44,110評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡苞氮,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內容為張勛視角 年9月15日...
    茶點故事閱讀 36,451評論 2 325
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現(xiàn)自己被綠了瓤逼。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片笼吟。...
    茶點故事閱讀 38,577評論 1 340
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖霸旗,靈堂內的尸體忽然破棺而出贷帮,到底是詐尸還是另有隱情,我是刑警寧澤诱告,帶...
    沈念sama閱讀 34,258評論 4 328
  • 正文 年R本政府宣布撵枢,位于F島的核電站,受9級特大地震影響精居,放射性物質發(fā)生泄漏锄禽。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點故事閱讀 39,848評論 3 312
  • 文/蒙蒙 一靴姿、第九天 我趴在偏房一處隱蔽的房頂上張望沃但。 院中可真熱鬧,春花似錦佛吓、人聲如沸宵晚。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,726評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽淤刃。三九已至,卻和暖如春谆沃,著一層夾襖步出監(jiān)牢的瞬間钝凶,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,952評論 1 264
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留耕陷,地道東北人掂名。 一個月前我還...
    沈念sama閱讀 46,271評論 2 360
  • 正文 我出身青樓,卻偏偏與公主長得像哟沫,于是被迫代替她去往敵國和親饺蔑。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當晚...
    茶點故事閱讀 43,452評論 2 348

推薦閱讀更多精彩內容

  • **2014真題Directions:Read the following text. Choose the be...
    又是夜半驚坐起閱讀 9,429評論 0 23
  • 時間緊拂蝎,任務重但是我相信你可以完成任務穴墅! 目前情況: 法規(guī):看完一遍 管理:看完一遍 經濟:看完一遍 實務:60節(jié)...
    sun清風悠揚閱讀 579評論 9 6
  • 人際交往非常現(xiàn)實温自,人們關注的不是你是誰玄货,而是你能給我什么。你不必為了他人而改變自己悼泌,但你也不能一無所有松捉。 這是一個...
    鑒峰閱讀 341評論 0 0
  • 出差來到她的城市,第一時間告訴她馆里,我說想她隘世,想要她,她說很忙鸠踪,沒有精力以舒。我理解,但我就說了一句:你還依舊愛我慢哈,對嗎...
    Kevin_M閱讀 274評論 0 1
  • 人生已經過去半蔓钟,知道美好的年華老去,不用在曲意逢迎卵贱,知道自己責任滥沫,也知道自己愛好,只想做自己的喜歡的有意義的事
    東東少閱讀 179評論 0 1