LoginSignup
1
1

More than 1 year has passed since last update.

zoomのチャットログの余計な部分を削除して議事録として使いやすくした

Last updated at Posted at 2022-03-06

ありそうなのに見つからなかった、zoomチャット自動文章整形プログラムをとっとと作る

本日のzoom会議、良いキーワードや参考URLがチャットで流れていたので、編集して議事録つくったろ!

日時とか名前が邪魔で編集しづらいよ!

余計なところはpythonで削除じゃ!!
2022-03-06 (2).png

cleaner.py
import re
a = open('export.txt', 'w')
with open('meeting_saved_chat.txt','r+') as f:
  for line in f:
        line=re.sub(r'\d\d:\d\d:\d\d....+$', '', line)
        line=line.lstrip()
        a.write(line)
a.close()

GoogleColabならすぐに実行可能。めでたしめでたし。
https://colab.research.google.com/drive/1Frvf56C6SWG9HYnz-Q5p3LppSqyn_hfp?usp=sharing

お好きなフォーマットに変えてお使いください。

1
1
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1