Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Tornado non-blocking SMTP client

I'am looking for python async SMTP client to connect it with Torando IoLoop. I found only simple implmementation (http://tornadogists.org/907491/) but it's a blocking solution so it might bring performance issues.

Does anyone encountered non blocking SMTP client for Tornado? Some code snippet would be also very useful.

like image 642
berni Avatar asked Dec 12 '22 11:12

berni


1 Answers

Just FYI - I just whipped up a ioloop based smtp client. While I can't say it's production tested, it will be in the near future.

https://gist.github.com/1358253

like image 142
koblas Avatar answered Dec 26 '22 16:12

koblas