返回顶部
扶摇直上九万里,展翅高飞岂可待。
摘要: copy模块: #传输文件到目标机 ansible -i /kingdee/ansible/host all -m copy -a 'src=/tmp/aaaa.tgz dest=/tmp/aaaa.tgz' cron模块: #创建任务 ansible -i /kingdee/ansible/hos 阅读全文
posted @ 2022-12-17 18:34 鲤鱼洲畔 阅读(39) 评论(0) 推荐(0) 编辑
摘要: # -*- coding: utf-8 -*-import pymongo, openpyxl, time# pymongo#条件删选mongodb数据def mongodb_expoter(db_name, col_name, **kwargs): mongodb_string = "mongod 阅读全文
posted @ 2022-11-03 17:56 鲤鱼洲畔 阅读(26) 评论(0) 推荐(0) 编辑
摘要: 1.跨域问题处理:在nginx相关接口上配置如下: 如接口有自己的请求头,则加上:如接口自带请求头pubacc-buid if ($request_method = "OPTIONS") { return 204; add_header 'Access-Control-Allow-Origin' ' 阅读全文
posted @ 2022-11-03 14:21 鲤鱼洲畔 阅读(365) 评论(0) 推荐(0) 编辑
摘要: 一.启动redis数据库 /usr/bin/redis-server /kingdee/redis/other/other/6381.conf 二.停止redis数据库:会自动做持久化动作 /usr/bin/redis-cli -a yzjredis -p 6379 shutdown 三.查看red 阅读全文
posted @ 2022-11-01 15:32 鲤鱼洲畔 阅读(38) 评论(0) 推荐(0) 编辑
摘要: # -*- coding: utf-8 -*-import tkinter as tkdef getNewCreate(): passdef getCharcount1(sss): # 添加字数统 status_str_var.set( '字符数: {count}'.format(count=len 阅读全文
posted @ 2022-09-15 14:47 鲤鱼洲畔 阅读(69) 评论(0) 推荐(0) 编辑
摘要: # 获取输入框中的内容 def getVars(): global outterDomain1, innertDomian1, guestEid1, appName1, unicodeName1, rabbimqVip1 print(outterDomain1, innertDomian1, gue 阅读全文
posted @ 2022-09-09 10:33 鲤鱼洲畔 阅读(98) 评论(0) 推荐(0) 编辑
摘要: #1. xls文件转换成xlsx文件,需要使用到 win32com from win32com import client as wc filepath = "D:\\python\\liyuzhuopan\\s14\\20220531" # xls 转化成xlsxdef convert_Xsl_T 阅读全文
posted @ 2022-09-09 10:29 鲤鱼洲畔 阅读(188) 评论(0) 推荐(0) 编辑
摘要: mongosh下载地址: https://downloads.mongodb.com/compass/mongodb-mongosh-shared-openssl3-1.6.0.x86_64.rpm?_ga=2.240042379.982442877.1667355362-954946077.166 阅读全文
posted @ 2022-08-26 10:30 鲤鱼洲畔 阅读(73) 评论(0) 推荐(0) 编辑
摘要: # -*- coding: utf-8 -*-# decorator# 定义:本质是函数,就是为其他函数添加附件功能# 原则:# 1.不能修改被装饰的函数的源代码# 2.不能修改被装饰的函数的调用方式# 实现装饰器# 1.函数既变量# 2.高阶函数# 3.嵌套函数# 高阶甘薯+嵌套函数 >装饰器im 阅读全文
posted @ 2022-08-24 15:23 鲤鱼洲畔 阅读(52) 评论(0) 推荐(0) 编辑
摘要: # -*- coding: utf-8 -*-username = "liyuzhoupan"password = "123"def author(wrappreType): print("wrappreType:", wrappreType) def outterwrapper(func): de 阅读全文
posted @ 2022-08-24 15:23 鲤鱼洲畔 阅读(18) 评论(0) 推荐(0) 编辑