Giter VIP home page Giter VIP logo

docusaurus's Introduction

Wechaty Join Wechaty Discord Developer Community NPM Version NPM Docker

Wechaty

Downloads GitHub stars Docker Pulls ES Modules

TypeScript JavaScript Python Go Java .NET PHP Rust Scala

WeChat Whatsapp

Elevator Pitch

Wechaty is a conversational RPA SDK that simplifies the process of building chatbots. It's like a Swiss Army knife for chatbot development, providing a universal interface to various messaging platforms such as WhatsApp, WeChat, and more. With Wechaty, you write your bot code once, and it runs on any of the supported platforms. This means you can focus on creating engaging conversational experiences without worrying about the underlying complexities of each platform's API. It's open-source, easy to use, and backed by a vibrant community that's ready to help you bring your chatbot ideas to life.

Connecting Chatbots

Wechaty is an RPA (Robotic Process Automation) SDK for Chatbot Makers which can help you create a bot in 6 lines of JavaScript, Python, Go, and Java, with cross-platform support including Linux, Windows, MacOS, and Docker.

🕸️ https://wechaty.js.org
:octocat: https://github.com/Wechaty/wechaty
🪲 https://github.com/Wechaty/wechaty/issues
📖 https://github.com/Wechaty/wechaty-getting-started
🐳 https://hub.docker.com/r/wechaty/wechaty

Breaking News

Voice of Developers

"Wechaty is a great solution; I believe there would be much more users who recognize it." link
— @Gcaufy, Tencent Engineer, Author of WePY

"太好用,好用的想哭"
— @xinbenlv, Google Engineer, Founder of HaoShiYou.org

”好用到哭“——你们对得起这个评价! link
@bigbrother666sh, creator of《社长不见了》剧本杀 NPC DM

"最好的微信开发库" link
— @Jarvis, Baidu Engineer

"Wechaty让运营人员更多的时间思考如何进行活动策划、留存用户,商业变现" link
— @lijiarui, Founder & CEO of Juzi.BOT.

"If you know js ... try Wechaty. It's easy to use."
— @Urinx Uri Lee, Author of WeixinBot(Python)

"Wechaty is a good project; I hope it can continue! Therefore, I became a contributor in open collective."
@Simple

See more at Wiki:Voice Of Developer

Join Us on Discord

Join Wechaty Discord Developer Community Wechaty Discord

Wechaty is used in many ChatBot projects by thousands of developers. To talk with other developers, scan the QR Code below and join our Wechaty Developer Community.

Wechaty Discord Community QR Code

Scan now because other Wechaty developers want to talk with you, too!

Resource

Wechaty has already held lots of talks and got a lot of blogs in the past years; here are all of the wechaty resources:

🚀 The World's Shortest ChatBot Code: 6 lines of JavaScript

import { WechatyBuilder } from 'wechaty'

const wechaty = WechatyBuilder.build() // get a Wechaty instance
wechaty
  .on('scan', (qrcode, status) => console.log(`Scan QR Code to login: ${status}\nhttps://wechaty.js.org/qrcode/${encodeURIComponent(qrcode)}`))
  .on('login',            user => console.log(`User ${user} logged in`))
  .on('message',       message => console.log(`Message: ${message}`))
wechaty.start()

Notice: Wechaty requires Node.js version >= 16

This bot can log all messages to the console after login by the scan.

You can find Wechaty's Official Examples at examples/ding-dong-bot.ts and more from our Example Directory.

🏁 Requirements

  1. Node.js version 16+
  2. NPM version 7+
  3. TypeScript version 4.4+

Getting Started

node

We have a Wechaty starter repository for beginners with the simplest setting. It will be work out-of-the-box after you clone & npm install & npm start.

If you are new to Wechaty and want to try it the first time, we'd like to strong recommend you starting from this repository, and using it as your starter template for your project.

Otherwise, please saved the above The World's Shortest ChatBot Code: 6 lines of JavaScript example to a file named bot.js before you can use either NPM or Docker to run it.

1. Npm

