
python
YMY_mine
这个作者很懒,什么都没留下…
展开
-
查看python安装路径
1、查看Python路径which python2、查看Python安装包路径进入Python终端import sysprint sys.path原创 2021-12-21 16:59:08 · 791 阅读 · 0 评论 -
python 测试框架-unittest
1、了解unittesthttps://www.cnblogs.com/miki-peng/p/12501341.html2、示例#!/usr/bin/env python# -*- coding: utf-8 -*-import math,osimport sysreload(sys)sys.setdefaultencoding('utf8')import unittestimport HTMLTestRunnersys.path.append(os.path.abspath('ge原创 2021-12-20 19:59:13 · 774 阅读 · 0 评论 -
Python 中__name__用法
今天发现了个__name__的新用法1、大家都熟悉的:if __name__ == '__main__': print "123"就不多话说了,主要说下第二种2、获取 fuction name,函数名(字符串)#!/usr/bin/env python# -*- coding: utf-8 -*-def checkTotal(): return False pastType = { 'checkTotal': '本次测试数据总条数', 'checkEq原创 2021-09-07 20:29:50 · 845 阅读 · 0 评论 -
redis 相关-set数据
import redisimport sysfileName = sys.argv[1] #要set数据的文件redisC = redis.StrictRedis(host='localhost', port=6379) #redis服务#redisC = redis.StrictRedis(host='127.0.0.1', port=6379) f=open(fileName)d = f.read()redisC.set('rb_toll_20210518112548',d)...原创 2021-06-03 12:00:10 · 240 阅读 · 0 评论 -
Python 多进程 multiprocessing 实现进程通讯间通讯 <二>多进程
Python 多进程 multiprocessing 实现进程通讯间通讯 <一>进程池:https://blog.youkuaiyun.com/YMY_mine/article/details/108285674Python 多线程之间共享变量很简单,直接定义全局 global 变量即可。而多进程之间是相互独立的执行单元,这种方法就不可行了。不过 Python 标准库已经给我们提供了这样的能力,使用起来也很简单。但要分两种情况来看,一种是 Process 多进程,一种是 Pool 进程池的方式。下面来...原创 2021-03-26 11:21:45 · 678 阅读 · 0 评论 -
golang实现各种排序
一、冒泡排序//冒泡func Bubblesort(arry []int)[]int{ if arry == nil{ return nil } for i:=0;i<len(arry)-1;i++{ for j:=0;j<len(arry)-i-1;j++{ if arry[j]>arry[j+1]{ arry[j],arry[j+1]=ar...原创 2020-03-31 13:22:05 · 472 阅读 · 0 评论 -
python __enter__ 与 __exit__的作用,以及与 with 语句的关系
With语句是什么?有一些任务,可能事先需要设置,事后做清理工作。对于这种场景,Python的with语句提供了一种非常方便的处理方式。一个很好的例子是文件处理,你需要获取一个文件句柄,从文件中读取数据,然后关闭文件句柄。如果不用with语句,代码如下:file = open("/tmp/foo.txt")data = file.read()file.close()这里有两个问题。一是可能忘记关闭文件句柄;二是文件读取数据发生异常,没有进行任何处理。下面是处理异常的加强版本:fi转载 2020-12-23 15:16:31 · 416 阅读 · 0 评论 -
python os.environ() 处理环境变量
https://blog.youkuaiyun.com/junweifan/article/details/7615591https://www.cnblogs.com/ccorz/p/osenviron-xiang-jie.html原创 2020-11-12 11:29:15 · 715 阅读 · 0 评论 -
Python 可变参数--*args & **kwargs
*args:单星号传入元组def argsFunc(a, *args): print a print args >>> argsFunc(1, 2, 3, 4)1(2, 3, 4)def argsFunc(*my_args): print my_args >>> argsFunc(1, 2, 3, 4)(1, 2, 3, 4)>>> argsFunc()()**kwargs:双星号传入map形参名前加两个*表.转载 2020-11-04 16:32:38 · 255 阅读 · 0 评论 -
Python操作redis详解
redis学习https://www.jianshu.com/p/2639549bedc8https://blog.youkuaiyun.com/BIT_SKY/article/details/512013691、redis连接redis提供两个类Redis和StrictRedis用于实现Redis的命令,StrictRedis用于实现大部分官方的命令,并使用官方的语法和命令,Redis是StrictRedis的子类,用于向后兼容旧版本的redis-py。redis连接实例是线程安全的,可以直转载 2020-09-17 15:55:06 · 1345 阅读 · 0 评论 -
Python 多进程 multiprocessing 实现进程通讯间通讯 <一>进程池
多进程除pipe和queue外,共享变量方式 multiprocessing.Manager()mydict = multiprocessing.Manager().dict() # 主进程与子进程共享这个字典mylist = multiprocessing.Manager().list(range(2)) # 主进程与子进程共享这个List#!/usr/bin/python# -*- coding: utf-8 -*-import multiprocessingdef f...原创 2020-08-28 19:38:39 · 597 阅读 · 0 评论 -
python 异常终止并捕捉信号
基本信号:import signalsignal.SIGABORTsignal.SIGHUP # 连接挂断signal.SIGILL # 非法指令signal.SIGINT # 连接中断signal.SIGKILL # 终止进程(此信号不能被捕获或忽略)signal.SIGQUIT # 终端退出signal.SIGTERM # 终止signal.SIGALRM # 超时警告signal.SIGCONT # 继续执行暂停进程示例:test.pysignal.si..原创 2020-08-28 19:27:30 · 3522 阅读 · 0 评论 -
jenkins 通过api触发,构建job,获取job执行结果,执行状态
#!/usr/bin/python# -*- coding: UTF-8 -*-import jenkins #pip install python-jenkinsimport datetime,timeclass Job(): def __init__(self, jenkins_master, jenkins_job, jenkins_user, jenkins_passwd,jenkins_server): ''' jenkins_master :.原创 2020-07-16 10:35:55 · 9940 阅读 · 0 评论 -
os.path.abspath(__file__)和os.path.dirname(__file__)区别
os.path.abspath(__file__)返回的是.py文件的绝对路径(完整路径)os.path.dirname(__file__)返回的是.py文件的目录import ospath1 = os.path.dirname(os.path.abspath(__file__))path2 = os.path.abspath(__file__)print(path1)print(path2)结果/Users/mypoidiff/apollo/Users/mypoidiff/ap原创 2020-07-09 15:35:07 · 1870 阅读 · 0 评论 -
python 之 sys.argv 和 sys.path.append()用法
一、sys.argv 命令行传参文件test.py内容如下:import sysa=sys.argvb=len(sys.argv)c=sys.argv[0]d=sys.argv[1]e=sys.argv[2]print(a)print(b)print(c)print(d)print(e)执行文件python test.py 11 22,结果如下:需要注意的地方就是,命令行入参的第一个参数是 需要执行的代码路径 test.py,而不是’11‘二、sys.pa..原创 2020-07-07 15:04:01 · 1409 阅读 · 0 评论 -
Python必会的单元测试框架 —— unittest
感觉这篇博客也得很详细:https://huilansame.github.io/huilansame.github.io/archivers/python-unittest原创 2020-06-23 15:17:30 · 213 阅读 · 0 评论 -
Python subprocess模块call&check_call
subprocess.call(args, *, stdin= None, stdout = None, stderr = None, shell = False)运行由args参数提供的命令,等待命令执行结束并返回返回码。args参数由字符串形式提供且有多个命令参数时,需要提供shell=True参数:res = subprocess.call('ls')print 'res:', resres = subprocess.call('ls -l', shell = True)prin.原创 2020-06-22 17:47:35 · 9353 阅读 · 0 评论 -
python 判断key是否存在dict里
今天来说一下如何判断字典中是否存在某个key,一般有两种通用做法,下面为大家来分别讲解一下:第一种方法:使用自带函数实现。在python的字典的属性方法里面有一个has_key()方法,这个方法使用起来非常简单。例:#生成一个字典d={'name':{},'age':{},'sex':{}}#打印返回值printd.has_key('name')#结果返回True第二种方法:使用in方法#生成一个字典d={'name':{},'age':{},'sex':...原创 2020-05-19 14:28:12 · 2163 阅读 · 0 评论 -
datetime,time计算时间差
根据时间戳计算与当前时间相差天数import time,datetimedef getTimeDaysDiff(timestamp): #时间戳转换长日期 getDate = datetime.datetime.fromtimestamp(timestamp) #print getDate,type(getDate) #2020-04-28 19:16:45 <type 'datetime.datetime'> #获取当前时间戳并转换成日期 .原创 2020-05-19 14:06:00 · 1857 阅读 · 0 评论 -
curl方式访问请求转换成python访问
一、curl 方式curl -X GET 'http://ip:port/br01_main_poi_55000043_1585561751000/prod/1110843103457050631'结果:{ "_index":"br01_main_poi_xxxx", "_type":"xxx", "_id":"111xxxxxx7050631", "_version":2, "found":true, "_source":{ .原创 2020-05-19 11:58:35 · 1679 阅读 · 0 评论 -
python实现简单类
一,类class parent: def __init__(self,name,age): self.name=name self.age=age def getmessage(self): print(self.name,self.age)if __name__=='__main__': obj=parent(n...原创 2020-03-15 21:18:31 · 355 阅读 · 0 评论 -
python3遇到Can't connect to HTTPS URL because the SSL module is not available.
说明ssl安装有问题,或者没有安装ssl,可通过如下检测说明没有安装ssl解决方法去python3 的安装目录下的/usr/local/python3/Python-3.6.8/Modules/Setup文件里,去掉下面四行的注释重新编译./configure --prefix=/usr/local/pythonmakemake install又下面报错...原创 2020-01-02 15:15:38 · 36781 阅读 · 4 评论 -
python3安装遇到 zipimport.ZipImportError: can't decompress data; zlib not available
报这个错会导致pip3无法使用,所以一定要解决这个错1、在报错的当前路径下安装zlib相关依赖包:yum -y install zlib*2、进入/usr/local/python3/Python-3.6.8/Modules下的Setup文件vim /usr/local/python3/Python-3.6.8/Modules/Setup找到#zlib zlib...原创 2020-01-02 11:31:20 · 20889 阅读 · 3 评论 -
python 获取以python 脚本提交的数据&以 curl 方式提交的 json / form 数据
一、以 curl 方式发送请求1、json格式数据curl -H "Content-Type:Content-Type:application/json" -X POST -d '{"original_ip": "10.20.181.211", "host_name":["10.0.0.53"]}' http://ip:port/apis/getrestoreresult/py...原创 2019-12-12 14:26:31 · 1055 阅读 · 0 评论 -
django学习笔记:post请求配置
1、djano post请求时需要将配置文件setings.py :屏蔽原创 2019-10-30 21:02:10 · 592 阅读 · 0 评论 -
golang & python 连接 postgreSQL及postgre如何插入含有单引号的字符串
golangpackage mainimport _ "github.com/lib/pq"func main() { pgsqlInfo := fmt.Sprintf("host=%s port=%d user=%s "+"password=%s dbname=%s sslmode=disable", host, port, user, password, dbname)...原创 2019-08-15 17:54:23 · 1749 阅读 · 0 评论 -
python & golang发送钉钉
官方链接:https://open-doc.dingtalk.com/docs/doc.htm?spm=a219a.7629140.0.0.z5MWoh&treeId=257&articleId=105735&docType=1import requestswebhook="机器人的hook"aa={'name':[80,18],'aaa':[2,0],'...原创 2019-01-10 20:08:58 · 1162 阅读 · 0 评论 -
python中从dict中提取电话号码
str_message为str型str1="13\d{9,200}|14[5,7]\d{8,200}|15[0-3,5-9]\d{8,200}|16[6]\d{8,200}|17[0,3,5-8]\d{8,200}|18\d{9,200}|19[8,9]\d{8,200}"result = re.findall(str1,str_message) 从str_message中提取电话号...原创 2019-01-04 17:20:37 · 1749 阅读 · 0 评论 -
python_正则表达式_匹配单个字符与数字
匹配单个字符与数字import reprint(re.search("\d","good man8 is sunck!sunck is nice"))print(re.findall("[\D]","good man is sunck!"))print(re.search("[\w]","_good man is sunck!sunck is nice"))pri原创 2018-11-19 14:05:02 · 1408 阅读 · 0 评论 -
python线程同步
import threadingimport timeclass mythread(threading.Thread): def __init__(self,threadID,name,counter): threading.Thread.__init__(self) self.threadID=threadID self.name=...原创 2018-11-16 19:11:52 · 164 阅读 · 0 评论 -
用python3写汉诺塔
结果https://blog.youkuaiyun.com/not_guy/article/details/72823951 这个解释的比较详细原创 2018-11-14 14:15:54 · 366 阅读 · 0 评论 -
学习python的资料
http://www.runoob.com/python3/python3-class.htmlhttps://www.liaoxuefeng.com/wiki/0014316089557264a6b348958f449949df42a6d3a2e542c000以上两个选一个就好视频教程:https://search.bilibili.com/all?keyword=python&am...原创 2018-11-15 14:30:12 · 202 阅读 · 0 评论