上一页 1 2 3 4 5 6 7 ··· 40 下一页
摘要: XMind是基于Python实现,提供了对XMind思维导图进行创建、解析、更新的一站式解决方案 安装 xmind 模块 pip3 install xmind 示例: 创建文件 xmindTest.py (1)创建空白的xmind import xmind #加载包 # 1、如果指定的XMind文件 阅读全文
posted @ 2021-11-28 16:55 慕尘 阅读(3263) 评论(0) 推荐(0) 编辑
摘要: removebg是一个利用AI智能抠图的网站 提供了API 接口,可以直接调用并实现抠图,每月有50张免费 使用前需要去官网 https://www.remove.bg/ 注册并获取API KEY 安装removebg库 pip install removebg 安装pillow pip insta 阅读全文
posted @ 2021-07-12 00:49 慕尘 阅读(6525) 评论(0) 推荐(0) 编辑
摘要: PIL——Python Imaging Library是一个非常好用的图像处理库 在Python3中用Pillow代替PIL 安装 pip install pillow eg: 原图 in.jpg 显示图片 from PIL import Image old_image = "D:\\python\ 阅读全文
posted @ 2021-07-11 23:44 慕尘 阅读(305) 评论(0) 推荐(0) 编辑
摘要: cutecharts手绘风格图形库 github 地址https://github.com/cutecharts/cutecharts.py 安装 pip install cutecharts 使用 eg: from cutecharts.charts import Line chart = Lin 阅读全文
posted @ 2021-02-07 13:06 慕尘 阅读(361) 评论(0) 推荐(0) 编辑
摘要: DataX 是阿里巴巴集团内被广泛使用的离线数据同步工具/平台,实现包括 MySQL、Oracle、SqlServer、Postgre、HDFS、Hive、ADS、HBase、TableStore(OTS)、MaxCompute(ODPS)、DRDS 等各种异构数据源之间高效的数据同步功能 gith 阅读全文
posted @ 2021-02-04 22:25 慕尘 阅读(1820) 评论(0) 推荐(0) 编辑
摘要: Talend Open Studio是Talend公司开发的一个数据集成的数据ETL软件 1.下载 https://www.talend.com/products/data-integration-manuals-release-notes/ 我选择的 TOS_DI-20190620_1446-V7 阅读全文
posted @ 2021-02-04 22:16 慕尘 阅读(1322) 评论(0) 推荐(0) 编辑
摘要: Locust的使用一 通过命令参数可以配置Locust运行方式 文档 https://docs.locust.io/en/stable/configuration.html#command-line-options Locust的运行模式有: 单进程运行 所有的虚拟并发用户均运行在单个Python进 阅读全文
posted @ 2021-02-03 13:43 慕尘 阅读(1071) 评论(0) 推荐(0) 编辑
摘要: Locust 是一个开源负载测试工具,使用 Python 代码定义用户行为 安装 pip install locust 查看是否安装成功 locust -V 测试locustfile.py import time from locust import HttpUser, task, between 阅读全文
posted @ 2021-02-03 12:37 慕尘 阅读(739) 评论(0) 推荐(1) 编辑
摘要: 今天想更换nodejs版本,使用node v14.15.4,下载的zip包,设置完环境变量,检查是否安装成功 >node -v Node.js is only supported on Windows 8.1, Windows Server 2012 R2, or higher. Setting t 阅读全文
posted @ 2021-01-27 14:16 慕尘 阅读(4255) 评论(0) 推荐(0) 编辑
摘要: 在其他机器上跑的好好的,但是在某台机器上却遇到 gm Error: Command failed: ��Ч���� - /data nodejs代码如下 const gm = require('gm').subClass({ imageMagick: true }); gm(imagePath).r 阅读全文
posted @ 2021-01-27 12:39 慕尘 阅读(246) 评论(0) 推荐(0) 编辑
摘要: 今天有人的nodejs代码遇到,413 request entity too large,很熟悉的报错,以前使用koa解决过,这次的也记录一下 具体报错为 PayloadTooLargeError: request entity too large at readStream (D:\nodejs\ 阅读全文
posted @ 2021-01-22 21:53 慕尘 阅读(2749) 评论(0) 推荐(0) 编辑
摘要: 在使用node-canvas时,由于更换了node版本遇到 Error: The module '\\?\D:\nodejs\node_modules\canvas\build\Release\canvas.node'was compiled against a different Node.js 阅读全文
posted @ 2021-01-15 16:30 慕尘 阅读(5290) 评论(0) 推荐(0) 编辑
摘要: nvm是node的版本管理工具 在windows下安装nvm-windows,下载地址 https://github.com/coreybutler/nvm-windows/releases 选择下载 nvm-setup.zip 安装好后会设置环境变量 验证是否安装成功 说明: 由于之前安装的v12 阅读全文
posted @ 2021-01-15 12:41 慕尘 阅读(933) 评论(0) 推荐(0) 编辑
摘要: Faker是一个Python软件包,可为用来生成伪造数据 安装 pip install Faker 安装好后,可以直接使用faker命令 $ faker -h usage: faker [-h] [--version] [-v] [-o output] [-l LOCALE] [-r REPEAT] 阅读全文
posted @ 2021-01-13 13:08 慕尘 阅读(989) 评论(0) 推荐(0) 编辑
摘要: 今天使用git bash 执行Python时,遇到中文乱码 data.py from mimesis import Person person = Person('zh') print(f'name: {person.surname() + "" + person.name()}') $ pytho 阅读全文
posted @ 2021-01-13 12:45 慕尘 阅读(832) 评论(0) 推荐(1) 编辑
上一页 1 2 3 4 5 6 7 ··· 40 下一页