Merge pull request #496 from Jay-T/master

Update README.md
This commit is contained in:
FrankWang 2018-04-18 20:04:27 +09:00 committed by GitHub
commit 72a0199a2f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -500,13 +500,13 @@ You can use proxy for request. `apihelper.proxy` object will use by call `reques
```python
from telebot import apihelper
apihelper.proxy = {'http', 'http://10.10.1.10:3128'}
apihelper.proxy = {'http':'http://10.10.1.10:3128'}
```
If you want to use socket5 proxy you need install dependency `pip install requests[socks]` and make sure, that you have the latest version of `gunicorn`, `PySocks`, `pyTelegramBotAPI`, `requests` and `urllib3`.
```python
apihelper.proxy = {'https', ' 'socks5://userproxy:password@proxy_address:port''}
apihelper.proxy = {'https':'socks5://userproxy:password@proxy_address:port'}
```