python

  • 采集数据天花板,无代码采集数据,可当脚本操作

    易采集EasySpider:无代码可视化爬虫/浏览器自动化测试软件

    python 2024-8-7 13:52
    91 0
  • python代码打包加密成exe

    使用库PyInstaller安装pipinstallPyInstaller更新pipinstall--upgradePyInstaller使用pyInstaller-iyour_py_script加密后的文件在根目录下面的dist下,dist下只会存在exe文件,如项目还有其他文件或文件夹请复制黏贴到dist目录下

    python 2024-4-22 09:58
    127 0
  • python 对接openai chatgpt3.5

    安装openai库pipinstallopenai应用代码fromopenaiimportOpenAIclient=OpenAI(api_key=key)completion=client.chat.completions.create(model=gpt-3.5-turbo,messages=[...

    python 2024-4-8 13:54
    161 0
  • PyDeepLX免费翻译

    安装pipinstallpyDeepLXfromPyDeepLXimportPyDeepLXprint(PyDeepLX.translate(不要停,targetLang=JA))//日文print(PyDeepLX.translate(不要停))//英文print(PyDeepLX.translate(hello,targetL...

    python 2024-4-7 10:55
    134 0
  • Scrapy爬虫

    安装pipinstallscrapy创建项目scrapystartproject项目文件夹创建蜘蛛文件scrapygenspidertaobaowww.taobao.com运行蜘蛛文件-o输出为文件需带,不带在日志打印scrapycrawl蜘蛛文件名-o保存的文件settings设置USER_AGENT="Mozilla/5.0(WindowsNT...

    python 2024-3-30 16:46
    168 0
  • python django

    表单提交需要有一个token{%csrf_token%}创建项目创建项目时候settings删除templates里面的dirs对应的内容创建模块注册模块使用现有数据库生成models.pypythonmanage.pyinspectdb>models.py创建目录模块下面:static静态文件夹templates模板文件夹urls路由文件引入模块下面...

    python 2024-3-30 16:46
    132 0
  • 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-...

    python 2024-3-30 16:44
    135 0
  • selenium 自动测试,爬虫

    下载浏览器驱动,放到项目目录只需要对应大版本就可以了CNPMBinariesMirror(npmmirror.com)ChromeDriverLatestReleasesVersionsDownloads-ChromeforTestingavailability(getwebdriver.com)安装库pipinstallselenium使用fromsele...

    python 2024-3-30 16:43
    163 0
sitemap