Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update readme about installation and add awaiting time after login hint #1028

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,11 @@ itchat是一个开源的微信个人号接口,使用python调用微信从未
```python
pip install itchat
```
deepin系统或者UOS,采用下面的命令:

```
pip install itchat-uos==1.5.0.dev0
```

## 简单入门实例

Expand Down
1 change: 1 addition & 0 deletions itchat/components/login.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ def login(self, enableCmdQR=False, picDir=None, qrCallback=None,
qrStorage = self.get_QR(enableCmdQR=enableCmdQR,
picDir=picDir, qrCallback=qrCallback)
logger.info('Please scan the QR code to log in.')
time.sleep(18)
isLoggedIn = False
while not isLoggedIn:
status = self.check_login()
Expand Down