サンプルコードを使用してYouTubeにログインしています:
def auth(email, password):
# Setup service.
yt_service = gdata.youtube.service.YouTubeService()
yt_service.email = email
yt_service.password = password
yt_service.source = 'youtube_interface'
yt_service.developer_key = DEVELOPER_KEY
# Login.
yt_service.ProgrammaticLogin()
return yt_service
ログインが成功したかどうかはどうすればわかりますか?そして、ログアウトする方法は?