用于编写定期发送电子邮件的应用程序的 Python 库/框架
我正在考虑编写一个应用程序来隐藏 reddit 线程中的评论(示例)到电子邮件。这个想法是解析reddit json数据(示例 )并将新评论作为普通电子邮件发送给订阅用户。其中一位用户可以是gmane,所以你也可以阅读那里的评论。编写这个工具的动机是在我们最喜欢的电子邮件客户端(带有过滤器等)中阅读 reddit 评论,而无需刷新 reddit 线程。
哪个库/框架最适合这项任务?为了更快地完成它?用最少的代码?
I am considering to write an application that would covert the comments in reddit threads (example) to emails. The idea is to parse the reddit json data (example) and send new comments as plain EMails to subscribed users. One of the users can be gmane, so you can also read the comments over there. The motivation for writing this tool is to read reddit comments in our favorite EMail client (with filters and what not) without having to refresh the reddit thread.
Which library/framework is best suited for this task? To get it done faster? With minimal code?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我会使用 AppEngine 来解决这个问题:集成的 cron + 电子邮件支持。
I would go with AppEngine to tackle this: integrated cron + email support.
我使用 Flexget 来解析 RSS 提要并通过电子邮件发送它们。
您可以从那里获得想法。
I've used Flexget to parse RSS feeds and email them.
You can get ideas from there.
Lamson 旨在成为一个“电子邮件应用程序框架”(借鉴网络应用程序框架的最新发展)。看起来它很适合您描述的问题。
Lamson aims to be an 'email app framework' (taking after the recent developments in web app frameworks). It seems like it would be a good fit for the problem you describe.