定制命令行运行方式
示例
一
import sys
sys.path.append('../')
import jieba
import jieba.analyse
from optparse import OptionParser
USAGE = "usage: python extract_tags_with_weight.py [file name] -k [top k] -w [with weight=1 or 0]"
parser = OptionParser(USAGE)
parser.add_option("-k", dest="topK")
parser.add_option("-w", dest="withWeight")
opt, args = parser.parse_args()
if len(args) < 1:
print(USAGE)
sys.exit(1)
file_name = args[0]
if opt.topK is None:
topK = 10
else:
topK = int(opt.topK)
if opt.withWeight is None:
withWeight = False
else:
if int(opt.withWeight) is 1:
withWeight = True
else:
withWeight = False
content = open(file_name, 'rb').read()
tags = jieba.analyse.extract_tags(content, topK=topK, withWeight=withWeight)
if withWeight is True:
for tag in tags:
print("tag: %s\t\t weight: %f" % (tag[0],tag[1]))
else:
print(",".join(tags))
二
#!/usr/bin python3
# coding: utf-8
"""
FILE: de-weight.py
DATE: 17-6-26 上午10:36
DESC:
"""
from optparse import OptionParser
USAGE = "usage: python3 de-weight.py [directory path] -r [recursion] -d [repeat file destination path]"
parser = OptionParser(USAGE)
parser.add_option("-r", action="store_true", dest="recursion", default=False) # 没有输入, 有则为True, 没有为False
parser.add_option("-d", dest="destination")
opt, args = parser.parse_args()
print(opt)
print(args)
bovenson@ThinkCentre:~/Git/notes/Python/pytools/files$ python3 de-weight.py . -d .
{'recursion': False, 'destination': '.'}
['.']
bovenson@ThinkCentre:~/Git/notes/Python/pytools/files$
最后更新于
这有帮助吗?