GPFCZ “学以致用”是技术发展的永恒归宿

pyinstaller打包携带附件datas(*.fpec) for pyinstaller spec

比如现在我们想要打包一个py应用程序成为exe但是我们又有一些config.txt文件想要同时生成我们可以先执行pyinstaller -Fw test.py这时会生成一个test.spec的文件我们只需要在datas里面添加我们需要的文件就行了,之后打开exe文件我们就会在C:\Users\Bru

guopengfa guopengfa 发布于 2021-11-09

记录那些python import包名和pip install 包名不一致的一些包

控制安卓手机包adb:pip install pure-python-adbimport ppadb

guopengfa guopengfa 发布于 2021-09-14

matplotlib笔记

from matplotlib import pyplot as pltfig, axs = plt.subplots(2) # 一个画布有两个子图file_name = 'title'fig.suptitle(file_name) # 设置子图标题axs[0].plot(xs=list_x,

guopengfa guopengfa 发布于 2021-08-13

退出线程

import timefrom threading import Threadimport inspectimport ctypesdef te1(): while True: print('te1') time.sleep(1)def _async_raise(t

guopengfa guopengfa 发布于 2021-08-02

python打包成exe神器--pipenv

#安装pipenvpip install pipenv#建立虚拟环境pipenv install#进入虚拟环境(上一步可省略,因为没有虚拟环境的话会自动建立一个)pipenv shell#安装模块pip install requests pyquery pysimplegui fake_userag

guopengfa guopengfa 发布于 2021-07-22