摘要:
1 import requests 2 from time import sleep 3 from lxml import etree 4 from fake_useragent import UserAgent 5 from random import randint 6 import re 7 阅读全文
摘要:
详细使用案例 XPath与jsonpath 1 import json 2 from lxml import etree 3 from jsonpath import jsonpath 4 5 def json_test(): 6 str1 = '{"name":"埃里克森"}' 7 # 将字符串转 阅读全文
摘要:
服务端 1 import logging 2 import json 3 from base64 import b64encode 4 from odoo import http, SUPERUSER_ID, _ 5 from odoo.http import request 6 7 _logger 阅读全文
摘要:
一、numpy简介 NumPy(Numerical Python) 是Python语言的一个扩展程序库,支持大量的维度数组与矩阵运算,此外也征地数组运算提供大量的数据函数库 NumPy的前身Numeric最早是由Jim Hugunin与其它写作者共同开发,2005年,Travis Oliphant在 阅读全文
摘要:
1 # Python虚拟隔离环境:virtualenv与venv 2 # 1.作用:隔离运行python程序,因为不同的python程序有可能依赖同一个包,但版本不同,虚拟隔离环境就是为了解决这个问题的 3 # 2.原理:python运行环境包含:1.Python解释器、2.Python库的位置(L 阅读全文
摘要:
# odoo14 Discuss实时通信 # 一、业务流程: # 1.Postgresql监听"listen imbus"消息通信 # 2.用户发送私聊、发送提醒任务、邮箱收件……都会存储在Discuss模块中 # 3.携带这些数据"notify imbus,'id=1,action_id=2,re 阅读全文
摘要:
1 # 重写Model方法 2 # get_formview_id:分享出去的链接跳转到访问模型某条记录,指定form视图展示 3 def get_formview_id(self, access_uid=None): 4 if access_uid: 5 self_sudo = self.with 阅读全文
摘要:
LISTEN与NOTIFY命令 PostgreSQL提供了client端和其他client端通过服务器端进行消息通信的机制。这种机制 是通过LISTEN和NOTIFY命令来完成的。 1.LISTEN与NOTIFY的简单示例 接下来举例说明LISTEN和NOTIFY的使用方法。 先运行一个psql(这 阅读全文
摘要:
# 一、用函数修饰函数 #!/usr/bin/python3 def decorate_func(func): def call(*args, **kwargs): print('you have called %s()' % (func.__name__)) func(*args, **kwarg 阅读全文
摘要:
# any 语法:any(iterable) 作用: 如果iterable(如:列表、字符串、字典等)的任何元素为真,则any()方法返回True。如果没有,any()返回False。 # callable 语法:callable(object) 作用:检查一个对象是否是可调用的。 如果返回 Tru 阅读全文