一定間隔でLINEにメッセージを送信

#00 ライブラリをインポート
import schedule
from time import sleep
import requests

def main():
    send_line_notify('test')

def send_line_notify(notification_message):
    # トークンを入力
    line_notify_token = 'ここに発行したトークンを入力'

    line_notify_api = 'https://notify-api.line.me/api/notify'
    headers = {'Authorization': f'Bearer {line_notify_token}'}
    data = {'message': f' {notification_message}'}
    requests.post(line_notify_api, headers = headers, data = data)

#01 定期実行する関数を準備
def task():
    if __name__ == "__main__":
        main()

#02 スケジュール登録(10秒間隔)
schedule.every(10).seconds.do(task)

#03 イベント実行
while True:
    schedule.run_pending()
    sleep(1)
目次