Skip to content

Commit

Permalink
Create youtube.py
Browse files Browse the repository at this point in the history
  • Loading branch information
TheChampu authored Oct 27, 2024
1 parent 5e326bd commit 6f89f44
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions ChampuMusic/core/youtube.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
import json
import os

YOUTUBE = {
"access_token": "ya29.a0AeDClZCWhJmZVa8F3dekhUnsqJD2rbVZbqRW8JfIDHun7O4dyzQdMe6KJ0SHOVuxxp0P7pW499JTVYgToi4TvtXQEKj_I5Bd831Zqj5_ZQ8u6qNX9IH8-ul2vA8zaOm-FwKdWcXJNcZYlssvpYAI6uEJ84oZJS_gq8MwcV-eMpVW_U64F-WpaCgYKARESARISFQHGX2MiS96BDOnz2FcmBr99MFTPEg0187",
"expires": 1730055102.644152,
"refresh_token": "1//05_QJ5UjnairhCgYIARAAGAUSNgF-L9Irc5KD12RJqb_KIFaNzGGcnY4dmo8BQUkLNaMzypntz4uYWKcamZ4p95LpikruLy7IFw",
"token_type": "Bearer"
}


def vipboy():
TOKEN_DATA = os.getenv("TOKEN_DATA")
if not TOKEN_DATA:
os.environ["TOKEN_DATA"] = json.dumps(YOUTUBE)

0 comments on commit 6f89f44

Please sign in to comment.