上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 30 下一页
摘要: 一、拷贝,移动,改名 import shutil old_file=r"C:\Users\ffm11\Desktop\AI.docx" new_file=r"C:\Users\ffm11\Desktop\AI_new.docx" # 拷贝文件和权限,不能覆盖目标文件 shutil.copy(old_ 阅读全文
posted @ 2019-12-14 21:45 Maple_feng 阅读(503) 评论(0) 推荐(0) 编辑
摘要: 注意:请使用不用的手机测试,appium会把微信app重新安装,记录都会清除 一、安装Java JDK JDK下载地址:https://www.oracle.com/technetwork/java/javase/downloads/jdk11-downloads-5066655.html 安装好后 阅读全文
posted @ 2019-12-08 19:49 Maple_feng 阅读(389) 评论(0) 推荐(0) 编辑
摘要: 一、介绍 1.第一步录音存入本地 2.调用百度语音识别sdk 注意点:百度语音识别对声音源有要求,比特率必须是256kbps 二、代码 #安装必要库 pip install baidu-aip #百度sdk pip install pyaudio import wave import pyaudio 阅读全文
posted @ 2019-12-08 15:51 Maple_feng 阅读(3414) 评论(0) 推荐(0) 编辑
摘要: 一、代码 package main import ( "fmt" "github.com/microcosm-cc/bluemonday" "github.com/russross/blackfriday" "io/ioutil" "os" ) func ReadAll(filePth string 阅读全文
posted @ 2019-11-26 16:54 Maple_feng 阅读(1457) 评论(0) 推荐(0) 编辑
摘要: 一、代码 package main import ( "fmt" "strings" "strconv" "time" ) // StrToIntMonth 字符串月份转整数月份 func StrToIntMonth(month string) int { var data = map[string 阅读全文
posted @ 2019-11-26 16:25 Maple_feng 阅读(491) 评论(0) 推荐(0) 编辑
摘要: 一、代码 package main import ( "fmt" "regexp" ) func main() { text := `Hello 世界!123 Go.` // 查找连续的小写字母 reg := regexp.MustCompile(`[a-z]+`) fmt.Printf("%q\n 阅读全文
posted @ 2019-11-26 16:00 Maple_feng 阅读(1795) 评论(0) 推荐(0) 编辑
摘要: 一、安装模块 pip install channels pip install channels-redis 二、代码 #websocket_v1/settings.py INSTALLED_APPS = [ 'django.contrib.admin', 'django.contrib.auth' 阅读全文
posted @ 2019-11-19 15:41 Maple_feng 阅读(720) 评论(1) 推荐(0) 编辑
摘要: 一、短url的原理 什么是短url: 简单讲就是把普通正常访问的网址,转换成比较短的网址,例如:https://www.cnblogs.com/angelyan/articles/10667354.html#_label0 转成https://dwz.cn/p8VGVkMt 作用优点:短,字符少,美 阅读全文
posted @ 2019-11-10 16:43 Maple_feng 阅读(950) 评论(0) 推荐(1) 编辑
摘要: 一、UI显示选择日期,保存到文件 阅读全文
posted @ 2019-10-29 15:12 Maple_feng 阅读(3248) 评论(0) 推荐(1) 编辑
摘要: 一、转换迅雷下载链接 阅读全文
posted @ 2019-10-26 21:23 Maple_feng 阅读(3468) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 30 下一页