マヨケーがポアされたため、現在はロシケーがメインとなっています。

「利用者:夜泣き/スクリプト」の版間の差分

提供:唐澤貴洋Wiki
ナビゲーションに移動 検索に移動
>夜泣き
編集の要約なし
>夜泣き
編集の要約なし
1行目: 1行目:
‎とりあえず取り急ぎ。バグ報告は[[利用者・トーク:夜泣き]]
‎とりあえず取り急ぎ。バグ報告は[[利用者・トーク:夜泣き]]
'''現在バグが発見されています、一応動きはしてもちゃんとしたファイルが出てこないことに要注意'''
ただしバグ指摘募集のためにコメントアウトせず公開したままにしておきます。


== コード ==
== コード ==
44行目: 40行目:
from bs4 import BeautifulSoup as bs4
from bs4 import BeautifulSoup as bs4
from typing import Final
from typing import Final
from typing import Optional
from urllib.parse import quote
from urllib.parse import quote
import warnings
#定数・設定類
##おそらくはツイートの内容によってMarkupResemblesLocatorWarningが吐き出されることがあるので無効化
warnings.simplefilter('ignore')


#定数類
##nitterのインスタンス
##nitterのインスタンス
##生きているのはhttps://github.com/zedeus/nitter/wiki/Instancesで確認
##生きているのはhttps://github.com/zedeus/nitter/wiki/Instancesで確認
74行目: 75行目:
Limit_request: Final[int] = 5
Limit_request: Final[int] = 5


##HTTPリクエスト失敗時の待機時間
##HTTPリクエスト失敗時にさらに追加する待機時間
Waittime_error: Final[int] = 5
Waittime_error: Final[int] = 4


##HTTPリクエスト成功時の待機時間
##HTTPリクエスト成功失敗関わらず待機時間
Waittime_success: Final[int] = 1
##1秒待つだけで行儀がいいクローラーだそうなので既定では1秒
##しかし日本のポリホーモは1秒待っていても捕まえてくるので注意
##https://ja.wikipedia.org/wiki/?curid=2187212
Waittime: Final[int] = 1


##nitterのURLのドメインとユーザーネーム部分の接続部品
##nitterのURLのドメインとユーザーネーム部分の接続部品
112行目: 116行目:
##失敗かどうかは呼出側で要判定
##失敗かどうかは呼出側で要判定
def request_onetime(url: Final[str]) -> requests.models.Response:
def request_onetime(url: Final[str]) -> requests.models.Response:
return requests.get(url, timeout=Request_timeout, headers=header,allow_redirects=False)
res =requests.get(url, timeout=Request_timeout, headers=header,allow_redirects=False)
sleep(Waittime) ##DOS対策で待つ
return res


##HTTP接続を再試行回数まで試します
##HTTP接続を再試行回数まで試します
118行目: 124行目:
##接続失敗が何度も起きるとNoneを返します
##接続失敗が何度も起きるとNoneを返します
##呼出側で要None判定
##呼出側で要None判定
def request(url: Final[str]) -> requests.models.Response:
def request(url: Final[str]) -> Optional[requests.models.Response]:
counter = 1
counter = 1 ##リクエスト挑戦回数を記録
while True:
while True:
try:
try:
res = request_onetime(url)
res = request_onetime(url) ##リクエスト
res.raise_for_status()
res.raise_for_status() ##HTTPステータスコードが200番台以外でエラー発生
except requests.exceptions.RequestException as e:
except requests.exceptions.RequestException as e:
if counter <= Limit_request:
print(url + 'への通信失敗ナリ  ' + str(counter) + '/' + str(Limit_request) + '回')
print(url + 'への通信失敗ナリ  ' + str(counter) + '/' + str(Limit_request) + '回')
if counter < Limit_request: ##エラー発生時上限まで再挑戦
counter += 1
counter += 1 ##現在の試行回数1回増やす
sleep(Waittime_error)
sleep(Waittime_error) ##失敗時は長めに待つ
else:
else:
return None
return None ##失敗したらNone返却し呼出側で対処してもらう
else:
else:
return res
return res ##リクエストの結果返す


##URLの最後にスラッシュ付いていなければ付ける
##URLの最後にスラッシュ付いていなければ付ける
159行目: 165行目:
res = request_onetime(Nitterinstance) ##リクエスト
res = request_onetime(Nitterinstance) ##リクエスト
res.raise_for_status() ##HTTPステータスコードが200番台以外でエラー発生
res.raise_for_status() ##HTTPステータスコードが200番台以外でエラー発生
sleep(Waittime_success)
except requests.exceptions.RequestException as e: ##エラー発生時は終了
except requests.exceptions.RequestException as e: ##エラー発生時は終了
print('インスタンスが死んでますを')
print('インスタンスが死んでますを')
177行目: 182行目:
if res is None : ##リクエスト失敗判定
if res is None : ##リクエスト失敗判定
fail()
fail()
sleep(Waittime_success)
soup = bs4(res.text, 'html.parser') ##beautifulsoupでレスポンス解析
soup = bs4(res.text, 'html.parser') ##beautifulsoupでレスポンス解析
if soup.title == Nitter_error_title: ##タイトルがエラーでないか判定
if soup.title == Nitter_error_title: ##タイトルがエラーでないか判定
184行目: 188行目:
print("最終的に出会ったのが@" + account_str + "だった。")
print("最終的に出会ったのが@" + account_str + "だった。")
return account_str ##成功時アカウント名返す
return account_str ##成功時アカウント名返す
 
