• 2024-02-23记录pyinstaller 打包 pdfplumber 问题解决过程
    今天有一个pdf文件处理需求,使用pdfplumber库完成,python环境是3.11+win10pyinstaller5.10.1打包完成后,工具可以顺利打开,但是执行处理的时候报错File"pypdfium2_raw\bindings.py",line93,in<module>File"pypdfium2_raw\bindings.py",line83,in_register_library
  • 2024-01-14npm仓库设置
    1.默认仓库,是国外的,安装会很慢D:\workspace\vue-test>npmconfiggetregistryhttps://registry.npmjs.org/2.设置npm仓库D:\workspace\vue-test>npmconfigsetregistryhttps://registry.apm.taobao.orgD:\workspace\vue-test>npmconfiggetregistryhttps:/
  • 2023-12-25某网站登录协议分析
    目录使用工具流程分析访问首页点击登录按钮需要处理的点密码加密算法还原这样密码算法就还原了,接下来分析一下验证码模拟浏览器请求使用工具#浏览器谷歌#抓包工具Fiddler#语言python与js流程分析访问首页点击登录按钮#登录包为httppost请求提交参数(js
  • 2023-09-27pyinstaller命令
    usage:pyinstaller[-h][-v][-D][-F][--specpathDIR][-nNAME][--contents-directoryCONTENTS_DIRECTORY]          [--add-dataSOURCE:DEST][--add-binarySOURCE:DEST][-pDIR][--hidden-importMODULENAME]          [--co
  • 2023-05-3123年,我又学习了一次amd模块化,模块化思想
    项目目录srcview1index.htmlmain.jsview2pluginsmodule.jsjquery.js......modules//amd模块文件a1.jsb1.jsc.jsb2.jsb21.jssr
  • 2023-03-23Could not find a version that satisfies the requirement ModuleName
    pip换源pip使用官方源常见错误CouldnotfindaversionthatsatisfiestherequirementModuleName,推荐永久修改成豆瓣源.pipconfigsetglobal.index-urlhttps://
  • 2023-03-20python命令
    我们在使用npminstall安装模块的模块的时候,一般会使用下面这几种命令形式:npminstallmoduleName#安装模块到项目目录下npminstall-gmoduleName#-g的意思
  • 2023-03-08vuex-router-sync 源码解析
    vuex-router-sync:路由状态管理,保持vue-router和vuex存储同步。import{sync}from'vuex-router-sync'importrouterfrom'@/router'importstorefrom'@/store'syn
  • 2023-01-11Microsoft Azure解决方案:如何用Powershell批量安装Microsoft.Graph PowerShell模块
    51CTO博客地址:https://blog.51cto.com/14669127Azure培训视频地址:https://space.bilibili.com/2000820534很多熟悉AzureAutomation和GraphAPI的小伙伴提到在Automati
  • 2022-12-08在项目中定义 i18n 结构化对象的简单思路
    简介本文介绍一种在项目定义i18n文本结构的简单思路,以及定义一些简单的全局函数,用于获取i18n文本。文件结构src├──i18n└──index.js├──zhCN├──i
  • 2022-11-02pyinstaller打包运行报错failed to execute script ***
    使用的参数是-w-F这是Google上的解释:--hidden-importMODULENAME,--hiddenimportMODULENAMENameanimportnotvisibleinthecodeofthe(s).Thisoptioncanb
  • 2022-11-02mybatisPlus 逆向工程-通过表格创建实体类
    1、引入依赖<!--SpringBoot集成mybatis-plus框架--><dependency><groupId>com.baomidou</groupId><artifactId>mybatis-plus
  • 2022-10-13React Native原理
    首先来讲一下,我们必须清楚ReactNative本质是使用React的思想只不过React渲染的是真实的Dom,而ReactNative是使用虚拟Dom通过桥接调用原生的渲染下面就从index.js的App
  • 2022-10-03npm常用命令操作手册【程序员必备】
  • 2022-09-02python打包exe程序
    1、安装Pyinstaller模块python使用Pyinstaller模块实现把py文件打包成exe文件。执行命令:pipinstallpyinstaller2、打包py文件,执行命令Pyinstaller-Fxxx.py,下面举例