I try to get email from gmail:
box = poplib.POP3_SSL('pop.gmail.com')
print box.getwelcome()
print box.user(user)
print box.pass_(password)
print box.list()
but I get:
+OK Gpop ready for requests from #######
+OK send PASS
+OK Welcome.
('+OK 0 messages (0 bytes)', [], 0)
and my gmail not empty. What wrong? python ver 2.7