NPM Version npm (tag)

Downloads install size

npm init
npm install wechaty

# create your first bot.js file, you can copy/paste from the above "The World's Shortest ChatBot Code: 6 lines of JavaScript"
# then:
node bot.js

2. Docker

Docker Pulls Docker Layers

Wechaty Docker supports both JavaScript and TypeScript. To use TypeScript just write in TypeScript and save with extension name .ts, no need to compile because we use ts-node to run it.

2.1. Run JavaScript

# for JavaScript
docker run -ti --rm --volume="$(pwd)":/bot wechaty/wechaty bot.js

2.2. Run TypeScript

# for TypeScript
docker run -ti --rm --volume="$(pwd)":/bot wechaty/wechaty bot.ts

Learn more about Wechaty Docker at Wiki:Docker.

3. Switch Protocol(Puppet)

Wechaty is very powerful that it can run over different protocols. You can specify the protocol by set the environment variable WECHATY_PUPPET to different puppet provider.

If you cannot use Web protocol, you can apply other protocal following the instruction here: https://github.com/wechaty/wechaty/wiki/Support-Developers We provide free token to support developers build a valuable WeChat chatbot.

Currently we support the following puppet providers :

Protocol Puppet Provider Environment Variable
Web PuppetPuppeteer export WECHATY_PUPPET=wechaty-puppet-puppeteer
Windows PuppetWorkPro export WECHATY_PUPPET=wechaty-puppet-service
Mock PuppetMock export WECHATY_PUPPET=wechaty-puppet-mock
Web PuppetWechat4u export WECHATY_PUPPET=wechaty-puppet-wechat4u
iPad PuppetRock export WECHATY_PUPPET=wechaty-puppet-service
iPad PuppetPadLocal export WECHATY_PUPPET=wechaty-puppet-service
Windows PuppetDonut export WECHATY_PUPPET=wechaty-puppet-service
iPad PuppetPadpro DEPRECATED export WECHATY_PUPPET=wechaty-puppet-padpro
iPad PuppetPadchat DEPRECATED export WECHATY_PUPPET=wechaty-puppet-padchat
iPad PuppetPadplus DEPRECATED export WECHATY_PUPPET=wechaty-puppet-padplus
Mac PuppetMacpro DEPRECATED export WECHATY_PUPPET=wechaty-puppet-macpro
Windows PuppetWxwork DEPRECATED export WECHATY_PUPPET=wechaty-puppet-service

Learn more about Wechaty Puppet from the Puppet Wiki:

  1. Puppet Directory: https://github.com/Wechaty/wechaty-puppet/wiki/Directory
  2. Puppet Compatibility: https://github.com/Wechaty/wechaty-puppet/wiki/Compatibility

🎸 API

Read the Full Documentation at Wechaty Official API Reference

1 Class Wechaty

Main bot class.

A Bot is a Wechaty instance that control a specific wechaty-puppet.

Wechaty API Description
event login emit after bot login full successful
event logout emit after the bot log out
event friendship emit when someone sends bot a friend request
event message emit when there's a new message
event room-join emit when anyone join any room
event room-topic emit when someone change room topic
event room-leave emit when anyone leave the room
event room-invite emit when there is a room invitation
event scan emit when the bot needs to show you a QR Code for scanning
method start(): Promise<void> start the bot
method stop(): Promise<void> stop the bot
method logonoff(): boolean bot login status
method logout(): Promise<void> logout the bot
method currentUser(): ContactSelf get the login-ed bot contact
method say(text: string): Promise<void> let bot say text to itself

2 Class Contact

All wechat contacts(friends/non-friends) will be encapsulated as a Contact.

