This commit is contained in:
dsyoon
2023-01-27 21:16:21 +09:00
parent 8fbc242712
commit 11f02bd95e
2 changed files with 46 additions and 1 deletions

44
stock/util/SlackBot.py Normal file
View File

@@ -0,0 +1,44 @@
from slack_sdk import WebClient
from slack_sdk.errors import SlackApiError
from datetime import datetime
class SlackBot:
BOT_TOKEN = None
CHANNEL_ID = None
client = None
def __init__(self):
self.BOT_TOKEN = "xoxb-1214605084611-4694289701799-1lCW10baLrihe60DvW1oZ32V"
self.CHANNEL_ID = "C021KN0GG94"
self.client = WebClient(token=self.BOT_TOKEN)
return
def post_to_slack(self, this_time, stock_code, stock_name, type, price, count):
try:
text = "DATE TIME:" + this_time.strftime(
'%Y-%m-%d %H:%M:%S') + ", " + "stock_code:" + stock_code + ", " + "stock_name:" + stock_name + ", " + "type:" + type + ", " + "price:" + str(
price) + ", " + "count:" + str(count)
result = self.client.chat_postMessage(
channel=self.CHANNEL_ID,
text=text
)
print(text)
except SlackApiError as e:
print(f"Error posting message: {e}")
return
if __name__ == "__main__":
this_time = datetime.now()
stock_code = "252670"
stock_name = "x2"
type = "BUY"
price = 2000
count = 2
slackBot = SlackBot()
slackBot.post_to_slack(this_time, stock_code, stock_name, type, price, count)