npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

wechaty-paimonbot

v2.2.1

Published

[![Powered by Wechaty](https://img.shields.io/badge/Powered%20By-Wechaty-blue.svg)](https://github.com/wechaty/wechaty) [![NPM Version](https://badge.fury.io/js/wechaty-puppet-wechat.svg)](https://badge.fury.io/js/wechaty-puppet-wechat) [![npm (tag)](http

Downloads

8

Readme

WECHATY-PAIMONBOT

Powered by Wechaty TypeScript node

针对wechaty-puppet-wechat的功能实现,使用微信web协议的UOS请求头,添加了额外的Python功能模块。

bot的功能逻辑代码使用Typescript编写,Python的功能模块代码使用Python编写

  • [ ] PaimonBot
    • [x] 引入外部API实现智能对话
    • [x] 实现Bot和Python之间的动态调用
    • [x] 同时监控个人和群聊
    • [x] 多线程
    • [x] 针对特定语句的回复功能
      • [x] 图片
      • [x] 文字
      • [x] URL
    • [x] 将对话的问答模板从纯代码转为易用的JSON
      • [x] 用户编辑JSON文件的键值对以批量的创建问答
    • [x] 收发个人名片
    • [x] 收发小程序
    • [x] 收发视频
    • [ ] 发送群聊邀请
    • [x] @群成员
    • [x] 更改群名称
    • [ ] 群聊踢人
    • [ ] 自动通过好友申请
    • [ ] 添加表情包斗图
    • [x] 添加闲聊功能
    • [ ] 添加成语接龙
    • [ ] 其它功能
  • [ ] PythonCode
    • [x] 天气爬虫
      • [x] 爬取一周的天气
      • [x] 以文字的形式回答提问者指定地区的天气
      • [x] 以图片的形式回答提问者指定地区的天气
        • [x] 多线程的爬取图片
      • [x] 多线程天气爬虫
      • [ ] 每日定时向指定的好友发送他们所在地的天气
    • [x] 成语接龙keywor:成语接龙
    • [x] 历史时刻keywor:历史上的今天
    • [x] 百度百科keywor:百科全书或百科查询
    • [ ] 谷歌翻译
    • [x] 表情包搜索keywor:查表情包
    • [x] 垃圾分类keywor:垃圾分类
    • [ ] 其它爬虫

FEATURES

  1. 使用门槛低,即使是完全没有编程经验的人也能使用
  2. 不影响手机端的使用
  3. 全平台运行(MacOS、Windows、Linux)
  4. Python功能模块化,方便二次开发
  5. 开箱即用,使用者不需要涉及代码编写,仅需要编辑想要的问答形式即可

ChatShow

![理智丧失 2021-08-08 12.47.25](./Image/理智丧失 2021-08-08 12.47.25.jpeg)

GETTING STARTED

Linux环境 | Windows环境 | macOS环境

NOTE:Linux配置应不低于1核1GB内存,推荐2核2GB内存

1.安装Node.js v14

​ 1)以 sudo 用户身份运行下面的命令,下载并执行 NodeSource 安装脚本:

curl -sL https://deb.nodesource.com/setup_14.x | sudo -E bash -

​ 2)NodeSource 源启用成功后,安装 Node.js 和 npm:

sudo apt install nodejs

​ 3)验证 Node.js 和 npm 是否正确安装。打印它们的版本号:

node -v

2.初始化root目录环境

npm init

3.从npm包管理库拉取必要依赖

npm i qrcode-terminal --save
npm i wechaty 
npm i wechaty-puppet-wechat --save

4.安装wechaty-PaimonBot

npm i wechaty-paimonbot

5.前往root/node_modules中的wechaty-paimonbot包内安装运行环境所必要的依赖

cd node_modules/wechaty-paimonbot/
npm install

6.安装Typescriptts-node

npm install -g typescript
npm install -g ts-node

7.前往/root/node_modules中对部分依赖包中存在的错误进行修正

程序使用了大量的外部依赖,因此我们需要前往依赖包中对起代码进行部分修订

node_modules中使用命令:vim file-box/dist/src/file-box.d.ts

将第2行中 import http from 'http'; 修订为import * as http from 'http';

node_modules中使用命令:vim file-box/dist/src/file-box.type.d.ts

将第2行中 import http from 'http'; 修订为import * as http from 'http';

node_modules中使用命令:vim wechaty-puppet/dist/src/puppet.d.ts

