本文整理汇总了Python中torlite.model.mpost.MPost.update_keywords方法的典型用法代码示例。如果您正苦于以下问题:Python MPost.update_keywords方法的具体用法?Python MPost.update_keywords怎么用?Python MPost.update_keywords使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类torlite.model.mpost.MPost
的用法示例。
在下文中一共展示了MPost.update_keywords方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: len
# 需要导入模块: from torlite.model.mpost import MPost [as 别名]
# 或者: from torlite.model.mpost.MPost import update_keywords [as 别名]
u = u.strip()
if len(u) > 0:
tt = u.split()
out_arr.append(tt)
return (out_arr)
def do_for_x(rec):
kw_dic = get_dic()
out_dic = {}
for kw in kw_dic:
count = rec.title.count(kw[0])
count2 = rec.cnt_md.count(kw[0])
if count > 0:
out_dic[kw[0]] = count * .3 + count2 * .2 + int(kw[1]) * .5
out_dic2 = sorted(out_dic.items(), key = lambda asd:asd[1], reverse=True)
return (out_dic2[:8])
if __name__ == '__main__':
mpost = MPost()
uu = mpost.query_keywords_empty()
if uu.count() > 0:
for x in uu:
tt = (do_for_x(x))
vv = [x[0] for x in tt]
if len(vv) > 0:
print(','.join(vv))
mpost.update_keywords(x.uid, ','.join(vv))
else:
mpost.update_keywords(x.uid, '开放地理空间实验室')
示例2: return
# 需要导入模块: from torlite.model.mpost import MPost [as 别名]
# 或者: from torlite.model.mpost.MPost import update_keywords [as 别名]
return (out_arr)
def do_for_x(rec):
kw_dic = get_dic()
out_dic = {}
for kw in kw_dic:
count = rec.title.count(kw[0])
count2 = rec.cnt_md.count(kw[0])
if count > 0:
out_dic[kw[0]] = count * .3 + count2 * .2 + int(kw[1]) * .5
out_dic2 = sorted(out_dic.items(), key=lambda asd: asd[1], reverse=True)
return (out_dic2[:8])
if __name__ == '__main__':
mpost = MPost()
uu = mpost.query_keywords_empty()
for x in uu:
tt = (do_for_x(x))
vv = [x[0] for x in tt]
if len(vv) > 0:
print(','.join(vv))
mpost.update_keywords(x.uid, ','.join(vv))
else:
mpost.update_keywords(x.uid, 'OSGeo中国中心,开放地理空间实验室')