프로그래밍/Python

[python] 코인 자동 매매 프로그램 만들기 (4) - 메세지 보내기

큐레이트 2023. 1. 3. 22:37
반응형

안녕하세요 포스팅이 늦어졌네요.

 

코로나 및 코로나 후유증도 심하게 오고 키우던 반려견도 보내는 절차때문에 일상생활이 힘들어서 포스팅을 못하게 되었습니다. (게으른 핑계 충 ㅠ)

 

텔레그램 메세지 보내기
from Common.Environment import config
import requests


def send_message(message):
    url = f"https://api.telegram.org/bot{config.telegram_token}/sendMessage?chat_id={config.chat_id}&text={message}"
    print(requests.get(url).json())  # this sends the message


if __name__ == '__main__':
    # print(f'key: {config.api_key} | secret_key: {config.secret_key} | telegram_token: {config.telegram_token}')
    send_message('테스트')

 

결과

 

그리고 추가적으로 원래 자동매매 하고 있다가 최근에 손실을 좀 봐서 돈을 전부 출금한 관계로 바이낸스 관련 포스팅은 여기까지 하도록 하겠습니다

 

감사합니다.

반응형