11 lines
212 B
Python
11 lines
212 B
Python
#!/usr/bin/env python3
|
|
|
|
from youtube_api import YouTubeAPI
|
|
|
|
# Read YouTube API Key
|
|
def getYouTubeAPIKey():
|
|
return open('youtube.key', 'r').read()
|
|
|
|
api = YouTubeAPI(getYouTubeAPIKey())
|
|
print(getYouTubeAPIKey())
|