From 6dbca1380c03bdcd0c71cee6b9eb5ef183899985 Mon Sep 17 00:00:00 2001 From: sigma67 Date: Sun, 31 Dec 2023 12:51:37 +0100 Subject: [PATCH] fix constants.py --- pyproject.toml | 1 - ytmusicapi/constants.py | 136 ++++------------------------------------ ytmusicapi/setup.py | 2 +- 3 files changed, 12 insertions(+), 127 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 185129b..314a703 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -38,7 +38,6 @@ include-package-data=false command_line = "-m unittest discover tests" [tool.ruff] -#fix = true line-length = 110 ignore = [ "F403", "F405", "F821", "E731" ] extend-select = [ diff --git a/ytmusicapi/constants.py b/ytmusicapi/constants.py index a497680..3092680 100644 --- a/ytmusicapi/constants.py +++ b/ytmusicapi/constants.py @@ -3,135 +3,21 @@ YTM_PARAMS = "?alt=json" YTM_PARAMS_KEY = "&key=AIzaSyC9XL3ZjWddXya6X74dJoCTL-WEYFDNX30" USER_AGENT = "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:88.0) Gecko/20100101 Firefox/88.0" +# fmt: off SUPPORTED_LANGUAGES = { - "ar", - "de", - "en", - "es", - "fr", - "hi", - "it", - "ja", - "ko", - "nl", - "pt", - "ru", - "tr", - "ur", - "zh_CN", - "zh_TW", + "ar", "de", "en", "es", "fr", "hi", "it", "ja", "ko", "nl", "pt", "ru", "tr", "ur", "zh_CN", + "zh_TW" } SUPPORTED_LOCATIONS = { - "AE", - "AR", - "AT", - "AU", - "AZ", - "BA", - "BD", - "BE", - "BG", - "BH", - "BO", - "BR", - "BY", - "CA", - "CH", - "CL", - "CO", - "CR", - "CY", - "CZ", - "DE", - "DK", - "DO", - "DZ", - "EC", - "EE", - "EG", - "ES", - "FI", - "FR", - "GB", - "GE", - "GH", - "GR", - "GT", - "HK", - "HN", - "HR", - "HU", - "ID", - "IE", - "IL", - "IN", - "IQ", - "IS", - "IT", - "JM", - "JO", - "JP", - "KE", - "KH", - "KR", - "KW", - "KZ", - "LA", - "LB", - "LI", - "LK", - "LT", - "LU", - "LV", - "LY", - "MA", - "ME", - "MK", - "MT", - "MX", - "MY", - "NG", - "NI", - "NL", - "NO", - "NP", - "NZ", - "OM", - "PA", - "PE", - "PG", - "PH", - "PK", - "PL", - "PR", - "PT", - "PY", - "QA", - "RO", - "RS", - "RU", - "SA", - "SE", - "SG", - "SI", - "SK", - "SN", - "SV", - "TH", - "TN", - "TR", - "TW", - "TZ", - "UA", - "UG", - "US", - "UY", - "VE", - "VN", - "YE", - "ZA", - "ZW", + "AE", "AR", "AT", "AU", "AZ", "BA", "BD", "BE", "BG", "BH", "BO", "BR", "BY", "CA", "CH", "CL", + "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "DZ", "EC", "EE", "EG", "ES", "FI", "FR", "GB", "GE", + "GH", "GR", "GT", "HK", "HN", "HR", "HU", "ID", "IE", "IL", "IN", "IQ", "IS", "IT", "JM", "JO", + "JP", "KE", "KH", "KR", "KW", "KZ", "LA", "LB", "LI", "LK", "LT", "LU", "LV", "LY", "MA", "ME", + "MK", "MT", "MX", "MY", "NG", "NI", "NL", "NO", "NP", "NZ", "OM", "PA", "PE", "PG", "PH", "PK", + "PL", "PR", "PT", "PY", "QA", "RO", "RS", "RU", "SA", "SE", "SG", "SI", "SK", "SN", "SV", "TH", + "TN", "TR", "TW", "TZ", "UA", "UG", "US", "UY", "VE", "VN", "YE", "ZA", "ZW" } +# fmt: on OAUTH_CLIENT_ID = "861556708454-d6dlm3lh05idd8npek18k6be8ba3oc68.apps.googleusercontent.com" OAUTH_CLIENT_SECRET = "SboVhoG9s0rNafixCSGGKXAT" OAUTH_SCOPE = "https://www.googleapis.com/auth/youtube" diff --git a/ytmusicapi/setup.py b/ytmusicapi/setup.py index 4a22358..67da6de 100644 --- a/ytmusicapi/setup.py +++ b/ytmusicapi/setup.py @@ -1,7 +1,7 @@ import argparse import sys -from typing import Dict from pathlib import Path +from typing import Dict import requests