diff --git a/youtube_channel.py b/youtube_channel.py index 842ea91..c5d2395 100644 --- a/youtube_channel.py +++ b/youtube_channel.py @@ -68,7 +68,7 @@ def process_channel(channelid: str): shelfintp = mysession.get("https://www.youtube.com/"+str(item)) if not """

Sorry for the interruption. We have been receiving a large volume of requests from your network.

-

To continue with your YouTube experience, please fill out the form below.

""" in shelfintp.text and not shelfintp.status_code == 200: +

To continue with your YouTube experience, please fill out the form below.

""" in shelfintp.text and shelfintp.status_code == 200: break else: print("Non-200 status code, waiting 30 seconds before retrying...") @@ -113,7 +113,7 @@ def process_channel(channelid: str): shelfintc = mysession.get("https://www.youtube.com/"+str(item)) if not """

Sorry for the interruption. We have been receiving a large volume of requests from your network.

-

To continue with your YouTube experience, please fill out the form below.

""" in shelfintc.text and not shelfintc.status_code == 200: +

To continue with your YouTube experience, please fill out the form below.

""" in shelfintc.text and shelfintc.status_code == 200: break else: print("Non-200 status code, waiting 30 seconds before retrying...")