`vm` isn't installed into the Poetry virtualenv and can benefit from
having more explicit requirements. Also touched up some of the error
handling as I didn't do a great job provisioning my API keys and the
errors were being swallowed.
print("Error: Failed to access YouTube API. Please check your YOUTUBE_API_KEY and ensure it is valid.")
print(
f"Error: Failed to access YouTube API. Please check your YOUTUBE_API_KEY and ensure it is valid. {e}"
)
if __name__ == '__main__':
if __name__ == "__main__":
parser = argparse.ArgumentParser(description='vm (video meta) extracts metadata about a video, such as the transcript and the video\'s duration. By Daniel Miessler.')
parser = argparse.ArgumentParser(
parser.add_argument('url', nargs='?', help='YouTube video URL')
description="vm (video meta) extracts metadata about a video, such as the transcript and the video's duration. By Daniel Miessler."
parser.add_argument('--duration', action='store_true', help='Output only the duration')
)
parser.add_argument('--transcript', action='store_true', help='Output only the transcript')
parser.add_argument("url", nargs="?", help="YouTube video URL")
parser.add_argument(
"--duration", action="store_true", help="Output only the duration"
)
parser.add_argument(
"--transcript", action="store_true", help="Output only the transcript"