私は、アーティストの名前を含む文字列のリストを調べ、それをRedditの投稿のすべてのコメントと比較するプログラムを作成しています。 1つのマッチを見つけた後に停止するか、まったく動作しません(単純なテスト文字列でも)、私にバグを指摘できますか?認証を除いたReddit部分を含む。サブストリングのすべてのコメントをループする
submission = reddit.submission(id='75lnoo') # Topic about Eminem, lots of mentions of him
submission.comments.replace_more(limit=0) # Stores all the comments
comments = submission.comments.list()
artists_list = ['Eminem', 'Drake'] # Sample list
for comment in comments:
for artist in artists_list:
if artist.lower() in comment.body.lower():
print(comment.permalink() + ' - ' + artist)
/R /音楽/コメント/ 75lnoo/eminem_rips_donald_trump_in_bet_hip_hop_awards/do894hp試合がたくさんあるはず際に一つだけを印刷するだろう - エミネムだけ走った
インデントを修正してください。 –
インデントを固定しました。 –