import wx
import
import sqlite3
#保存路径
row0 = [“日期”,“张三”,“李四”,“王五”]
data0 = [“001”, “小明”, “1班”, “软件工程”]
data1 = [“006”, “小莉”, “3班”, “计算机科学与技术”]
datalist = [data0,data1]
本地数据库
class WorkDb:
def init(self, work_db):
= work_db
def connect(self):
return ()
class DataTable():
def init(self):
.init(self)
work_db_file = ""
= WorkDb(work_db_file)
= row0
= datalist
self.rows_count = len(datalist)
self.cols_count = len(data0)
= ()
((255,255,255))
((10, , , ))
= ()
((200,200,250))
((10, , , ))
def GetNumberRows(self):
return len(datalist)
def GetNumberCols(self):
return self.cols_count
def IsEmptyCell(self, row, col):
return [row][col] is not None
def GetValue(self, row, col):
value = [row][col]
if value is not None:
return value
else:
return ''
def GetAttr(self, row, col, kind):
attr = [, ][row % 2]
()
return attr
def GetColLabelValue(self, col):
return [col]
class DMFrame():
def init(self,xx):
.__init__(self, None, title="", size=(640, 480))
= ()
self.key_str = (self, -1,value=xx)
self.btn_srch = (self, -1, "查询")
# self.btn_srch.BackgroundColour = "blue"
= ()
(self.key_str, 0, flag=, border=10)
(self.btn_srch, 0, flag=, border=10)
# self.btn_srch.Bind(wx.EVT_BUTTON, , self.btn_srch)
= (self)
= DataTable()
(, True)
(, 0, , border=5)
(, 1, |, border=5)
()
("编辑信息!")
#数据库的初始化
def init_db(dbpath):
initsql = “drop table if exists studentTable” #判断studentTable表是否存在,如果存在,则删除
createsql = '''
create table if not exists studentTable
(
id integer primary key autoincrement ,
studentId varchar ,
studentName varchar ,
studentGrade varchar ,
studentClass varchar
)
''' #新建studentTable数据表
conn = (dbpath) #打开或创建 连接数据库文件
cursor = () #获取游标
(initsql) # 执行SQL语句
(createsql) #执行SQL语句
() #提交数据库操作
() #关闭数据库连接
dbpath = “”
init_db(dbpath)
conn = (dbpath) # 连接数据库文件
cur = () # 获取游标
(“SELECT date(‘now’)”)
print(()[0])
xx = str(()[0])
print(type(xx))
for data in datalist:
(“insert into studentTable(studentId, studentName, studentGrade, studentClass )values(?, ?, ?, ?)”,
(data[0], data[1], data[2], data[3])) # 执行SQL语句
() #提交数据库操作
()
() #关闭数据库连接
app = ()
商品管理
df = DMFrame(goods())
联系人管理
df = DMFrame(xx)
()
()
import wx
import sys
import base64
import wx
from io import BytesIO
with open(“”, ‘rb’) as f:
base64_data = base64.b64encode(())
pic_data = base64_data.decode()
#!/usr/bin/env python
-- encoding:utf-8 --
import wx
class PyEmbeddedImage(object):
def init(self, data, isBase64=True):
= data
self.isBase64 = isBase64
def GetBitmap(self):
return (())
def GetData(self):
data =
if self.isBase64:
data = base64.b64decode()
return data
def GetIcon(self):
icon = ()
(())
return icon
def GetImage(self):
stream = BytesIO(())
return (stream)
继承Frame
class ListControl():
def __init__(self, *args, **kwargs):
super(ListControl, self).__init__(*args, **kwargs)
= PyEmbeddedImage(pic_data).GetBitmap()
# 初始化窗口UI
self.init_ui()
def init_ui(self):
# 面板
panel = (self)
# = [("1949", "四月", "119")]
= [(, ,)]
# 多项列表
list_ctrl = (panel, id=wx.ID_ANY, size=(900, 500),style=wx.LC_ICON)
# list_ctrl = (panel, id=wx.ID_ANY, size=(900, 500),style=wx.LC_REPORT)
list_ctrl.InsertColumn(0, "年份", width=100)
list_ctrl.InsertColumn(1, "月份", width=100)
list_ctrl.InsertColumn(2, "飞行次数", wx.LIST_FORMAT_RIGHT, 120)
for i in :
index = list_ctrl.InsertItem(, i[0])
list_ctrl.SetItem(index, 1, i[1])
list_ctrl.SetItem(index, 2, i[2])
(wx.EVT_LIST_ITEM_SELECTED, self.select_item, list_ctrl)
(900, 500)
("列表的应用")
()
(True)
def select_item(self, e):
list_ctrl = ()
index = ()
# 选中所在行的数据
col1 = list_ctrl.GetItemText(index, 0)
col2 = list_ctrl.GetItemText(index, 1)
col3 = list_ctrl.GetItemText(index, 2)
print(col1, col2, col3)
def main():
app = (False)
ListControl(None)
()
# app = ()
# app = (False)
# # frame = (None, -1, size=(300,300))
# my_panel = ListControl(None)
# my_panel.Show()
# ()
if name == “main”:
main()
from import models
Create your models here.
class Notices():
id = (‘记录编号’,primary_key = True)
title = (‘通知标题’,max_length=32,null=False)
detail = (‘通知详情’,max_length=125,null=False)
createTime = (‘通知时间’,db_column=‘create_time’,max_length= 19)
class Meta:
db_table = ‘notice’
class Statistics():
id = (‘记录编号’,primary_key = True)
creatTime = (‘统计时间’,db_column=‘create_time’,max_length=10)
confirm = (‘累计确诊’,null=False)
heal = (‘累计治愈’,null=False)
dead = (‘累计死亡’,null= False)
nowconfirm = (‘当前确诊’,db_column=‘now_confirm’,null=False)
class Meta:
db_table = ‘statistics’
class Users():
id = (‘记录编号’,primary_key = True)
userName = (‘用户账号’,db_column=‘user_name’,max_length=32,null= False)
passWord = (‘用户密码’,max_length=32,null=False)
name = (‘用户姓名’,max_length=20,null=False)
gender = (‘用户性别’,max_length=4,null=False)
age = (‘用户年龄’,null=False)
phone = (‘联系电话’,max_length=4,null=False)
address = (‘联系地址’,max_length=4,null=False)
type = (‘用户身份’,null=False)
class Meta:
db_table = ‘users’
class Checklogs():
id = (‘记录编号’,primary_key = True)
createTime = (‘检查时间’,db_column=‘create_time’,max_length=19)
loc = (‘检查地点’,max_length=64,null=False)
resl = (‘检查结果’,max_length=2,null=False)
detail = (‘检查详情’,max_length=125,null=False)
user = (Users,on_delete=,db_column=‘user_id’)
class Meta:
db_table = ‘check_logs’
class abnormityLogs():
id = (‘记录编号’,primary_key = True)
createTime = (‘登记时间’,db_column= ‘create_time’,max_length=19)
detail = (‘检查详情’,max_length= 125, null= False)
user = (Users,on_delete=,db_column=‘user_id’)
class Meta:
db_table = ‘abnorimity_logs’
class VaccinateLogs():
id = (‘记录编号’,primary_key = True)
name = (‘接种人员姓名’,max_length=20,null=False)
card = (‘身份证号’,max_length=18,null=False)
phone = (‘联系电话’,max_length=11,null=False)
address = (‘联系地址’,max_length=64,null=False)
detail = (‘检查详情’,max_length=125,null=False)
vaccinateNo = (‘接种次数’,db_column=‘vaccinate_no’,max_length=2,null=False)
vaccinateTime = (‘接种时间’,db_column=‘vaccinate_time’,max_length=10,null=False)
import wx
import math
import time
import pyaudio
import wave
import
from multiprocessing import Process
import pyperclip
import pyautogui
import win32gui
import re
import win32con
import time
import webbrowser as web
from selenium import webdriver
class MyCalculator():
def init(self):
super().init(parent=None, title=“”, size=(835, 1020),
style=wx.DEFAULT_FRAME_STYLE^(wx.MAXIMIZE_BOX))
()
panel = (parent=self)
(‘grey’)
()
font = (16, , , , underline=False)
= (5,5)
= ""
= 0
= 0
line = (panel)
(line, pos=(0, 0), span=(1, 15), flag= | | )
text = (panel, -1, label="发帖定时控制", style=wx.ALIGN_LEFT)
font1 = (12, , , )
("white")
("black")
font2 = (18, , , )
(font2)
(text, pos=(1, 0), span=(1, 15))
line = (panel)
(line, pos=(2, 0), span=(1, 15), flag= | | )
t = ("%H:%M:%S", ()) # 设置初始值
t = "当前时间:" + t
self.text1 = (panel, -1, t)
font = (22, , wx.FONTSTYLE_NORMAL, , faceName="黑体")
self.(font)
self.("white")
= (self) # 创建一个计时器对象
(wx.EVT_TIMER, , ) # 绑定计时器事件
(1000) # 计时器计时1秒
(self.text1, pos=(3, 0), span=(1, 2))
textclk = (panel, -1,label = "发帖时间1:", style=wx.ALIGN_LEFT | wx.ALIGN_CENTRE |wx.ALIGN_CENTRE_VERTICAL)
font = (22, , wx.FONTSTYLE_NORMAL, , faceName="黑体")
(font)
("white")
(textclk, pos=(4, 0),flag= | | , span=(1, 1))
self.text_alarm_p1 = (panel)
# self.text_alarm_p = (panel, pos=(0, 0), style=wx.TE_READONLY)
self.text_alarm_p1.SetFont(font) # 文本框里面格式
self.text_alarm_p1.BackgroundColour = 'white'
(self.text_alarm_p1, pos=(4,1),span=(1,3),flag= | | , border=5)
textclk = (panel, -1,label = "(模块1)", style=wx.ALIGN_LEFT | wx.ALIGN_CENTRE |wx.ALIGN_CENTRE_VERTICAL)
font = (22, , wx.FONTSTYLE_NORMAL, , faceName="黑体")
(font)
("white")
(textclk, pos=(4, 4),flag= | | , span=(1, 1))
self.time_button = (panel, wx.ID_ANY, "RUN")
font2 = (18, , , )
self.time_button.SetFont(font2)
(self.time_button,pos=(4, 5) , span=(3,3), flag= | | , border=5)
self.time_button.Bind(wx.EVT_BUTTON, )
textclk = (panel, -1,label = "发帖时间2:", style=wx.ALIGN_LEFT | wx.ALIGN_CENTRE |wx.ALIGN_CENTRE_VERTICAL)
font = (22, , wx.FONTSTYLE_NORMAL, , faceName="黑体")
(font)
("white")
(textclk, pos=(5, 0),flag= | | , span=(1, 1))
self.text_alarm_p = (panel, pos=(0, 0))
self.text_alarm_p.SetFont(font) # 文本框里面格式
self.text_alarm_p.BackgroundColour = 'white'
(self.text_alarm_p, pos=(5,1),span=(1,3),flag= | | , border=5)
textclk = (panel, -1,label = "(模块2)", style=wx.ALIGN_LEFT | wx.ALIGN_CENTRE |wx.ALIGN_CENTRE_VERTICAL)
font = (22, , wx.FONTSTYLE_NORMAL, , faceName="黑体")
(font)
("white")
(textclk, pos=(5, 4),flag= | | , span=(1, 1))
textclk = (panel, -1,label = "发帖时间3:", style=wx.ALIGN_LEFT | wx.ALIGN_CENTRE |wx.ALIGN_CENTRE_VERTICAL)
font = (22, , wx.FONTSTYLE_NORMAL, , faceName="黑体")
(font)
("white")
(textclk, pos=(6, 0),flag= | | , span=(1, 1))
self.text_alarm_p = (panel, pos=(0, 0))
self.text_alarm_p.SetFont(font) # 文本框里面格式
self.text_alarm_p.BackgroundColour = 'white'
(self.text_alarm_p, pos=(6,1),span=(1,3),flag= | | , border=5)
textclk = (panel, -1,label = "(模块3)", style=wx.ALIGN_LEFT | wx.ALIGN_CENTRE |wx.ALIGN_CENTRE_VERTICAL)
font = (22, , wx.FONTSTYLE_NORMAL, , faceName="黑体")
(font)
("white")
(textclk, pos=(6, 4),flag= | | , span=(1, 1))
line = (panel)
(line, pos=(7, 0), span=(1, 15), flag= | | )
text = (panel, -1,label = "发帖信息输入", style=wx.ALIGN_LEFT)
font1 = (12, , , )
("white")
("black")
font2 = (18, , , )
(font2)
(text, pos=(8, 0), span=(1, 15))
line = (panel)
(line, pos=(9, 0), span=(1, 15), flag= | | )
textclk = (panel, -1,label = "发帖标题:", style=wx.ALIGN_LEFT | wx.ALIGN_CENTRE |wx.ALIGN_CENTRE_VERTICAL)
font = (22, , wx.FONTSTYLE_NORMAL, , faceName="黑体")
(font)
("white")
(textclk, pos=(10, 0),flag= | | , span=(1, 1))
tc4 = (panel, style=wx.TE_MULTILINE)
(tc4, pos=(11, 0), span=(4, 14), flag=, border=5)
textclk = (panel, -1,label = "发帖正文:", style=wx.ALIGN_LEFT | wx.ALIGN_CENTRE |wx.ALIGN_CENTRE_VERTICAL)
font = (22, , wx.FONTSTYLE_NORMAL, , faceName="黑体")
(font)
("white")
(textclk, pos=(15, 0),flag= | | , span=(1, 1))
self.tc4 = (panel, style=wx.TE_MULTILINE)
(self.tc4, pos=(16, 0), span=(18, 14), flag= | , border=5)
# = (panel,fileMode = wx.FD_OPEN,labelText="音乐:",size = (280,-1), buttonText= "Browse2",initialValue = r"E:\Doctor_Chen\", fileMask="*.wav",labelWidth = 10)
# ("white")
#
#
# self.play_button = (panel, wx.ID_ANY, "播放")
#
# (, pos=(16, 0), span=(1, 3), flag= | | , border=5)
# (self.play_button,pos=(16, 3) , flag= | | , border=5)
#
# self.play_button.Bind(wx.EVT_BUTTON, )
#
#
# self.play_button = (panel, wx.ID_ANY, "暂停")
# (self.play_button,pos=(16, 4) , flag= | | , border=5)
#
# = ["单曲循环", "随机播放","循环播放"]
# xxx = (panel, -1, "单曲循环", choices=)
# (xxx, pos=(16, 5), span=(1, 1), flag= | | , border=5)
#
# = (panel,fileMode = wx.FD_OPEN,labelText="保存:",size = (280,-1), buttonText= "Browse2",initialValue = r"E:\Doctor_Chen\", fileMask="*.wav",labelWidth = 10)
# ("white")
# (, pos=(17, 0), span=(1, 3), flag= | | , border=5)
#
# self.play_button = (panel, wx.ID_ANY, "录音")
# (self.play_button,pos=(17, 3) , flag= | | , border=5)
#
#
# self.play_button = (panel, wx.ID_ANY, "暂停")
# (self.play_button,pos=(17, 4) , flag= | | , border=5)
#
#
# line = (panel)
# (line, pos=(18, 0), span=(1, 15), flag= | | )
()
# def time_lock(self,event):
# filename = self.text_alarm_p1.GetValue()
# self.text_alarm_p1.SetLabel("111")
# self.text_alarm_p1.SetBackgroundStyle(style=wx.TE_READONLY)
def Time(self, event):
t1 = "当前时间: " + ("%H:%M:%S", ())
self.(t1)
for i in range(0, 24):
temp = "{:0>2d}:00:00".format(i)
# if t == temp: # 判断是否为整点
if t1 == "当前时间: " + self.text_alarm_p.GetValue():
# filename = "E:\Doctor_Chen\00. YT\\" + "{:0>2d}.wav".format(i) # 找到对应的wav文件路径
filename = ()
(filename) # 播放声音
break
def run(self, event):
t1 = ("%H:%M:%S", ())
self.(t1)
# for i in range(0, 24):
# temp = "{:0>2d}:00:00".format(i)
# if t == temp: # 判断是否为整点
# if t1 == self.text_alarm_p1.GetValue():
content = self.()
list = ["/", "/"]
(list[0])
# driver = (executable_path=r"D:\tools\python38\Scripts\")
# driver.maximize_window()
# (list[1])
(1)
# ().window().maximize()
# driver.execute_script("='80%'")
# (2)
# ()
# Window = windows_api()
# Window.find_window_wildcard(".*淘宝.*")
# Window.set_foreground()
(0.5)
print(())
# driver.execute_script("='100%'")
#
(679, 348)
(content)
(679, 348)
("ctrl", "V")
(1)
("enter")
def Sound(self, filename):
f = (filename, 'rb') # 加载音频文件(wav)
pms = () # 获取音频的属性参数
nchannels, sampwidth, framerate, nframes = pms[:4] # 单独提取出各参数的值,并加以定义
p = () # 创建一个播放器
s = (format=p.get_format_from_width(sampwidth), channels=nchannels, rate=framerate,
output=True) # 将音频转换为音频流
while True:
data = (1024) # 按照1024大小的块,读取音频数据,得到一系列二进制编码
if data == b'':
break
(data) # 开始按照音频的参数,播放音频
()
()
# def alear_time(self):
# for i in range(0, 24):
# temp = "{:0>2d}:00:00".format(i)
# # if t == temp: # 判断是否为整点
# if == "当前时间: " + str(self.text_alarm_p.GetValue()):
# # filename = "E:\Doctor_Chen\00. YT\\" + "{:0>2d}.wav".format(i) # 找到对应的wav文件路径
# filename = ()
# (filename) # 播放声音
# break
def onPlay(self,event):
self.text_alarm_p = (, pos=(0, 0), style=wx.TE_READONLY)
class App():
def OnInit(self):
= MyCalculator()
(wx.EVT_CLOSE, , )
()
return True
# def OnOtherColor(self, event):
# '''
# 使用颜色对话框
# '''
# dlg = (self)
# ().SetChooseFull(True) # 创建颜色对象数据
# if () == wx.ID_OK:
# (().GetColour()) # 根据选择设置画笔颜色
# ()
def OnClose(self, event):
dlg = (None, "是否要关闭窗口?", "请确认", wx.YES_NO | wx.ICON_QUESTION)
retCode = ()
if (retCode == wx.ID_YES):
()
else:
pass
if name == ‘main’:
app = App()
# job = Job(app)
# ()
()
import wx
import math
import time
import pyaudio
import wave
import
from multiprocessing import Process
import threading
class Job():
def __init__(self, *args, **kwargs):
super(Job, self).__init__(*args, **kwargs)
self.__flag = () # 用于暂停线程的标识
self.__flag.set() # 设置为True
self.__running = () # 用于停止线程的标识
self.__running.set() # 将running设置为True
def run(self):
while self.__running.isSet():
self.__flag.wait() # 为True时立即返回, 为False时阻塞直到内部的标识位为True后返回
print(())
(1)
# print("sleep 1s")
def pause(self):
self.__flag.clear() # 设置为False, 让线程阻塞
print("pause")
def resume(self):
self.__flag.set() # 设置为True, 让线程停止阻塞
print("resume")
def stop(self):
# self.__flag.set() # 将线程从暂停状态恢复, 如果已经暂停的话(要是停止的话我就直接让他停止了,干嘛还要执行这一句语句啊,把这句注释了之后就没有滞后现象了。)
self.__running.clear() # 设置为False
print("停止!")
class MyCalculator():
def init(self):
super().init(parent=None, title=“多功能计算器”, size=(835, 1020),
style=wx.DEFAULT_FRAME_STYLE)
()
panel = (parent=self)
(‘grey’)
()
font = (16, , , , underline=False)
boxsize = (5,5)
= ""
= 0
= 0
text = (panel, -1,label = "常规计算", style=wx.ALIGN_LEFT)
font1 = (12, , , )
txt = "常规计算"
("white")
("black")
font2 = (18, , , )
(font2)
(txt)
(text,pos=(0,0),span=(1,15))
= (panel, pos=(0, 0))
(font) # 文本框里面格式
= 'red'
(, pos=(1,0),span=(1,15),flag= | )
gridsizer = (cols=5, rows=6, vgap=1, hgap=1)
for x in range(10):
exec("%s = (panel,label = '%s')" % (x, x))
list = ['^', '.', '=', '÷', '×', '-', '+', 'Ans', 'AC', 'DEL', 'sin', 'cos', 'tan', '(', ')', 'π', 'log', 'ln',
'sqrt', 'mod']
for x in range(10, 30):
exec("%s = (panel,label = '%s')" % (x, list[x - 10]))
for x in range(30):
exec("%(font)" % (x))
for i in range(0, 30):
exec("% = 'pale green'" % i)
self. = "red"
list = []
for i in range(0,30):
exec("((%s, 0, ))"%i)
print(list)
(list)
(gridsizer,pos=(2, 0), span=(1, 15), flag=|||, border=1)
line = (panel)
(line,pos=(3,0),span=(1,15),flag=||)
text = (panel, -1,label = "常规计算", style=wx.ALIGN_LEFT)
font1 = (12, , , )
txt = "程序员计算"
("white")
("black")
font2 = (18, , , )
(font2)
(txt)
(text,pos=(4,0),span=(1,15))
#
# text2 = (panel, label="程序员计算",style = 5, name = "1")
# (text2, pos=(3, 0), flag=, border=10)
line = (panel)
(line,pos=(5,0),span=(1,15),flag=||)
= (panel, pos=(0, 0))
(font) # 文本框里面格式
= 'red'
(, pos=(6,0),span=(1,15),flag= | )
gridsizer = (cols=16, rows=2, vgap=1, hgap=1)
# tc1 = (panel)
# (tc1, pos=(2, 1), span=(1, 3), flag= | )
#
for x in range(32):
exec("%s = (panel,size=(5, 30))" % (x))
for x in range(32):
exec("%(font)" % (x))
for i in range(32):
exec("% = 'white'" % i)
list = []
for i in range(0,32):
exec("((%s, 0, ))"%i)
print(list)
(list)
(gridsizer,pos=(7, 0), span=(1, 15), flag=|||, border=1)
text = (panel, label='HEX:')
("white")
# ("black")
font2 = (18, , , )
(font2)
(text, pos=(8, 0), flag= | | , border=5)
tc = (panel)
(tc, pos=(8, 1), span=(1, 4), flag= | | , border=5)
buttonOK = (panel, label='左移:')
# ("white")
# ("black")
font2 = (18, , , )
(font2)
(buttonOK, pos=(8, 7), flag= | , border=5)
tc = (panel)
(tc, pos=(8, 9), span=(1, 5), flag= | | , border=5)
text = (panel, label='DEC:')
("white")
# ("black")
font2 = (18, , , )
(font2)
(text, pos=(9, 0), flag= | | , border=5)
tc = (panel)
(tc, pos=(9, 1), span=(1, 4), flag= | | , border=5)
buttonOK = (panel, label='右移:')
# ("white")
# ("black")
font2 = (18, , , )
(font2)
(buttonOK, pos=(9, 7), flag= | , border=5)
tc = (panel)
(tc, pos=(9, 9), span=(1, 5), flag= | | , border=5)
text = (panel, label='Yield[L:H]')
("white")
# ("black")
font2 = (18, , , )
(font2)
(text, pos=(10, 0), flag= | | , border=5)
tc = (panel)
(tc, pos=(10, 1), span=(1, 1), flag= | | , border=5)
text = (panel, label=' :')
("white")
# ("black")
font2 = (18, , , )
(font2)
(text, pos=(10, 2), flag= | | , border=5)
tc = (panel)
(tc, pos=(10, 3), span=(1, 2), flag= | | , border=5)
buttonOK = (panel, label='计算')
# ("white")
# ("black")
font2 = (18, , , )
(font2)
(buttonOK, pos=(10, 7), flag= | , border=5)
tc = (panel)
(tc, pos=(10, 9), span=(1, 5), flag= | | , border=5)
line = (panel)
(line, pos=(11, 0), span=(1, 15), flag= | | )
text = (panel, -1,label = "音乐和闹钟", style=wx.ALIGN_LEFT)
font1 = (12, , , )
("white")
("black")
font2 = (18, , , )
(font2)
(text, pos=(12, 0), span=(1, 15))
line = (panel)
(line, pos=(13, 0), span=(1, 15), flag= | | )
t = ("%H:%M:%S", ()) # 设置初始值
t = "当前时间:" + t
self.text1 = (panel, -1, t)
font = (22, , wx.FONTSTYLE_NORMAL, , faceName="黑体")
self.(font)
self.("white")
= (self) # 创建一个计时器对象
(wx.EVT_TIMER, , ) # 绑定计时器事件
(1000) # 计时器计时1秒
(self.text1, pos=(14, 0), span=(1, 2))
buttonOK = (panel, label="开始时间:")
# ("white")
# ("black")
font2 = (18, , , )
(font2)
(buttonOK, pos=(14, 2), flag= | , border=5)
self.text_alarm = (panel, pos=(0, 0))
self.text_alarm.SetFont(font) # 文本框里面格式
self.text_alarm.BackgroundColour = 'white'
(self.text_alarm, pos=(14,3),span=(1,1),flag= | | , border=5)
buttonOK = (panel, label="倒计时:")
# ("white")
# ("black")
font2 = (18, , , )
(font2)
(buttonOK, pos=(14, 4), flag= | , border=5)
self.text_alarm = (panel, pos=(0, 0))
self.text_alarm.SetFont(font) # 文本框里面格式
self.text_alarm.BackgroundColour = 'white'
(self.text_alarm, pos=(14, 5), span=(1, 1), flag= | | , border=5)
textclk = (panel, -1,label = "闹钟时间:", style=wx.ALIGN_LEFT | wx.ALIGN_CENTRE |wx.ALIGN_CENTRE_VERTICAL)
font = (22, , wx.FONTSTYLE_NORMAL, , faceName="黑体")
(font)
("white")
(textclk, pos=(15, 0),flag= | | , span=(1, 1))
self.text_alarm_p = (panel, pos=(0, 0))
self.text_alarm_p.SetFont(font) # 文本框里面格式
self.text_alarm_p.BackgroundColour = 'white'
(self.text_alarm_p, pos=(15,1),span=(1,1),flag= | | , border=5)
buttonOK = (panel, label="结束时间:")
# ("white")
# ("black")
font2 = (18, , , )
(font2)
(buttonOK, pos=(15, 2), flag= | , border=5)
self.text_alarm = (panel, pos=(0, 0))
self.text_alarm.SetFont(font) # 文本框里面格式
self.text_alarm.BackgroundColour = 'white'
(self.text_alarm, pos=(15,3),span=(1,1),flag= | | , border=5)
textclk = (panel, -1,label = " 用时:", style=wx.ALIGN_LEFT | wx.ALIGN_CENTRE |wx.ALIGN_CENTRE_VERTICAL)
font = (22, , wx.FONTSTYLE_NORMAL, , faceName="黑体")
(font)
("white")
(textclk, pos=(15, 4),flag= | | , span=(1, 1))
self.text_alarm = (panel, pos=(0, 0))
self.text_alarm.SetFont(font) # 文本框里面格式
self.text_alarm.BackgroundColour = 'white'
(self.text_alarm, pos=(15, 5), span=(1, 1), flag= | | , border=5)
= (panel,fileMode = wx.FD_OPEN,labelText="音乐:",size = (280,-1), buttonText= "Browse2",initialValue = r"E:\Doctor_Chen\", fileMask="*.wav",labelWidth = 10)
("white")
self.play_button = (panel, wx.ID_ANY, "播放")
(, pos=(16, 0), span=(1, 3), flag= | | , border=5)
(self.play_button,pos=(16, 3) , flag= | | , border=5)
self.play_button.Bind(wx.EVT_BUTTON, )
self.play_button = (panel, wx.ID_ANY, "暂停")
(self.play_button,pos=(16, 4) , flag= | | , border=5)
= ["单曲循环", "随机播放","循环播放"]
xxx = (panel, -1, "单曲循环", choices=)
(xxx, pos=(16, 5), span=(1, 1), flag= | | , border=5)
= (panel,fileMode = wx.FD_OPEN,labelText="保存:",size = (280,-1), buttonText= "Browse2",initialValue = r"E:\Doctor_Chen\", fileMask="*.wav",labelWidth = 10)
("white")
(, pos=(17, 0), span=(1, 3), flag= | | , border=5)
self.play_button = (panel, wx.ID_ANY, "录音")
(self.play_button,pos=(17, 3) , flag= | | , border=5)
self.play_button = (panel, wx.ID_ANY, "暂停")
(self.play_button,pos=(17, 4) , flag= | | , border=5)
line = (panel)
(line, pos=(18, 0), span=(1, 15), flag= | | )
text = (panel, -1, label="陈依婷", style=wx.ALIGN_LEFT)
font1 = (12, , , )
("white")
("black")
font2 = (18, , , )
(font2)
(text, pos=(19, 0), span=(1, 15))
line = (panel)
(line, pos=(20, 0), span=(1, 15), flag= | | )
image1 = ("", wx.BITMAP_TYPE_JPEG).Rescale(620, 120).ConvertToBitmap()
bmp1 = (panel, -1, image1) # 转化为
(bmp1, pos=(21, 0),span=(12, 15), flag=, border=5)
# # 向panel中添加图片
# image = ("", wx.BITMAP_TYPE_JPEG).ConvertToBitmap()
# (panel, -1, bitmap=image, pos=(1, 825), size=(400, 200))
# img = ("",wx.BITMAP_TYPE_JPEG).ConvertToBitmap()
# = (self, wx.ID_ANY, (img))
# # = (self, wx.ID_ANY, (img))
# (, pos=(21, 0), proportion=0, flag=, border=10)
# img = (image, wx.BITMAP_TYPE_ANY)
# = (self, wx.ID_ANY, (img))
#
# sizer = ()
# (item=, proportion=0, flag=, border=10)
# ('green')
# (sizer)
(boxsize)
()
def Time(self, event):
t1 = "当前时间: " + ("%H:%M:%S", ())
self.(t1)
for i in range(0, 24):
temp = "{:0>2d}:00:00".format(i)
# if t == temp: # 判断是否为整点
if t1 == "当前时间: " + self.text_alarm_p.GetValue():
# filename = "E:\Doctor_Chen\00. YT\\" + "{:0>2d}.wav".format(i) # 找到对应的wav文件路径
filename = ()
(filename) # 播放声音
break
def Sound(self, filename):
f = (filename, 'rb') # 加载音频文件(wav)
pms = () # 获取音频的属性参数
nchannels, sampwidth, framerate, nframes = pms[:4] # 单独提取出各参数的值,并加以定义
p = () # 创建一个播放器
s = (format=p.get_format_from_width(sampwidth), channels=nchannels, rate=framerate,
output=True) # 将音频转换为音频流
while True:
data = (1024) # 按照1024大小的块,读取音频数据,得到一系列二进制编码
if data == b'':
break
(data) # 开始按照音频的参数,播放音频
()
()
# def alear_time(self):
# for i in range(0, 24):
# temp = "{:0>2d}:00:00".format(i)
# # if t == temp: # 判断是否为整点
# if == "当前时间: " + str(self.text_alarm_p.GetValue()):
# # filename = "E:\Doctor_Chen\00. YT\\" + "{:0>2d}.wav".format(i) # 找到对应的wav文件路径
# filename = ()
# (filename) # 播放声音
# break
def onPlay(self,event):
filename = ()
print(filename)
(filename) # 播放声音
class App():
def OnInit(self):
= MyCalculator()
(wx.EVT_CLOSE, , )
()
return True
# def OnOtherColor(self, event):
# '''
# 使用颜色对话框
# '''
# dlg = (self)
# ().SetChooseFull(True) # 创建颜色对象数据
# if () == wx.ID_OK:
# (().GetColour()) # 根据选择设置画笔颜色
# ()
def OnClose(self, event):
dlg = (None, "是否要关闭窗口?", "请确认", wx.YES_NO | wx.ICON_QUESTION)
retCode = ()
if (retCode == wx.ID_YES):
()
else:
pass
if name == ‘main’:
app = App()
# job = Job(app)
# ()
()
import pyperclip
import pyautogui
import win32gui
import re
import win32con
import time
import webbrowser as web
from selenium import webdriver
class windows_api:
def init(self):
self._handle = None
def _windows_enum_callback(self,hwnd,wildcard):
# ()
if (wildcard,str((hwnd))) != None:
self._handle = hwnd
def find_window_wildcard(self,wildcard):
self._handle = None
(self._windows_enum_callback,wildcard)
def set_foreground(self):
done = False
if self._handle > 0:
(self._handle)
(self._handle,win32con.WM_SYSCOMMAND,win32con.SC_MAXIMIZE,0)
done = True
return done
if name == “main”:
# Point(x=694, y=346) #百度框绝对坐标
# Point(x=800, y=195) #taobao
content = “篮球”
list = [“/”,“/”]
(list[0])
# driver = (executable_path=r"D:\tools\python38\Scripts\")
# driver.maximize_window()
# (list[1])
(1)
# ().window().maximize()
# driver.execute_script("='80%'")
# (2)
# ()
# Window = windows_api()
# Window.find_window_wildcard(".*淘宝.*")
# Window.set_foreground()
(0.5)
print(())
# driver.execute_script("='100%'")
#
(679,348)
(content)
(679,348)
("ctrl","V")
(1)
("enter")
# (752,151)
# Point(x=1310, y=205)
-- coding: utf-8 -
import webbrowser as web
import time
import os
urllist=[
‘/’,
‘/’
]
我本地的chrome浏览器文职
chromepath = r’C:\Users\15420\AppData\Local\Google\Chrome\Application\’
# 注册浏览器对象
(‘chrome’, None, (chromepath))
# 打开浏览器
(‘chrome’).open_new_tab(‘’)
for j in range(0,6):#设置循环的总次数
i=0
while i<1 : #一次打开浏览器访问的循环次数
for url in urllist:
(url) #访问网址地址,语法 .open(url,new=0,Autorasise=True),设置 new 的值不同有不同的效果0、1、2
i=i+1
(2) #设置每次打开新页面的等待时间
else:
(5) #设置每次等待关闭浏览器的时间
('taskkill /IM ') #你设置的默认使用浏览器,其他的更换下就行
pip install Django==1.11.4 -i /simple