##検索クエリを取得
##検索クエリを取得
def get_query(name: Final[str]) -> requests.models.Response:
def get_query(name: Final[str]) -> requests.models.Response:
199行目: 203行目:
if res is None : ##リクエスト失敗判定
if res is None : ##リクエスト失敗判定
fail()
fail()
sleep(Waittime_success)
soup = bs4(res.text, 'html.parser') ##beautifulsoupでレスポンス解析
soup = bs4(res.text, 'html.parser') ##beautifulsoupでレスポンス解析
##1件もないときはHTMLにtimeline-noneがあるから判定
##1件もないときはHTMLにtimeline-noneがあるから判定
245行目: 248行目:
continue
continue
tweet_url = Twitterurl + re.sub('#[^#]*$','',doublesoup.find(class_='tweet-link').get('href')) ##ツイートのURL作成
tweet_url = Twitterurl + re.sub('#[^#]*$','',doublesoup.find(class_='tweet-link').get('href')) ##ツイートのURL作成
archived_tweet_url = archiveurl(tweet_url,tweet_url) ##ツイートURLをテンプレートArchiveに変化
archived_tweet_url = callinshowlinkurl(tweet_url) ##ツイートURLをテンプレートCallinShowlinkに変化
tweet_content = doublesoup.find(class_='tweet-content media-body') ##ツイートの中身だけ取り出す
tweet_content = doublesoup.find(class_='tweet-content media-body') ##ツイートの中身だけ取り出す
triplesoup = bs4(str(tweet_content) , 'html.parser') ##URLの魚拓化のためにさらに解析
triplesoup = bs4(str(tweet_content) , 'html.parser') ##URLの魚拓化のためにさらに解析
263行目: 266行目:
urls_in_tweet = soup.find_all('a')
urls_in_tweet = soup.find_all('a')
for url in urls_in_tweet:
for url in urls_in_tweet:
if not re.match('^https?://',url.get('href')) is None:
if not re.match('^https?://',url.get('href')) is None: ##先頭にhttpが付いていない物はハッシュタグの検索ページへのリンクなので処理しない
newstr = soup.new_string(archiveurl(url.get('href'),url.text)) ##テンプレートArchiveの文字列作成
newstr = soup.new_string(archiveurl(url.get('href'),url.text)) ##テンプレートArchiveの文字列作成
url.replace_with(newstr) ##テンプレートArchiveに変化
url.replace_with(newstr) ##テンプレートArchiveに変化
270行目: 273行目:
def archiveurl(url: Final[str],text: Final[str]) -> str:
def archiveurl(url: Final[str],text: Final[str]) -> str:
return '{{Archive|1=' + url + '|2=' + archive(url) + '|3=' + text  + '}}' ##テンプレートArchiveの文字列返す
return '{{Archive|1=' + url + '|2=' + archive(url) + '|3=' + text  + '}}' ##テンプレートArchiveの文字列返す
#URLをテンプレートCallinShowlinkに変化させる
def callinshowlinkurl(url: Final[str]) -> str:
return '{{CallinShowLink|1=' + url + '|2=' + archive(url) + '}}' ##テンプレートCallinShowlinkの文字列返す


##URLから魚拓返す
##URLから魚拓返す
def archive(url: Final[str]) -> str:
def archive(url: Final[str]) -> str:
archive_url = Archivetodaystandard + url
archive_url = Archivetodaystandard + url ##wikiに載せるとき用URLで失敗するとこのままhttps://archive.ph/https://xxxxxxxxの形で返される
res = request(Archivetoday + url)
res = request(Archivetoday + url) ##アクセス用URL使って結果を取得
if res is None : ##魚拓接続失敗時処理
if res is None : ##魚拓接続失敗時処理
print(archive_url + 'にアクセス失敗ナリ。出力されるテキストにはそのまま記載されるナリ。')
print(archive_url + 'にアクセス失敗ナリ。出力されるテキストにはそのまま記載されるナリ。')  
else:
else:
sleep(Waittime_success)
soup = bs4(res.text, 'html.parser') ##beautifulsoupでレスポンス解析
soup = bs4(res.text, 'html.parser') ##beautifulsoupでレスポンス解析
content = soup.find(id="CONTENT").text ##archive.todayの魚拓一覧ページの中身だけ取得
content = soup.find(id="CONTENT") ##archive.todayの魚拓一覧ページの中身だけ取得
if content[:len(Noarchive)] == Noarchive:
if content.get_text()[:len(Noarchive)] == Noarchive: ##魚拓があるかないか判定
print(url + "の魚拓がない。これはいけない。")
print(url + "の魚拓がない。これはいけない。")
else:
else:
doublesoup = bs4(res.text, 'html.parser') ##beautifulsoupでレスポンス解析
doublesoup = bs4(str(content), 'html.parser') ##beautifulsoupでレスポンス解析
archive_url = soup.find('a').get('href').replace(Archivetoday,Archivetodaystandard)
archive_url = doublesoup.find('a').get('href').replace(Archivetoday,Archivetodaystandard)
return archive_url
return archive_url