Contact API Description
static find(query: string): Promise<null | Contact> find contact by name or alias, if the result more than one, return the first one.
static findAll(query: string): Promise<Contact[]> find contact by name or alias
static load(query: string): Contact get contact by id
property id: readonly string get contact id
method sync(): Promise<void> force reload data for contact , sync data from lowlevel API again
method say(text: string): Promise<void | Message> send text, Contact, or file to contact, return the message which the bot sent (only puppet-padplus supported).
method self(): boolean check if contact is self
method name(): string get the name from a contact
method alias(): Promise<string> get the alias for a contact
method alias(newAlias: string): Promise<void> set or delete the alias for a contact
method friend(): boolean check if contact is friend
method type(): ContactType return the type of the Contact
method province(): string get the region 'province' from a contact
method city(): string get the region 'city' from a contact
method avatar(): Promise<FileBox> get avatar picture file stream
method gender(): ContactGender get gender from a contact

2.1 Class ContactSelf

Class ContactSelf is extended from Contact.

ContactSelf API Description
method avatar(file: FileBox): Promise<void> set avatar for bot
method qrcode(): Promise<string> get qrcode for bot
method signature(text: string): Promise<void> set signature for bot

2.2 Class Friendship

Send, receive friend request, and friend confirmation events.

Friendship API Description
static add(contact: Contact, hello?: string): Promise<void> send a friend invitation to contact
method accept(): Promise<void> accept Friend Request
method hello(): string get the hello string from a friendship invitation
method contact(): Contact get the contact from friendship
method type(): FriendshipType return the Friendship Type(unknown, confirm, receive, verify)

3 Class Message

All wechat messages will be encapsulated as a Message.

Message API Description
static find(query: string): Promise<null | Message> find message in cache and return the first one
static findAll(query: string): Promise<Message[]> find messages in cache, return a message list
method from(): Contact get the sender from a message
method to(): Contact get the destination of the message
method room(): null | Room get the room from the message.(If the message is not in a room, then will return null)
method text(): string get the text content of the message
method say(text: string): Promise<void | Message> reply a Text, Media File , or contact message to the sender, return the message which the bot sent (only puppet-padplus supported).
method type(): MessageType get the type from the message
method self(): boolean check if a message is sent by self
method mention(): Contact[] get message mentioned contactList.
method mentionSelf(): boolean check if a message is mention self
method forward(to: Contact): Promise<void> Forward the received message
method age(): number the number of seconds since it has been created
method date(): Date the time it was created
method toFileBox(): Promise<FileBox> extract the Media File from the Message, and put it into the FileBox.
method toContact(): Promise<Contact> get Share Card of the Message

4 Class Room

All wechat rooms(groups) will be encapsulated as a Room.

Room API Description
static create(contactList: Contact[], topic?: string): Promise<Room> create a new room
static find(query: string): Promise<null | Room> Try to find a room by filter. If get many, return the first one.
static findAll(query: string): Promise<Room[]> Find all contacts in a room
static load(query: string): Room load room by room id
property id: readonly string
event join emit when anyone join any room
event topic emit when someone change room topic
event leave emit when anyone leave the room
event invite emit when receive a room invitation
method sync(): <Promise<void> force reload data for room, sync data from lowlevel API again.
method say(text: string): Promise<void | Message> Send text,media file, contact card, or text with mention @mention contact inside Room, return the message which the bot sent (only puppet-padplus supported).
method add(contact: Contact): Promise<void> Add contact in a room
method del(contact: Contact): Promise<void> Delete a contact from the room
method quit(): Promise<void> Bot quit the room itself
method topic(): Promise<string> GET topic from the room
method topic(newTopic: string): Promise<void> SET topic from the room
method announce(text: string): Promise<void> SET/GET announce from the room
method qrcode(): Promise<string> Get QR Code of the Room from the room, which can be used as scan and join the room.
method alias(contact: Contact): Promise<string> Return contact's roomAlias in the room
method roomAlias(contact: Contact): Promise<string | null> Same as function alias
method has(contact: Contact): Promise<boolean> Check if the room has member contact
method memberAll(query?: string): Promise<Contact[]> Find all contacts or with specific name in a room
method member(query: string): Promise<null | Contact> Find all contacts in a room, if get many, return the first one.
method memberList():Promise<Contact[]> get all room member from the room
method owner(): null | Contact Get room's owner from the room.

4.1 Class RoomInvitation

Accept room invitation

