mirror of
https://github.com/smallevilbeast/ntchat.git
synced 2025-05-23 02:26:11 +08:00
10 lines
147 B
Python
10 lines
147 B
Python
# -*- coding: utf-8 -*-
|
|
import sys
|
|
import ntchat
|
|
|
|
# 多开3个微信
|
|
for i in range(3):
|
|
wechat = ntchat.WeChat()
|
|
wechat.open(smart=False)
|
|
|