笔记
lebanzi
这个作者很懒,什么都没留下…
展开
-
lxml学习笔记
lxml笔记import lxml.html# 将html解析为统一格式 tree = lxml.html.fromstring(html) # 返回一个列表 divs=tree.cssselect('css selector') # 第一个div下的所有内容 divs[0].text_content() # 第一个div中的文本 divs[0].text # 提取property以og:imag原创 2016-11-29 17:41:08 · 291 阅读 · 0 评论 -
pymongo 的使用
pymongo 的使用 collection 属性:full_name,name,database insert(self, doc_or_docs, manipulate=True, safe=False, check_keys=True, **kwargs):当manipulate=True 时,_id 会被自动添加到 dict,并返回些 _id(or list(_id)), 为False 时,原创 2016-11-30 20:41:03 · 909 阅读 · 0 评论 -
c4d Polygon converted to Pose Morph tag
c4d Polygon converted to Pose Morph tag 在c4d里面可以用拖拽的方法将多边形对象转化为posemorph,在代码里面可没有办法拖拽。 创建变形标签 # 创建 pose morph tag 标签 new_pose_morph = CAPoseMorphTag() if new_pose_morph is None: print("创建变形标签错...原创 2018-04-21 10:59:48 · 421 阅读 · 0 评论