将第19行中的 import QuickLru from 'quick-lru';修订为 import * as QuickLru from 'quick-lru';

8.前往root/node_modules/wechaty-paimonbot/node_modules中对部分依赖包中存在的错误进行修正

wechaty-paimonbot/node_modules使用命令:vim file-box/dist/src/file-box.d.ts

将第2行中 import http from 'http'; 修订为import * as http from 'http';

wechaty-paimonbot/node_modules使用命令:vim file-box/dist/src/file-box.type.d.ts

将第2行中 import http from 'http'; 修订为import * as http from 'http';

9.安装剩余的依赖包

sudo apt-get install gconf-service libasound2 libatk1.0-0 libatk-bridge2.0-0 libc6 libcairo2 libcups2 libdbus-1-3 libexpat1 libfontconfig1 libgcc1 libgconf-2-4 libgdk-pixbuf2.0-0 libglib2.0-0 libgtk-3-0 libnspr4 libpango-1.0-0 libpangocairo-1.0-0 libstdc++6 libx11-6 libx11-xcb1 libxcb1 libxcomposite1 libxcursor1 libxdamage1 libxext6 libxfixes3 libxi6 libxrandr2 libxrender1 libxss1 libxtst6 ca-certificates fonts-liberation libappindicator1 libnss3 lsb-release xdg-utils wget

--------以上内容一次性复制,下面的命令单独执行--------

sudo apt-get install -y libgbm1

10.前往root/node_modules中的wechaty-paimonbot包内的src目录中执行:

tsc onMessage.ts
tsc PaimonBot.ts

如果出现这一项报错请忽略:errorImage01

11.执行完第十步后,执行以下命令,启动bot:

ts-node PaimonBot.js

当屏幕中出现二维码需要扫描,通过后则bot完全启动

1.安装Node.js v14

​ 前往Node.js官网下载Windows Installer并安装。安装完成后在CMD中使用node -v检查版本号,验证安装成功与否。

2.前往C://User/「自己电脑的用户名下」,在地址栏中删去的路径,输入CMD并回车在新的命令行窗口中,输入以下命令:

npm init

3.从npm包管理库拉取必要依赖(依旧在刚刚打开的命令行窗口中)

npm i qrcode-terminal --save
npm i wechaty 
npm i wechaty-puppet-wechat --save

4.安装wechaty-PaimonBot(依旧在刚刚打开的命令行窗口中)

npm i wechaty-paimonbot

5.前往C://User/「自己电脑的用户名下」/node_modules中的wechaty-paimonbot包内安装运行环境所必要的依赖

cd node_modules/wechaty-paimonbot/
npm install

6.安装Typescriptts-node

npm install -g typescript
npm install -g ts-node

7.前往wechaty-paimonbot/node_modules中对部分依赖包中存在的错误进行修正

wechaty-paimonbot/node_modules使用命令:vim file-box/dist/src/file-box.d.ts

将第2行中 import http from 'http'; 修订为import * as http from 'http';

wechaty-paimonbot/node_modules使用命令:vim file-box/dist/src/file-box.type.d.ts

将第2行中 import http from 'http'; 修订为import * as http from 'http';

8.前往C://User/「自己电脑的用户名下」/node_modules中对部分依赖包中存在的错误进行修正

程序使用了大量的外部依赖,因此我们需要前往依赖包中对起代码进行部分修订

node_modules中使用命令:vim file-box/dist/src/file-box.d.ts

将第2行中 import http from 'http'; 修订为import * as http from 'http';

node_modules中使用命令:vim file-box/dist/src/file-box.type.d.ts

将第2行中 import http from 'http'; 修订为import * as http from 'http';

node_modules中使用命令:vim wechaty-puppet/dist/src/puppet.d.ts

将第19行中的 import QuickLru from 'quick-lru';修订为 import * as QuickLru from 'quick-lru';

9.前往C://User/「自己电脑的用户名下」/node_modules中的wechaty-paimonbot包内的src目录中执行:

tsc onMessage.ts
tsc PaimonBot.ts

如果出现这一项报错请忽略:errorImage01

10.执行完第九步后,执行以下命令,启动bot:

ts-node PaimonBot.js

当屏幕中出现二维码需要扫描,通过后则bot完全启动

1.安装Node.js v14

​ 前往Node.js官网下载macOS Installer并安装。安装完成后在terminal中使用node -v检查版本号,验证安装成功与否。

2.在 terminal输入以下命令并回车,会初始化配置文件,只需要一路的回车确认就行

