Develop #1

Merged
dengrb1 merged 16 commits from develop into main 2023-08-28 03:02:35 +00:00
2 changed files with 3 additions and 1 deletions
Showing only changes of commit aa1b9a1182 - Show all commits

View File

@@ -61,6 +61,7 @@ def fh():
# Button # Button
bt_fh = Button(frame, text='pydantic删除', command=fh)
bt_r = Button(frame, text='requests删除', command=Requests) bt_r = Button(frame, text='requests删除', command=Requests)
bt_d = Button(frame, text='django删除', command=django) bt_d = Button(frame, text='django删除', command=django)
bt_fastapi = Button(frame, text='fastAPI删除', command=fastAPI) bt_fastapi = Button(frame, text='fastAPI删除', command=fastAPI)

View File

@@ -60,13 +60,14 @@ def fh():
# Button # Button
bt_fh = Button(frame, text='返回', command=fh)
bt_d = Button(frame, text='django安装', command=django) bt_d = Button(frame, text='django安装', command=django)
bt_r = Button(frame, text='Requests安装', command=Requests) bt_r = Button(frame, text='Requests安装', command=Requests)
bt_fastapi = Button(frame, text='fastAPI删除', command=fastAPI) bt_fastapi = Button(frame, text='fastAPI删除', command=fastAPI)
bt_sanic = Button(frame, text='sanic删除', command=sanic) bt_sanic = Button(frame, text='sanic删除', command=sanic)
bt_nameko = Button(frame, text='namekos删除', command=nameko) bt_nameko = Button(frame, text='namekos删除', command=nameko)
bt_pydantic = Button(frame, text='pydantic删除', command=pydantic) bt_pydantic = Button(frame, text='pydantic删除', command=pydantic)
bt_fh = Button(frame, text='返回', command=fh)
# pack # pack
Label(root, text='web类安装').pack() Label(root, text='web类安装').pack()