mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-06-23 15:30:45 -04:00
24 lines
701 B
Python
24 lines
701 B
Python
#!/usr/bin/env python
|
|
# vim:fileencoding=utf-8
|
|
|
|
from __future__ import unicode_literals, division, absolute_import, print_function
|
|
from calibre.web.feeds.news import BasicNewsRecipe
|
|
'''
|
|
ACM Queue Magazine
|
|
'''
|
|
|
|
|
|
class QueueAcmOrg(BasicNewsRecipe):
|
|
title = "ACM Queue Magazine"
|
|
__author__ = 'yodha8'
|
|
description = "Queue is the ACM magazine for practicing software engineers. Published once every 2 months. Example: Jan-Feb."
|
|
oldest_article = 60
|
|
max_articles_per_feed = 50
|
|
auto_cleanup = True
|
|
language = 'en'
|
|
cover_url = "https://queue.acm.org/img/acmqueue_logo.gif"
|
|
|
|
feeds = [
|
|
("All Queue Content", "https://queue.acm.org/rss/feeds/queuecontent.xml"),
|
|
]
|