295行目: 301行目:
if showmore.text != Newest:  ##前ページへのリンクではないか判定
if showmore.text != Newest:  ##前ページへのリンクではないか判定
newurl = Nitterinstance + Search + showmore.a.get('href') ##直下のaタグのhrefの中身取ってURL頭部分と合体
newurl = Nitterinstance + Search + showmore.a.get('href') ##直下のaタグのhrefの中身取ってURL頭部分と合体
res = request(newurl)
res = request(newurl) ##接続してHTML取ってくる
if res is None:
if res is None:
fail()
fail()
sleep(Waittime_success)
newsoup = bs4(res.text, 'html.parser') ##beautifulsoupでレスポンス解析
newsoup = bs4(res.text, 'html.parser')
if newsoup.find(class_="timeline-end") is None: ##ツイートの終端ではtimeline-endだけのページになるので判定
if newsoup.find(class_="timeline-end") is None:
print(res.url + 'に移動しますを')
print(res.url + 'に移動しますを')
return res
return res ##まだ残りツイートがあるのでページを返して再度ツイート本文収集
else:
else:
print("急に残りツイートが無くなったな終了するか")
print("急に残りツイートが無くなったな終了するか")
312行目: 317行目:
txt_data = '' ##出力するデータ
txt_data = '' ##出力するデータ
limitcount = 0 ##記録数
limitcount = 0 ##記録数
krsw=False
krsw=False ##コマンドライン引数があるかどうかのフラグ
##コマンドライン引数取得
if len(sys.argv) > 1 and sys.argv[1] == 'krsw':
if len(sys.argv) > 1 and sys.argv[1] == 'krsw':
krsw=True
krsw=True
349行目: 355行目:
20件での実行例。
20件での実行例。
{|class="wikitable" style="text-align: left;"
{|class="wikitable" style="text-align: left;"
!{{Archive|1=https://twitter.com/CallinShow/status/1536743227730333696|2=http://archivecaslytosk.onion/|3=https://twitter.com/CallinShow/status/1536743227730333696}}
!{{CallinShowLink|1=https://twitter.com/CallinShow/status/1537795802302918656|2=https://archive.ph/AuE5x}}
|-
|
弁護士唐澤貴洋への匿名のメッセージを募集中!<br>
<nowiki>#</nowiki>マシュマロを投げ合おう<br>
{{Archive|1=https://marshmallow-qa.com/apt/13e40311-bdb3-47b6-a0bd-f989f20cd603|2=https://archive.ph/https://marshmallow-qa.com/apt/13e40311-bdb3-47b6-a0bd-f989f20cd603|3=marshmallow-qa.com/apt/13e40…}}
|-
!{{Archive|1=https://twitter.com/CallinShow/status/1537362287949819904|2=http://archivecaslytosk.onion/|3=https://twitter.com/CallinShow/status/1537362287949819904}}
|-
|
弁護士唐澤貴洋への匿名のメッセージを募集中!<br>
<nowiki>#</nowiki>マシュマロを投げ合おう<br>
{{Archive|1=https://marshmallow-qa.com/apt/a03fc481-95a5-4714-861f-3bf4d060b3ce|2=https://archive.ph/https://marshmallow-qa.com/apt/a03fc481-95a5-4714-861f-3bf4d060b3ce|3=marshmallow-qa.com/apt/a03fc…}}
|-
!{{Archive|1=https://twitter.com/CallinShow/status/1537752697361027072|2=http://archivecaslytosk.onion/|3=https://twitter.com/CallinShow/status/1537752697361027072}}
|-
|
菊地さん、会社の財務諸表を年末だけではなく、来週でも開示してください。<br>
<br>
事前相談実施のプレスリリースって初めて見たな。
|-
!{{Archive|1=https://twitter.com/CallinShow/status/1537754176939528192|2=http://archivecaslytosk.onion/|3=https://twitter.com/CallinShow/status/1537754176939528192}}
|-
|
オレはオレで、オレのところに来た声を届けるからな。<br>
<br>
第二回目の相談のプレスリリースあるのか。
|-
!{{Archive|1=https://twitter.com/CallinShow/status/1537795453110333440|2=http://archivecaslytosk.onion/|3=https://twitter.com/CallinShow/status/1537795453110333440}}
|-
|
テレビに真実はあるのか。<br>
<br>
言いたいことが言えないテレ朝もどうなんだろうな。
|-
!{{Archive|1=https://twitter.com/CallinShow/status/1537795802302918656|2=http://archivecaslytosk.onion/|3=https://twitter.com/CallinShow/status/1537795802302918656}}
|-
|-
|
|
391行目: 362行目:
在野の声をSNSを使って行っていくしかない。
在野の声をSNSを使って行っていくしかない。
|-
|-
!{{Archive|1=https://twitter.com/CallinShow/status/1537796046780497920|2=http://archivecaslytosk.onion/|3=https://twitter.com/CallinShow/status/1537796046780497920}}
!{{CallinShowLink|1=https://twitter.com/CallinShow/status/1537796046780497920|2=https://archive.ph/OlZiU}}
|-
|-
|
|
398行目: 369行目:
全てを変えるんだ。
全てを変えるんだ。
|-
|-
!{{Archive|1=https://twitter.com/CallinShow/status/1537796546263416832|2=http://archivecaslytosk.onion/|3=https://twitter.com/CallinShow/status/1537796546263416832}}
!{{CallinShowLink|1=https://twitter.com/CallinShow/status/1537796546263416832|2=https://archive.ph/dZjIg}}
|-
|-
|
|
410行目: 381行目:
何でこんなに若い人が苦しまないといけないんだ。
何でこんなに若い人が苦しまないといけないんだ。
|-
|-
!{{Archive|1=https://twitter.com/CallinShow/status/1537796983578333184|2=http://archivecaslytosk.onion/|3=https://twitter.com/CallinShow/status/1537796983578333184}}
!{{CallinShowLink|1=https://twitter.com/CallinShow/status/1537796983578333184|2=https://archive.ph/e1YIX}}
|-
|-
|
|
417行目: 388行目:
ガチャのチケットもってるのに使わない手はないだろ。
ガチャのチケットもってるのに使わない手はないだろ。
|-
|-
!{{Archive|1=https://twitter.com/CallinShow/status/1537797605308395520|2=http://archivecaslytosk.onion/|3=https://twitter.com/CallinShow/status/1537797605308395520}}
!{{CallinShowLink|1=https://twitter.com/CallinShow/status/1537797605308395520|2=https://archive.ph/sTiWk}}
|-
|-
|
|
👍
👍
|-
|-
!{{Archive|1=https://twitter.com/CallinShow/status/1537798386619133952|2=http://archivecaslytosk.onion/|3=https://twitter.com/CallinShow/status/1537798386619133952}}
!{{CallinShowLink|1=https://twitter.com/CallinShow/status/1537798386619133952|2=https://archive.ph/VECnL}}
|-
|-
|
|
頼むよ!君にかかってる。
頼むよ!君にかかってる。
|-
|-
!{{Archive|1=https://twitter.com/CallinShow/status/1537799090326863872|2=http://archivecaslytosk.onion/|3=https://twitter.com/CallinShow/status/1537799090326863872}}
!{{CallinShowLink|1=https://twitter.com/CallinShow/status/1537799090326863872|2=https://archive.ph/OIfjs}}
|-
|-
|
|
438行目: 409行目:
全ては見過ごされてるんだよ。
全ては見過ごされてるんだよ。
|-
|-
!{{Archive|1=https://twitter.com/CallinShow/status/1537803303752388608|2=http://archivecaslytosk.onion/|3=https://twitter.com/CallinShow/status/1537803303752388608}}
!{{CallinShowLink|1=https://twitter.com/CallinShow/status/1537803303752388608|2=https://archive.ph/M0BdR}}
|-
|-
|
|
447行目: 418行目:
引用リスペクト 梅野源治選手
引用リスペクト 梅野源治選手
|-
|-
!{{Archive|1=https://twitter.com/CallinShow/status/1538070416488792064|2=http://archivecaslytosk.onion/|3=https://twitter.com/CallinShow/status/1538070416488792064}}
!{{CallinShowLink|1=https://twitter.com/CallinShow/status/1538070416488792064|2=https://archive.ph/9d43q}}
|-
|-
|
|
454行目: 425行目:
貴重な意見ありがとう。
貴重な意見ありがとう。
|-
|-
!{{Archive|1=https://twitter.com/CallinShow/status/1538070983827165186|2=http://archivecaslytosk.onion/|3=https://twitter.com/CallinShow/status/1538070983827165186}}
!{{CallinShowLink|1=https://twitter.com/CallinShow/status/1538070983827165186|2=https://archive.ph/nz7k9}}
|-
|-
|
|
466行目: 437行目:
若い人たちで国を作るんだ。
若い人たちで国を作るんだ。
|-
|-
!{{Archive|1=https://twitter.com/CallinShow/status/1538071752802467840|2=http://archivecaslytosk.onion/|3=https://twitter.com/CallinShow/status/1538071752802467840}}
!{{CallinShowLink|1=https://twitter.com/CallinShow/status/1538071752802467840|2=https://archive.ph/ON3Hx}}
|-
|-
|
|
487行目: 458行目:
こんな人今までいたか。
こんな人今までいたか。
|-
|-
!{{Archive|1=https://twitter.com/CallinShow/status/1538072997734793216|2=http://archivecaslytosk.onion/|3=https://twitter.com/CallinShow/status/1538072997734793216}}
!{{CallinShowLink|1=https://twitter.com/CallinShow/status/1538072997734793216|2=https://archive.ph/AoMxP}}
|-
|-
|
|
504行目: 475行目:
その一心でしかないと思う。
その一心でしかないと思う。
|-
|-
!{{Archive|1=https://twitter.com/CallinShow/status/1538073614540754944|2=http://archivecaslytosk.onion/|3=https://twitter.com/CallinShow/status/1538073614540754944}}
!{{CallinShowLink|1=https://twitter.com/CallinShow/status/1538073614540754944|2=https://archive.ph/SYHKj}}
|-
|-
|
|
517行目: 488行目:
いいじゃないか、澱んだ永田町が少しは澄んでくるんじゃないか。
いいじゃないか、澱んだ永田町が少しは澄んでくるんじゃないか。
|-
|-
!{{Archive|1=https://twitter.com/CallinShow/status/1538074524721491968|2=http://archivecaslytosk.onion/|3=https://twitter.com/CallinShow/status/1538074524721491968}}
!{{CallinShowLink|1=https://twitter.com/CallinShow/status/1538074524721491968|2=https://archive.ph/vqHml}}
|-
|-
|
|
524行目: 495行目:
澱んだ街ごと食い荒らすんだ。
澱んだ街ごと食い荒らすんだ。
|-
|-
!{{Archive|1=https://twitter.com/CallinShow/status/1538582552423780352|2=https://archive.ph/https://twitter.com/CallinShow/status/1538582552423780352|3=https://twitter.com/CallinShow/status/1538582552423780352}}
!{{CallinShowLink|1=https://twitter.com/CallinShow/status/1538582552423780352|2=https://archive.ph/https://twitter.com/CallinShow/status/1538582552423780352}}
|-
|-
|
|
530行目: 501行目:
<nowiki>#</nowiki>マシュマロを投げ合おう<br>
<nowiki>#</nowiki>マシュマロを投げ合おう<br>
{{Archive|1=https://marshmallow-qa.com/apt/21e00e4b-e468-42e9-bd14-44c2bf9b37d0|2=https://archive.ph/https://marshmallow-qa.com/apt/21e00e4b-e468-42e9-bd14-44c2bf9b37d0|3=marshmallow-qa.com/apt/21e00…}}
{{Archive|1=https://marshmallow-qa.com/apt/21e00e4b-e468-42e9-bd14-44c2bf9b37d0|2=https://archive.ph/https://marshmallow-qa.com/apt/21e00e4b-e468-42e9-bd14-44c2bf9b37d0|3=marshmallow-qa.com/apt/21e00…}}
|-
!{{CallinShowLink|1=https://twitter.com/CallinShow/status/1539223436337516548|2=https://archive.ph/tBmP8}}
|-
|
{{Archive|1=https://www.fsa.go.jp/sesc/news/c_2022/2022/20220621-3.html|2=https://archive.ph/EyPMc|3=fsa.go.jp/sesc/news/c_2022/2…}}<br>
<br>
エクシアさん、こういった問題について、どうお考えなんですかね。
|-
!{{CallinShowLink|1=https://twitter.com/CallinShow/status/1539223981106302976|2=https://archive.ph/6XxFe}}
|-
|
エクシアの関戸さんの経営されている会社等のご存じの方いらっしゃいましたらご連絡お願い申し上げます。
|-
!{{CallinShowLink|1=https://twitter.com/CallinShow/status/1539224957829672960|2=https://archive.ph/iJxRd}}
|-
|
そちらは法人名でしょうか?
|-
!{{CallinShowLink|1=https://twitter.com/CallinShow/status/1539237355701379075|2=https://archive.ph/https://twitter.com/CallinShow/status/1539237355701379075}}
|-
|
菊地さんは虎ノ門ヒルズいくらで買ったんだろ。<br>
キャッシュで
|-
!{{CallinShowLink|1=https://twitter.com/CallinShow/status/1539237797281816576|2=https://archive.ph/https://twitter.com/CallinShow/status/1539237797281816576}}
|-
|
仮に3億だとして、これを買うのに、所得としては6億くらいの報酬を得ないとダメだよな。
|-
|-
|}
|}

2022年6月21日 (火) 23:06時点における版

‎とりあえず取り急ぎ。バグ報告は利用者・トーク:夜泣き

コード

#!/usr/bin/env python3

'''
当コードは恒心停止してしまったhttps://rentry.co/7298gの降臨ショーツイート自動収集スクリプトの復刻改善版です
前開発者との出会いに感謝

〜〜〜〜〜〜〜〜〜〜〜〜〜【使い方】〜〜〜〜〜〜〜〜〜〜〜〜〜

・terminalに $ python3 (ファイル名) で作動します
・定数類は状況に応じて変えてください
・$ python3 (ファイル名) krsw コマンドライン引数をkrswとつけると自動モードです
・自動モードではユーザーは降臨ショー、クエリはなし、取得上限まで自動です
・つまりユーザー入力が要りません

〜〜〜〜〜〜〜〜〜〜〜〜〜〜〜〜〜〜〜〜〜〜〜〜〜〜〜〜〜〜〜

ーーーーーーーーーーーーー【注意点】ーーーーーーーーーーーーー

・環境は玉葱前提です。
・Whonix-Workstationで動作確認済
・bs4はインストールしないと標準で入ってません
・requestsも環境によっては入っていないかもしれない
・$ pip install bs4 requests
・pipも入っていなければ$ sudo apt install pip
・バグ報告はhttps://krsw-wiki.org/wiki/?curid=15799

ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー
'''

#インポート類
import sys
import codecs
import re
from time import sleep
import requests
from bs4 import BeautifulSoup as bs4
from typing import Final
from typing import Optional
from urllib.parse import quote
import warnings

#定数・設定類
##おそらくはツイートの内容によってMarkupResemblesLocatorWarningが吐き出されることがあるので無効化
warnings.simplefilter('ignore')

##nitterのインスタンス
##生きているのはhttps://github.com/zedeus/nitter/wiki/Instancesで確認
Nitterinstance = 'http://nitterqdyumlovt7tjqpdjrluitgmtpa53qq3idlpgoe4kxo7gs3xvad.onion/'

##archive.todayの魚拓
##実際にアクセスして魚拓があるか調べるのにはonionを使用
Archivetoday  = 'http://archiveiya74codqgiixo33q62qlrqtkgmcitqx5u2oeqnmn5bpcbiyd.onion/'

##archive.todayの魚拓
##記事の文章に使うのはクリアネット
Archivetodaystandard = 'https://archive.ph/'

##twitterのURL
Twitterurl = 'https://twitter.com/'

##降臨ショーのユーザーネーム
Callinshow: Final[str] = 'CallinShow'

##HTTPリクエストのタイムアウト秒数
Request_timeout: Final[int] = 30

##取得するツイート数の上限
Limit_tweet: Final[int] = 100

##HTTPリクエスト失敗時の再試行回数
Limit_request: Final[int] = 5

##HTTPリクエスト失敗時にさらに追加する待機時間
Waittime_error: Final[int] = 4

##HTTPリクエスト成功失敗関わらず待機時間
##1秒待つだけで行儀がいいクローラーだそうなので既定では1秒
##しかし日本のポリホーモは1秒待っていても捕まえてくるので注意
##https://ja.wikipedia.org/wiki/?curid=2187212
Waittime: Final[int] = 1

##nitterのURLのドメインとユーザーネーム部分の接続部品
Searchquery: Final[str] = "search?q=from%3A"

##HTTPリクエスト時のユーザーエージェントとヘッダ
user_agent: Final[str] = 'Mozilla/5.0 (Windows NT 10.0; rv:91.0) Gecko/20100101 Firefox/91.0'
header = {
    'User-Agent': user_agent
}

##nitterでユーザーがいなかったとき返ってくるページのタイトル
##万が一仕様変更で変わったとき用
Nitter_error_title: Final[str] = "Error|nitter"

##archive.todayで魚拓がなかったときのレスポンス
##万が一仕様変更で変わったとき用
Noarchive: Final[str] = "No results"

##nitterで次ページ遷移時のURLから抜け落ちてる部分
Search: Final[str] = "search"

##nitterの前ページ読み込み部分の名前
##万が一仕様変更で変わったとき用
Newest: Final[str] = "Load newest"

#関数類
##坂根輝美に場所を知らせます
def pickupcounter():
	print('ピックアップカウンター付近でふ')
	
##引数のURLにHTTP接続します
##失敗かどうかは呼出側で要判定
def request_onetime(url: Final[str]) -> requests.models.Response:
	res =requests.get(url, timeout=Request_timeout, headers=header,allow_redirects=False)
	sleep(Waittime) ##DOS対策で待つ
	return res

##HTTP接続を再試行回数まで試します
##成功すると結果を返します
##接続失敗が何度も起きるとNoneを返します
##呼出側で要None判定
def request(url: Final[str]) -> Optional[requests.models.Response]:
	counter = 1 ##リクエスト挑戦回数を記録
	while True:
		try:
			res = request_onetime(url) ##リクエスト
			res.raise_for_status() ##HTTPステータスコードが200番台以外でエラー発生
		except requests.exceptions.RequestException as e:
			print(url + 'への通信失敗ナリ  ' + str(counter) + '/' + str(Limit_request) + '回')
			if counter < Limit_request: ##エラー発生時上限まで再挑戦
				counter += 1 ##現在の試行回数1回増やす
				sleep(Waittime_error) ##失敗時は長めに待つ
			else:
				return None ##失敗したらNone返却し呼出側で対処してもらう
		else:
			return res ##リクエストの結果返す

##URLの最後にスラッシュ付いていなければ付ける
##Twitterだけスラッシュ付いていないほうが都合いいので抜く
def slash_check():
	global Nitterinstance
	global Archivetoday
	global Archivetodaystandard
	global Twitterurl
	if Nitterinstance[-1] != '/':
		Nitterinstance = Nitterinstance + '/'
	if Archivetoday[-1] != '/':
		Archivetoday = Archivetoday + '/'
	if Archivetodaystandard[-1] != '/':
		Archivetodaystandard = Archivetodaystandard + '/'
	if Twitterurl[-1] == '/':
		Twitterurl = Twitterurl[0:len(Twitterurl)-1]

##nitterのインスタンスが生きているかチェック
##死んでいたらそこで終了
##接続を一回しか試さないrequest_onetimeを使っているのは
##激重インスタンスが指定されたとき試行回数増やして偶然成功してそのまま実行されるのを躱すため
def instance_check():
	print("nitterのインスタンスチェック中ですを")
	try:
		res = request_onetime(Nitterinstance) ##リクエスト
		res.raise_for_status() ##HTTPステータスコードが200番台以外でエラー発生
	except requests.exceptions.RequestException as e: ##エラー発生時は終了
		print('インスタンスが死んでますを')
		exit()

##ツイート収集するユーザー名を取得
##何も入力しないと尊師を指定するよう改良
def get_name() -> str:
	while True:
		print('アカウント名を入れなければない。空白だと自動的に' + Callinshow + 'になりますを')
		account_str = input() ##ユーザー入力受付
		##空欄で降臨ショー
		if account_str == '':
			return Callinshow
		else:
			res = request(Nitterinstance + account_str) ##リクエストして結果取得
			if res is None : ##リクエスト失敗判定
				fail()
			soup = bs4(res.text, 'html.parser') ##beautifulsoupでレスポンス解析
			if soup.title == Nitter_error_title: ##タイトルがエラーでないか判定
				print(account_str + "は実在の人物ではありませんでした") ##エラー時ループに戻る
			else:
				print("最終的に出会ったのが@" + account_str + "だった。")
				return account_str ##成功時アカウント名返す

##検索クエリを取得
def get_query(name: Final[str]) -> requests.models.Response:
	while True:
		print("検索クエリを入れるナリ。複数ある時は一つの塊ごとに入力するナリ。空欄を入れると検索開始ナリ。")
		print("例:「無能」→改行→「脱糞」→改行→「弟殺し」→改行→空欄で改行")
		query_str = [name] ##検索クエリ文字列をquery_strに収納。ユーザー名を先に含めておく
		query_input = input() ##ユーザー入力受付
		##空欄が押されるまでユーザー入力受付
		while query_input != '':
			query_str.append(quote(query_input))
			query_input = input()
		res = request(Nitterinstance + Searchquery + '+'.join(query_str)) ##リクエストして結果取得
		if res is None : ##リクエスト失敗判定
			fail()
		soup = bs4(res.text, 'html.parser') ##beautifulsoupでレスポンス解析
		##1件もないときはHTMLにtimeline-noneがあるから判定
		if soup.find(class_='timeline-none') is None:
			print("クエリのピースが埋まっていく。")
			return res ##成功したリクエストのレスポンスを返す
		else:
			print("適切なクエリを入力することを切に望む。")

##接続失敗時処理
def fail():
	print("接続失敗しすぎで強制終了ナリ")
	if txt_data != '': ##取得成功したデータがあれば発行
		print("取得成功した分だけ発行しますを")
		make_txt()
	exit() ##終了

##テキスト発行
def make_txt():
	global txt_data
	txt_data = '{|class="wikitable" style="text-align: left;"\n' + txt_data + '|}' ##wikiの表の最初と最後
	##ファイル出力
	with codecs.open('tweet.txt', 'w', 'utf-8') as f:
		f.write(txt_data)
	print("テキストファイル手に入ったやで〜")
	exit() ##終了

##記録を中断するツイート
def stop_word() -> str:
	print("ここにツイートの本文を入れる!すると・・・・なんと一致するツイートで記録を中断する!(これは本当の仕様です。)ちなみに、空欄だと" + str(Limit_tweet) + "件まで終了しない。")
	end_str = input() ##ユーザー入力受付
	return end_str

#ページからツイート本文をtxt_dataに収めていく
def get_tweet(page: Final[requests.models.Response],stop: Final[str]):
	global txt_data
	global limitcount
	soup = bs4(page.text, 'html.parser') ##beautifulsoupでレスポンス解析
	tweets = soup.find_all(class_='timeline-item') ##一ツイートのブロックごとにリストで取得
	for tweet in tweets: ##一ツイート毎に処理
		doublesoup = bs4(str(tweet) , 'html.parser') ##ツイートをさらに解析
		if doublesoup.a.text == Newest: ##Load Newestのボタンは処理しない
			continue
		if not doublesoup.find(class_='retweet-header') is None: ##retweet-headerはリツイートを示すので入っていれば処理しない
			continue
		tweet_url = Twitterurl + re.sub('#[^#]*$','',doublesoup.find(class_='tweet-link').get('href')) ##ツイートのURL作成
		archived_tweet_url = callinshowlinkurl(tweet_url) ##ツイートURLをテンプレートCallinShowlinkに変化
		tweet_content = doublesoup.find(class_='tweet-content media-body') ##ツイートの中身だけ取り出す
		triplesoup = bs4(str(tweet_content) , 'html.parser') ##URLの魚拓化のためにさらに解析
		archivesoup(triplesoup) ##ツイートの中身のリンクをテンプレートArchiveに変化
		txt_data = '!' + archived_tweet_url + '\n|-\n|\n' + triplesoup.get_text().replace('\n','<br>\n').replace('#','<nowiki>#</nowiki>') + '\n|-\n' + txt_data ##wikiの文法に変化
		limitcount += 1 ##記録回数をカウント
		print("ツイートを" + str(limitcount) + "件も記録したンゴwwwwwwwwwww")
		if stop != '' and stop in triplesoup.get_text(): ##目的ツイートか判定
			print("目的ツイート発見でもう尾張屋根")
			make_txt()
		if limitcount >= Limit_tweet: ##上限達成か判定
			print(str(Limit_tweet) + "件も記録している。もうやめにしませんか。")
			make_txt()

#soupをテンプレートArchiveに変化させる
def archivesoup(soup):
	urls_in_tweet = soup.find_all('a')
	for url in urls_in_tweet:
		if not re.match('^https?://',url.get('href')) is None: ##先頭にhttpが付いていない物はハッシュタグの検索ページへのリンクなので処理しない
			newstr = soup.new_string(archiveurl(url.get('href'),url.text)) ##テンプレートArchiveの文字列作成
			url.replace_with(newstr) ##テンプレートArchiveに変化

#URLをテンプレートArchiveに変化させる
def archiveurl(url: Final[str],text: Final[str]) -> str:
	return '{{Archive|1=' + url + '|2=' + archive(url) + '|3=' + text  + '}}' ##テンプレートArchiveの文字列返す
	
#URLをテンプレートCallinShowlinkに変化させる
def callinshowlinkurl(url: Final[str]) -> str:
	return '{{CallinShowLink|1=' + url + '|2=' + archive(url) + '}}' ##テンプレートCallinShowlinkの文字列返す

##URLから魚拓返す
def archive(url: Final[str]) -> str:
	archive_url = Archivetodaystandard + url ##wikiに載せるとき用URLで失敗するとこのままhttps://archive.ph/https://xxxxxxxxの形で返される
	res = request(Archivetoday + url) ##アクセス用URL使って結果を取得
	if res is None : ##魚拓接続失敗時処理
		print(archive_url + 'にアクセス失敗ナリ。出力されるテキストにはそのまま記載されるナリ。') 
	else:
		soup = bs4(res.text, 'html.parser') ##beautifulsoupでレスポンス解析
		content = soup.find(id="CONTENT") ##archive.todayの魚拓一覧ページの中身だけ取得
		if content.get_text()[:len(Noarchive)] == Noarchive: ##魚拓があるかないか判定
			print(url + "の魚拓がない。これはいけない。")
		else:
			doublesoup = bs4(str(content), 'html.parser') ##beautifulsoupでレスポンス解析
			archive_url = doublesoup.find('a').get('href').replace(Archivetoday,Archivetodaystandard)
	return archive_url

##新しいページを取得
def getnewpage(page: Final[requests.models.Response]) -> requests.models.Response:
	soup = bs4(page.text, 'html.parser') ##beautifulsoupでレスポンス解析
	showmores = soup.find_all(class_="show-more")
	for showmore in showmores: ##show-moreに次ページへのリンクか前ページへのリンクがある
		if showmore.text != Newest:  ##前ページへのリンクではないか判定
			newurl = Nitterinstance + Search + showmore.a.get('href') ##直下のaタグのhrefの中身取ってURL頭部分と合体
	res = request(newurl) ##接続してHTML取ってくる
	if res is None:
		fail()
	newsoup = bs4(res.text, 'html.parser') ##beautifulsoupでレスポンス解析
	if newsoup.find(class_="timeline-end") is None: ##ツイートの終端ではtimeline-endだけのページになるので判定
		print(res.url + 'に移動しますを')
		return res ##まだ残りツイートがあるのでページを返して再度ツイート本文収集
	else:
		print("急に残りツイートが無くなったな終了するか")
		make_txt()



##メイン
txt_data = '' ##出力するデータ
limitcount = 0 ##記録数
krsw=False ##コマンドライン引数があるかどうかのフラグ
##コマンドライン引数取得
if len(sys.argv) > 1 and sys.argv[1] == 'krsw':
	krsw=True
slash_check() ##スラッシュが抜けてないかチェック
instance_check() ##インスタンスが死んでないかチェック

##ユーザー名取得
if krsw:
	print('名前は自動的に' + Callinshow + 'にナリます')
	name = Callinshow
else:
	name = get_name()

##検索クエリとページ取得
if krsw:
	print('クエリは自動的になしにナリます')
	page = request(Nitterinstance + Searchquery + name)
	if page is None:
		fail()
else:
	page = get_query(name)

##終わりにするツイート取得
if krsw:
	print('終わりにするツイートは自動的になしにナリます')
	stop = ''
else:
	stop = stop_word()

##ツイートを取得し終えるまでループ
while True:
	get_tweet(page,stop) ##txt_dataにページ内のリツイート以外の全ツイートの中身突っ込んでいく
	page = getnewpage(page) ##新しいページ取得

実行例

20件での実行例。

https://twitter.com/CallinShow/status/1537795802302918656(魚拓)

テレビ局なんか既得権益だろ。

在野の声をSNSを使って行っていくしかない。

https://twitter.com/CallinShow/status/1537796046780497920(魚拓)

オレたちはもう騙されないんだ。

全てを変えるんだ。

https://twitter.com/CallinShow/status/1537796546263416832(魚拓)

なあ、この国は良くなってるのか。

若い人は安く使われ、
物価は上がり、
公共事業だけはお金を垂れ流していく。
少子化が進み、年金も当てにならない。

何でこんなに若い人が苦しまないといけないんだ。

https://twitter.com/CallinShow/status/1537796983578333184(魚拓)

若い人が全員選挙行ったらこの国は変わるぜ。

ガチャのチケットもってるのに使わない手はないだろ。

https://twitter.com/CallinShow/status/1537797605308395520(魚拓)

👍

https://twitter.com/CallinShow/status/1537798386619133952(魚拓)

頼むよ!君にかかってる。

https://twitter.com/CallinShow/status/1537799090326863872(魚拓)

引きこもりの人は引きこもりになりたくてなったんじゃない。
苦しんでるんだ。
誰かがその声を聞く必要がある。
強制的に連れ出すとかやばいだろ。
法規制する必要あるでしょ。
強要罪だぜ。
全ては見過ごされてるんだよ。

https://twitter.com/CallinShow/status/1537803303752388608(魚拓)

この国は

やばいだろ。

引用リスペクト 梅野源治選手

https://twitter.com/CallinShow/status/1538070416488792064(魚拓)

本当、そうだと思う。

貴重な意見ありがとう。

https://twitter.com/CallinShow/status/1538070983827165186(魚拓)

この国は円安が進み、外国旅行に行ったことのない若者も多く。
どうなるんだ。

ライジングサンってどうなってるんだ。

今は戦後の混乱期と同じだ。

若い人たちで国を作るんだ。

https://twitter.com/CallinShow/status/1538071752802467840(魚拓)

立花先生は、いつも一緒懸命だ。

信念は変わらない。

理不尽との闘い。

立花先生が裁判を起こすことは至極まともなことだ。

だって最後は司法なはずだろ。

でも、裁判は、ひどい判決も多い。

権力に擦り寄ることもある。

そんな全てを曝け出しているのが立花先生だ。

こんな人今までいたか。

https://twitter.com/CallinShow/status/1538072997734793216(魚拓)

立花先生はいつも現場主義。

人々の声を拾い。

それを手練手管で伝えいく。

時に道化を案じるのは、みんなに問題を気づいてほしいからだ。

この3年間、少数政党でこれだけ目立ち続けた政党があるか。

それは全て、NHKを変えたい、人々に良くなってもらいたい。

その一心でしかないと思う。

https://twitter.com/CallinShow/status/1538073614540754944(魚拓)

全てをめくっていくんだよ。

ガーシーさんは、その第一章だ。

許せないことを言うことは大切だと。

ガーシー党は、言わば情報公開政党ってことだろ。

いいじゃないか、澱んだ永田町が少しは澄んでくるんじゃないか。

https://twitter.com/CallinShow/status/1538074524721491968(魚拓)

piped.kavin.rocks/nrJqzmMWUCU(魚拓)

澱んだ街ごと食い荒らすんだ。

https://twitter.com/CallinShow/status/1538582552423780352(魚拓)

弁護士唐澤貴洋への匿名のメッセージを募集中!
#マシュマロを投げ合おう
marshmallow-qa.com/apt/21e00…(魚拓)

https://twitter.com/CallinShow/status/1539223436337516548(魚拓)

fsa.go.jp/sesc/news/c_2022/2…(魚拓)

エクシアさん、こういった問題について、どうお考えなんですかね。

https://twitter.com/CallinShow/status/1539223981106302976(魚拓)

エクシアの関戸さんの経営されている会社等のご存じの方いらっしゃいましたらご連絡お願い申し上げます。

https://twitter.com/CallinShow/status/1539224957829672960(魚拓)

そちらは法人名でしょうか?

https://twitter.com/CallinShow/status/1539237355701379075(魚拓)

菊地さんは虎ノ門ヒルズいくらで買ったんだろ。
キャッシュで

https://twitter.com/CallinShow/status/1539237797281816576(魚拓)

仮に3億だとして、これを買うのに、所得としては6億くらいの報酬を得ないとダメだよな。