Skip to content

Instantly share code, notes, and snippets.

View taipingeric's full-sized avatar

Chih-Yang Li taipingeric

View GitHub Profile
@taipingeric
taipingeric / slack_bot.py
Created June 20, 2016 08:18 — forked from julianeon/slack_bot.py
Slack bot example, adapted from my working version.
import time, json, yaml, re, os, myfunc
from slackclient import SlackClient
with open('slack.yaml', 'r') as f:
doc = yaml.load(f)
user_id=doc["user_id"]
user_name=doc["user_name"]
user_address=doc["user_address"]
print user_id