19日に更新してた

アフィリエイトはないよ

2023-04-01から1ヶ月間の記事一覧

python で msedgedriver.exe を edge バージョンに合わせてダウンロードしてくる

chrome でも同じようなのを書いたのですが、ほぼ一緒です。 d:\bin に win64 版の msedgedriver.exe をおいて使う設定です。アプリケーションフォルダにバージョンに合わせたディレクトリが作られ、実行中だと新しいバージョンのディレクトリも作られるため…

python で LINE notify に通知を送る

python で色々やった備忘録的に LINE notify に通知を送っておく用です。 import requests def line(message, url = "https://notify-api.line.me/api/notify", token = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"): headers = {"Authorization" : "Bea…