本文整理汇总了Python中api.API.load方法的典型用法代码示例。如果您正苦于以下问题:Python API.load方法的具体用法?Python API.load怎么用?Python API.load使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类api.API
的用法示例。
在下文中一共展示了API.load方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: API
# 需要导入模块: from api import API [as 别名]
# 或者: from api.API import load [as 别名]
"""
Test Script for commandlinefu api module
"""
import os
import sys
# Add to sys.path and then import
sys.path.insert(0, os.path.abspath(".."))
from api import API
print "\nAPI test ------------------------\n"
api = API(sys.argv[1:])
api.load()
api.display(True, 3, True)
示例2: search
# 需要导入模块: from api import API [as 别名]
# 或者: from api.API import load [as 别名]
def search(keyword):
a = API(keyword)
rst = a.load()
_ = u'\r\n\r\n'.join([u'CMD example:{0}\r\ninfo:{1}\r\n\r\n'.format(i['command'],i['summary']) for i in rst[:10]])
print _
return _.encode('utf-8')