Advertisement
Guest User

Untitled

a guest
Apr 19th, 2014
38
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. status = clientSocket.recv(1024)
  2. print (status)
  3.  
  4. b'250-mx.google.com at your service, [107.216.175.252]rn250-SIZE 35882577rn250-8BITMIMErn250-AUTH LOGIN PLAIN XOAUTH XOAUTH2 PLAIN-CLIENTTOKENrn250-ENHANCEDSTATUSCODESrn250 CHUNKINGrn'
  5.  
  6. >>> str(b'Zoot!')
  7. "b'Zoot!'"
  8.  
  9. >>> print(status.decode())
  10. 250-mx.google.com at your service, [107.216.175.252]
  11. 250-SIZE 35882577
  12. 250-8BITMIME
  13. 250-AUTH LOGIN PLAIN XOAUTH XOAUTH2 PLAIN-CLIENTTOKEN
  14. 250-ENHANCEDSTATUSCODES
  15. 250 CHUNKING
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement