- 博客(8)
- 收藏
- 关注
转载 利用百度AI进行语音朗读和识别(python)
from aip import AipSpeech import os from tkinter import * #TK可视化 import threading app=Tk() app.title('语音播报V1.0') app.geometry('600x700') v1 = StringVar() text1 = Text(app,width=50,hei...
2019-08-09 17:27:00
1098
转载 调用百度AI进行手势识别(Python)
import os import cv2 from aip import AipBodyAnalysis from threading import Thread import base64 """ 你的 APPID AK SK """ APP_ID = '**************' API_KEY = '**************' SECRET_KEY ...
2019-08-07 19:27:00
1656
转载 调用百度AI进行图片文字识别(Python)
import os from aip import AipOcr #pip install baidu-aip """ 你的 APPID AK SK 百度AI创建应用获取 """ APP_ID = '************' API_KEY = '************' SECRET_KEY = '************' ...
2019-08-07 19:06:00
639
转载 python获取文件夹下的图片并重命名
import os file = os.listdir('F:/python/') for i in file: if (i.endswith('.jpg')): os.rename(i,'1.png') print(i) os.rename(old,new)如果存在new则会报错。 转载于:https://www.cnbl...
2019-08-07 19:02:00
929
转载 python3.7反编译生成的.exe(无加壳)
移步至优快云博客: https://blog.youkuaiyun.com/qq_44198436/article/details/97314626 转载于:https://www.cnblogs.com/liubingzhe/p/11314730.html
2019-08-07 13:25:00
966
转载 python字典嵌套列表取值
dict={'log_id': 5891599090191187877, 'result_num': 1, 'result': [{'probability': 0.9882395267486572, 'top': 205, 'height': 216, 'classname': 'Face', 'width': 191, 'left': 210}]} 访问dict的值: ...
2019-08-07 13:23:00
1842
转载 python爬取笔趣阁小说(TK可视化)
1 import requests 2 from lxml import etree 3 from pyquery import PyQuery as pq 4 import re 5 import time 6 from datetime import datetime 7 from tkinter import * 8 import...
2019-08-07 13:17:00
990
转载 python:爬虫练习爬取小说(初学)
1 import requests 2 from pyquery import PyQuery as pq 3 4 def get_content(a): 5 response=requests.get(a) 6 #print(str(response)) 7 response.encoding = 'gbk' 8 ...
2019-07-29 10:55:00
262
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人