RoomInvitation API Description
method accept(): Promise<void> accept Room Invitation
method inviter(): Contact get the inviter from room invitation
method roomTopic(): Promise<string> get the room topic from room invitation
method date(): Promise<Date> the time it was created
method age(): Promise<number> the number of seconds since it has been created

TEST

NPM Docker Coverage Status

Known Vulnerabilities

Wechaty is fully automatically tested by unit and integration tests, with Continious Integration & Continious Deliver(CI/CD) support powered by CI like Travis, Shippable and Appveyor.

To test Wechaty, run:

npm test

Get to know more about the tests from Wiki:Tests

CREATING WECHATY PLUGIN

Creating and publishing a Wechaty Plugin is simple. Simply expose your module as a function that takes 1 parameter: wechaty. When your plugin is imported by Wechaty, it will pass itself in as the argument, and so you are free to add any configuration that Wechaty supports.

import { WechatyPlugin } from 'wechaty'

export default const MyPlugin: WechatyPlugin = (wechaty: Wechaty) => {
  // ...
}

The config exist so the user can pass in customizations to your Plugin. In documenting your Wechaty Plugin, you would lay out your supported config for the user.

See:

  1. Wechaty Plugin Support with KickOut Example #1939
  2. Wechaty Plugins Contrib

📝 RELEASE NOTES

🎷 Views Since Feb 15, 2019

HitCount

💖 POWERED BY WECHATY

Powered by Wechaty

✨ Wechaty Badge