npm init

3.从npm包管理库拉取必要依赖(依旧在刚刚打开的terminal窗口中)

npm i qrcode-terminal --save
npm i wechaty 
npm i wechaty-puppet-wechat --save

4.安装wechaty-PaimonBot(依旧在刚刚打开的terminal窗口中)

npm i wechaty-paimonbot

5.前往/User/「自己电脑的用户名下」/node_modules中的wechaty-paimonbot包内安装运行环境所必要的依赖

cd node_modules/wechaty-paimonbot/
npm install

6.安装Typescriptts-node

npm install -g typescript
npm install -g ts-node

7.前往wechaty-paimonbot/node_modules中对部分依赖包中存在的错误进行修正

wechaty-paimonbot/node_modules使用命令:vim file-box/dist/src/file-box.d.ts

将第2行中 import http from 'http'; 修订为import * as http from 'http';

wechaty-paimonbot/node_modules使用命令:vim file-box/dist/src/file-box.type.d.ts

将第2行中 import http from 'http'; 修订为import * as http from 'http';

8.前往/User/「自己电脑的用户名下」/node_modules中对部分依赖包中存在的错误进行修正

程序使用了大量的外部依赖,因此我们需要前往依赖包中对起代码进行部分修订

node_modules中使用命令:vim file-box/dist/src/file-box.d.ts

将第2行中 import http from 'http'; 修订为import * as http from 'http';

node_modules中使用命令:vim file-box/dist/src/file-box.type.d.ts

将第2行中 import http from 'http'; 修订为import * as http from 'http';

node_modules中使用命令:vim wechaty-puppet/dist/src/puppet.d.ts

将第19行中的 import QuickLru from 'quick-lru';修订为 import * as QuickLru from 'quick-lru';

9.前往/User/「自己电脑的用户名下」/node_modules中的wechaty-paimonbot包内的src目录中执行:

tsc onMessage.ts
tsc PaimonBot.ts

如果出现这一项报错请忽略:errorImage01

10.执行完第九步后,执行以下命令,启动bot:

ts-node PaimonBot.js

当屏幕中出现二维码需要扫描,通过后则bot完全启动

启用Python功能模块

NOTE:不建议Linux端使用天气的可视化模块,可能会出现未知错误。win和mac端需要安装chromium驱动,需要安装在/usr/bin or /usr/local/bin路径下

进入wechaty-PaimonBot/PyMode/WeatherCrawlMode中,运行以下命令python依赖包:

pip install -r requirements.txt  -i https://pypi.tuna.tsinghua.edu.cn/simple

进入wechaty-PaimonBot/PyMode/WeatherCrawlMode/src中,执行:

python3 main.py

启动成功

使用说明

位于wechaty-PaimonBot文件夹下存在一个名为json的文件夹

进入json文件夹后,有friendAndRoomInfoQA这两个json文件

friendAndRoomInfo.json

文件内结构如下:

myName后的双引号内填入使用机器人的微信账户的名称

room_Keys内以“群聊名称”:true的形式填入需要机器人运作的群聊

friend_Keys内以“朋友的微信名称”:true的形式填入需要机器人关注的的朋友(名称为账户名称,非备注名称)

QA.json

文件内结构如下:

“问题”:“回答”的形式,填入任意数量的问答,机器人会自动匹配问题并自动回复答案

天气模块的使用

对于个人聊天,可以直接使用地点+天气的问答形式获取当地的天气,已经天气的可视化图片。如果地点不存,则会提示这个地点是错误的。

WechatIMG148

WechatIMG151

WechatIMG149

Q&A

VERSION

v2.2.0(2021.8.10)新增了5个python模块

v2.1.0(2021.8.7)bug修复

​ 重构了整个onMessage模块,增加了两个供用户使用的json文件,降低了使用门槛。即使完全没有编程经验的使用者也可以使用所有功能了。

​ 增加了天气爬虫的多线程功能

v1.1.0(2021.8.5)多线程爬虫和多线程绘图

v1.0.3(2021.8.5)完善了所有的教程

v1.0.2(2021.8.4)增加了一些必要的更新

v1.0.1 (2021.8.4)更新了getting started

​ 初次提交

LICENSE & DISCLAIMERS

  • Apache-2.0 License
  • 本软件使用了GitHub上的开源项目WECHATY-PUPPET-WECHAT
  • 请合理使用,使用者应遵守相应的法律法规,一切法律问题及后果与作者无关,Don't be evil