Initial commit

This commit is contained in:
BreadTube 2025-09-21 05:37:26 +09:00 committed by Corentin
commit 8ca93c1bab
7 changed files with 514 additions and 0 deletions

27
google_api_test.py Normal file
View file

@ -0,0 +1,27 @@
from pathlib import Path
import urllib.error
import urllib.request
def main():
api_key = Path('data/google_api_key.txt').read_text(encoding='utf-8').strip()
timeout = 3
http_code_ok = 200
request = urllib.request.Request(
'https://www.googleapis.com/youtube/v3/search?part=snippet'
f'&channelId=UC-kM5kL9CgjN9s9pim089gg&maxResults=10&order=date&key={api_key}')
request.add_header('Accept', 'application/json')
try:
with urllib.request.urlopen(request, timeout=timeout) as response:
if response.status != http_code_ok:
raise RuntimeError(
f'Non-OK response (status: {response.status}) : {response.read()}')
print(response.read().decode())
except urllib.error.HTTPError as error:
raise RuntimeError(f'Cannot call API: {error}: {error.read()}') from error
except urllib.error.URLError as error:
raise RuntimeError(f'Cannot call API: {error}') from error
if __name__ == '__main__':
main()