[![Powered by Wechaty](https://img.shields.io/badge/Powered%20By-Wechaty-brightgreen.svg)](https://wechaty.js.org)

Get more embed html/markdown code from Wiki:Badge

🌟 Projects Using Wechaty

  1. 一个用CNN深度神经网络给图片评分的wechaty项目
  2. Relay between Telegram and WeChat
  3. A chat bot managing the HaoShiYou wechat groups run by volunteers of haoshiyou.org
  4. An interactive chat bot to manage a TODO list
  5. Forward WeChat messages to telegram
  6. koa与wechaty实现的微信小助手,可定时提醒与发消息设定定时任务
  7. Wechaty Pay - 让线上没有难做的生意
  8. 开源社的微信机器人项目

Pull Request is welcome to add yours!

Learn more about Projects Using Wechaty at Wiki:Projects Using Wechaty

😇 Find a Good Server

The best practice for running Wechaty Docker/NPM is using a VPS(Virtual Private Server) outside of China, which can save you hours of time because npm install and docker pull will run smoothly without any problem.

The following VPS providers are used by the Wechaty team, and they worked perfectly in production. You can use the following link to get one in minutes. Also, doing this can support Wechaty because you are referred by us.

Location Price Ram Payment Provider
Singapore $5 512MB Paypal DigitalOcean
Japan $5 1GB Paypal Linode
Korea $10 1GB Alipay, Paypal Netdedi
Singapore $3.5 512MB Alipay, Wechat Vultr

🎶 See Also

💩 The Story

In 2017 ...

Huan's daily life/work depends on too much chat on wechat.

  • Almost 14,000 wechat friends in May 2014, before wechat restricts a total number of friends to 5,000.
  • Almost 400 wechat rooms, and most of them have more than 400 members.

Can you imagine that? He was dying...

So a tireless bot working for me 24x7 on wechat, monitoring/filtering the most important message is badly needed. For example, it highlights discussion which contains the KEYWORDS which he want to follow up(especially in a noisy room). ;-)

At last, It's built for huan's personal study purpose of Automatically Testing.

Stargazers over time

Stargazers over time

💕 Contributors

GitHub issues GitHub pull requests Open Collective Backers Open Collective Sponsors

contributor contributor contributor contributor contributor contributor contributor contributor

This project exists thanks to all the people who contribute. [Contribute].


Contribute

😎 Backers

Backers on Open Collective

Thank you to all our backers! 🙏 [Become a backer]

Open Collective Wechaty

😏 Sponsors

Sponsors on Open Collective

Support this project by becoming a sponsor. Your logo will show up here with a link to your website. [Become a sponsor]

Wechaty Sponsor

Multi-language Wechaty

Python Wechaty Go Wechaty Java(Kotlin) Wechaty Scala Wechaty PHP Wechaty .NET(C#) Wechatyin

History

main v1.11 (Nov 22, 2021)

Working on reduxify the Wechaty ecosystem for applying the CQRS pattern.

v1.10 (Nov 21, 2021)

Second beta release of Wechaty, with all ecosystem npm modules with version v1.10 (wechaty-puppet, wechaty-puppet-service, etc)

v1.0 (Sep 2021)

  • Release v1.0 of Wechaty is the first beta release of Wechaty.

v0.69

  1. v0.69: Supports ES Modules (with CJS dual support) (#2232)

v0.68 (Aug 27, 2021)

  1. TLS support (#2231)
  2. The latest CommonJS version

Creators

  1. Huan (LinkedIn), 🐧 Tencent TVP of Chatbot・🤖 Chatie Architect・⭐️ GitHub Star・🚀 YC W19・🌐 Microsoft RD & AI MVP・🦾 Google ML GDE ・🤠 Serial Entrepreneur・🔥 Burner
  2. Rui (李佳芮), Microsoft AI MVP & RD, Co-founder & CEO of Juzi.BOT (YC W19 Alumni)

Profile of Huan Li on StackOverflow

Cite Wechaty

To cite this project in publications:

@misc{Wechaty,
  author = {Huan Li, Rui Li},
  title = {Wechaty: Conversational SDK for Chatbot Makers},
  year = {2016},
  publisher = {GitHub},
  journal = {GitHub Repository},
  howpublished = {\url{https://github.com/wechaty/wechaty}},
}

Copyright & License

  • Code & Docs © 2016-now Huan, Rui, and Wechaty Community Contributors
  • Code released under the Apache-2.0 License
  • Docs released under Creative Commons

docusaurus's People

Contributors

abhishek-iiit avatar arnabiscreating avatar bikaiqiao avatar chris-4444 avatar dchaofei avatar gangena avatar gavinwang23 avatar huan avatar iamrajiv avatar itdakashuo avatar jiangxiaotao1024 avatar kevintung avatar krapnikkk avatar kxz18 avatar lijiarui avatar mrzilinxiao avatar nibble0101 avatar przzl avatar rohitesh-kumar-jain avatar roxanne718 avatar sajen-k avatar sbis04 avatar shraddhavp avatar shwetalsoni avatar soumi7 avatar suninsky avatar vasvi-sood avatar wengcan avatar wj-mcat avatar zzzyer avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

docusaurus's Issues

invite @sinned Dennis Yang to write a blog for introducing how to integrate Wechaty with ChatBot Analytics Service: DashBot.io

Dennis Yang is the co-founder & CPO of DashBot.io, lived in the US. Dashbot is a bot analytics platform that enables publishers and developers to increase engagement, user acquisition, and retention through actionable data and tools.

Last year I met with Dennis at Silicon Valley and had a great talk. After that, we decided to add Wechaty support on DashBot, which will enable Wechat ChatBot to get Analytics Service powered by DashBot.io.

After some months of work and with the help of @lijiarui, this feature had online today and I'd like to invite @sinned Dennis to write a blog post to introduce how to enable Wechaty ChatBot with Message Analytics Service: Integrating with DashBot.io.

Thank you, Dennis!

Invite @dyz2102 to write a blog about his ResumeHack chatbot thoughs

@dyz2102 is the founder of WonderCV.com, which is a fantastic tool for people to make their resume more professional. They got 100,000 register users in 6 months without any promotion budget. Just a few days ago, they passed the Y Combination interview in California and get Y Combination Startup offer. I met him on Y Combination pre-meetup in Beijing and found he has joined in Wechaty Developers' Home in a very early period and trying to use chatbot to manage user resume in a convenient way.

So I'd like to invite him to share his resume chatbot thoughts, how he met wechaty and anything he would like to share about data growth and startup.

Thanks, @dyz2102 !

invite @kungfu-software to write an article to introduce how to deal with the API rate limit of Wechat Server API

According to wechaty/wechaty#540 :

The API rate limitation is a big pitfall that many developers will get into.

@kungfu-software had run into this issue on Friend Request, which after rate limit exceeded, friend request will always fail.

After he had figure out the solution, he'd like to share the idea with the community by writing a new blog post about this.

Thank you @kungfu-software!

invite @h4dex to write a blog ablog how to inject Windows Version Wechat

Fery(@h4dex) is an active Wechaty user with strong willingness to share. Today in our Wechaty Developers' Home we were talking about how to Inject DLL to Windows Wechaty in order to get better control for bot developers, he'd like to share his experience about how to inject DLL to Windows Wechat v2.4.x.

Thank you Fery for sharing, and looking forward to your blog post!

Review comments for the migration Wechaty v0.14 to v0.16 blog article

For https://blog.chatie.io/porting-code-from-puppeteer-to-padchat-en/

  • Subject: please name it more explicit for the migration. like
    • Migrating/Upgrading Wechaty v0.14 to v0.18 Guide - From Puppeteer To Padchat,
    • because we will publish v0.18(BETA) soon.
  • Picture
    • please use English title in the English version. Currently, there are Chinese in the English version, and very hard to differentiate when we reading the blog home page.
    • Add v0.14 near Puppeteer, and add v0.18 near Padchat to show the specific version and make it more clear.
  • Topic: I'd like to suggest that you split this article into four different articles(blogs), because there are four topics in this article and they are all big topics:
    • 1. introducing the puppet system;
    • 2. getting started with the puppet padchat;
    • 3. linting is very useful;
    • 4. breaking changes between versions.
    • If you agree with me, I'd like to suggest that we can invite @windmemory to join you.

Related to wechaty/wechaty#1442

invite @xinbenlv to write a blog post about the new `hot-import` style listeners of Wechaty

We are recently upgrading Wechaty to the branding new v0.11.x version, which supports register listeners by a module file.

Through this way, Wechaty can not only load the module file and use the exported function as the listener, but also auto reload the module code when the module file is changed, which is called a Hot Module Replacement Technic in WebPack, from WebPack Concepts - https://webpack.js.org/concepts/hot-module-replacement/

@xinbenlv had just sent a Pull Request to Wechaty, added an example to show how to use this kind of listeners. I'd like to invite him to also write a blog post to share this technic to the Wechaty Community, which I believe will help other developers to save lots of time when developing.

Thank you @xinbenlv, looking forward to your blog post!

Typo

0b28564

vedio should be video

And, this file is not necessary, if you write inline CSS in your posts.

Remove the `/year/month/date` part from URL

It seems not including the date details is a better practice, because our blog articles are EverGreen-Content.

Many users search for and visit a recipe and notice that it was published years ago. Most will then form an unconscious bias regarding the timeliness of that recipe (or any other content for that matter) and question its accuracy.

How about the old URLs:

See Also

invite @anderleo to write a blog about his room bot in a campaign

@anderleo once is a designer, then change his job to flash engineer, front-end engineer, and the full-stack engineer, now he is learning Hadoop. He has been in Beijing for 14 years, and go back to his hometown in Guiyang now.

Yesterday he wrote a room bot in order to invite people in his room in a BIT speech campaign, using his wechaty bot, he invited nearly 200 people to his room. So I'd invite him to write a blog about his experience about learning wechaty, writing the bot, and all the problem he occurred, for example, he should using interval in the bot operation and so on...

We are looking forward to your article, @phoenixgao, cheers!

invite @martin-sun to write a article about how to integrate Wechat Mini App with Wechaty

@martin-sun is an entrepreneur lived in Canada, and now he's working at Shanghai, developing a Mini App to help Chinese people at abroad to rent/lease house.

What he want to do, is to integrate the Wechat Mini App with Wechaty, to get the power from both Mini App and Wechaty, which can make his App more powerful.

I'm very glad that he had agreed to write this article, to share his practices with the community.

Thank you @martin-sun, looking forward to reading your blog soon!

Invite @phoenixgao to write a blog about wechat bot thoughs

@phoenixgao is a PHP developer in Shanghai, who is interested in WeChat bot.

Today he talked a lot of interesting thoughts about the upcoming bot API based on iPad.

I'd like to invite him to talk about the existing WeChat bot and what should he suggest to do before we push out a charging scheme, for example, data monitor, status monitor, etc.

We are looking forward to this awesome articles from @phoenixgao, cheers!

invite @GuoYingxu to write a blog about wechaty-electron

@GuoYingxu is an engineer in Qingdao, and interested in machine learning, he is trying to use electron for wechaty on July, see wechaty with electron

This is his solution: https://github.com/GuoYingxu/wechaty/tree/wechaty-electron

He also suggests to make 2 separate npm modules for the two different puppet, electron and chrome, this will let wechaty more flexible and work as a chatbot connector, developers can choose any kind of puppet they want.

I love this idea!

I'd like to invite @GuoYingxu to write something about his idea and his further plan for this solution.

Thanks @GuoYingxu

invite @IdiosApps to post a blog about his Anki Flashcard with Wechaty

@IdiosApps and his friend were using CC-CEDICT to automatically generate Anki flashcards. The last thing they did was make it work aggressively to give flashcards of all possible words. Useful to help you learn songs in Chinese, if you're learning Mandarin.

He want to make a wechaty bot that links people to cheap vegan foods in China. It will help people eat healthily and save money and the planet xD

I'd like to invite him to share his story with us, and he'd like to:

  1. give a guide on how he made this project + getting started
  2. make a video when he understand wechaty well enough, so there can be both a Chinese and an English intro video.

We are looking forward for those awesome articles from @IdiosApps, cheers!

Can Chatie inviteS friend with tag?

we are Wilddog Teachnology。when we use Chatie we found Chatie add new friends without wechat tag,and Chatie API do not support。 so i want to ask CAN CHATIE INVITE FRIENDS WITH TAG?

invite @lirobin1998 to write a blog about his education chatbot

@lirobin1998 is a Ph.D. from Tsinghua, Artificial Intelligence Scholar and founder of Silicon Valley Intelligence Technology. He has 10 years experience in Silicon Valley and domestic high-tech entrepreneurship.

He is trying to use wechaty and other artificial intelligence techniques to build an AI Educational tools and some AI products, so I'd like to invite him to write a blog about his thoughts.

We are looking forward to your article, @lirobin1998, cheers!

invite @TingYinHelen to write an article about how she write an automatica bot for her friend

Helen is a full stack engineer living in Chengdu, she is very familiar with D3. When not coding, she loves dancing, sings and play Erhu.

Today, a friend of her asks she to build a bot for managing a technic community on Wechat. Then at afternoon, after had lunch and before going to play KOF, Helen finished this bot for her friend in hours.

I'd like to invite @TingYinHelen to share her story with the community, like what's the problem her friend has, how she implemented to solve it and how does she feel with Wechaty/ChatBot.

Thanks!

Invite @huyingxi to write a blog about her selfie rating chat bot.

Xi is a graduate student studying at BUPT, she has very good experience related with ChatBot & Machine Learning and Chinese NLP. Months ago, she had built a Bot on Wechat, which can rate your face photo based on a CNN Neural Network trained by Instagram Photos at here: https://github.com/huyingxi/wechaty_selfie

I'd like to invite @huyingxi to share what she thought about her ML&ChatBot practices to the Wechaty Community. Thanks!

Invite @zhoumh1988 to write a blog about his wechat group analysis bot

@zhoumh1988 is a front end manager in a data company, he joins the Wechaty v0.19 Padchat Testing and here is his more info.

When he shared about his idea about analysis wechat group to find the active user and invite the active users to a new group, his company decided to do this project and he is working on this with wechaty.

He did a lot of hard work in the Wechaty padchat testing period so we decided to give him a free token to use padchat for 3 months.

I'd like to invite him to write an article about his idea about data analysis in wechat group, and he promised he will write a blog at the beginning of August when he finishes his project.

Really expect for @zhoumh1988 fantastic blog!

Thanks, @zhoumh1988 !

New Article: Build ChatBot with TensorFlow + Docker + Wechaty

wechaty/wechaty#147 (comment)

I am currently learning TensorFlow. If everything is fine, I am considering to write an article about chatbot and TensorFlow. If possible, using TensorFlow (cuda) within Docker can be mentioned. However, it is also too specific rather than general. And it will take me a long period of time.

@imWildCat is studying Machine Learning Course now and planing to publish the article before July. let's looking forward for his second article about ML + Docker + Wechaty!

Invite @dcsan to write a blog article to record the second Chatie event in Shanghai

Today we had a Chatie Contributor dinner at Jingan, Shanghai.

@dcsan, who is the founder of rikai and has developed chatbot products since 2014. He is very experienced with chatbot. Rikai has a lot of TOB chatbot businesses like ticket bot, meeting bot, FAQ bot for many big companies. Also, Rikai has a teacher bot to teach people to learn English using chatbot with wechat OA account and wechat group. I visited his office and meet all of his fantastic team members, I really like them. Also, we are going to work together to do some wechaty wrappers for each of our projects.

I'd like to invite him to write the blog post to introduce the contributor of our lunch today, and share his opinions about the chatbot and relevant NLP things that we had talked about today.

Thanks, dcsan!

invite Chlerry to write a blog about his charitable project

@Chlerry is a student at the University of Nebraska - Lincoln and trying to use wechaty to do a charitable project, it may provide service for Food Industry sponsor.

I think this is an interesting project so I'd like to invite him to write a blog about his project, and he promises he will write a blog after his project is passed after this week.

Waiting for your blog!
Thanks @Chlerry

RULES for file naming

The file name should be:

  1. all lower cases
  2. use - instead of space

Especially for the download directory files:

  1. add author at the start of the filename, followed with a -

Please rename the files In https://github.com/Chatie/blog/pull/37/files

Like:

- How to build a chatbot-7.jpg
+ itdakashuo-how-to-build-a-chatbot-7.jpg

and change http://blog.chatie.io/developer/2017/07/13/How-to-build-a-chatbot.html to http://blog.chatie.io/developer/2017/07/13/how-to-build-a-chatbot.html (with lower case h)

invite @xinbenlv to write an article about how to integrate Wechaty with HaoShiYou App

The goal of HaoShiYou is to help Chinese students in Silicon Valley to find/rent a room with other students. @xinbenlv is working at Google, founded HaoShiYou in his spare time, developed the App, and managed many 500 people Wechat group, which is a massive work for human.

After using Wechaty, he uses a bot to help him managing all Wechat works, such as add/del people in a group, save rent/lease information from Wechat message, even OCR the screenshot to read it by the bot. And here's his Bot: https://github.com/xinbenlv/haoshiyou-bot

It would be wonderful if @xinbenlv could share his experience from his HaoShiYou project, I'm looking for your article, thanks!

Invite @leinue to share his experience of the daily paper bot.

@leinue is a genius geek, CTO of Awesome Port. He started his own business when he was a junior student at the university, had built a draw and drop user interface that helps developers to develop apps and deploy the apps automatically with Docker technology.

Recently he had written a bot to deliver the daily paper to the users, I'd like to invite him to share his experience with the community.

Looking forward to your blog, @leinue!

Invite @greatgeekgrace to write a blog article to record the first Chatie WWDC

Today we had a Chatie Contributor dinner at WuDaoKou, Beijing.

@greatgeekgrace, who has just published her new book Tensorflow Tech & Practics, joined dinner with us. She is very experienced with ML and she is planning to give a talk on GitChat about how to integrate Tensorflow with ChatBot.

I'd like to invite her to write the blog post to introduce the contributor of our dinner today, and share her opinions about the ML & ChatBot that we had talked about tonight.

Thank you, grace!

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.