python
-
采集数据天花板,无代码采集数据,可当脚本操作
易采集EasySpider:无代码可视化爬虫/浏览器自动化测试软件
-
python代码打包加密成exe
使用库PyInstaller安装pipinstallPyInstaller更新pipinstall--upgradePyInstaller使用pyInstaller-iyour_py_script加密后的文件在根目录下面的dist下,dist下只会存在exe文件,如项目还有其他文件或文件夹请复制黏贴到dist目录下
-
python 对接openai chatgpt3.5
安装openai库pipinstallopenai应用代码fromopenaiimportOpenAIclient=OpenAI(api_key=key)completion=client.chat.completions.create(model=gpt-3.5-turbo,messages=[...
-
PyDeepLX免费翻译
安装pipinstallpyDeepLXfromPyDeepLXimportPyDeepLXprint(PyDeepLX.translate(不要停,targetLang=JA))//日文print(PyDeepLX.translate(不要停))//英文print(PyDeepLX.translate(hello,targetL...
-
Scrapy爬虫
安装pipinstallscrapy创建项目scrapystartproject项目文件夹创建蜘蛛文件scrapygenspidertaobaowww.taobao.com运行蜘蛛文件-o输出为文件需带,不带在日志打印scrapycrawl蜘蛛文件名-o保存的文件settings设置USER_AGENT="Mozilla/5.0(WindowsNT...
-
python django
表单提交需要有一个token{%csrf_token%}创建项目创建项目时候settings删除templates里面的dirs对应的内容创建模块注册模块使用现有数据库生成models.pypythonmanage.pyinspectdb>models.py创建目录模块下面:static静态文件夹templates模板文件夹urls路由文件引入模块下面...
-
python redis
安装pipinstallredis引入importredis连接redis数据库host地址port端口db定义数据库r=redis.Redis(host='192.168.3.19',port=36379,db=100)获取数据r.get("GPU-1")获取多个数据r.mget("GPU-1","GPU-...
-
selenium 自动测试,爬虫
下载浏览器驱动,放到项目目录只需要对应大版本就可以了CNPMBinariesMirror(npmmirror.com)ChromeDriverLatestReleasesVersionsDownloads-ChromeforTestingavailability(getwebdriver.com)安装库pipinstallselenium使用fromsele...