By
One of the
When you get your bot token, all thing you need to do to send a message to a channel is:
- http://slackapi.github.io/python-slackclient/
#python #slack #python_slackclient #im #telegram
Telegram
filtering users are looking for alternative messaging applications. One the well known applications for tech savvy guys is Slack
it is filtered but not in a way Telegram
is filtered. You can call API without any proxy or socks server. The app itself is filtered, but when you login for the first time by using a proxy server, you do not need socks server anymore as you are logged in all the times.One of the
Slack
developer kit for Python
is python-slackclient
. Installtion is easy as pie:pip install slackclient
When you get your bot token, all thing you need to do to send a message to a channel is:
from slackclient import SlackClient
slack_token = "xoxp-YOUR-TOKEN"
sc = SlackClient(slack_token)
sc.api_call(
"chat.postMessage",
channel="#python",
text="Hello from Python! 🎉"
)
#python
is the name of your channel. For more information go to link below:- http://slackapi.github.io/python-slackclient/
#python #slack #python_slackclient #im #telegram