|
|
#1 |
|
Junior Member
![]() Posts: 2
Karma: 10
Join Date: Feb 2019
Device: Kindle
|
Hello and welcome, I am new :-)
I came here while looking for a recipe for calibre to get the Quantamagazine into Calibre and then on my Kindle for easy reading. (www.quantamagazine.org) I was wondering if maybe someone here has already done such a recipe or could potentially point me to a direction where I could find one. Thank you! ppl4world |
|
|
|
|
|
#2 |
|
Enthusiast
![]() Posts: 36
Karma: 10
Join Date: Dec 2017
Location: Los Angeles, CA
Device: Smart Phone
|
Adding news sources is explained in the User's Manual here https://manual.calibre-ebook.com/news.html. Since this site provides a news feed with full content it is fairly easy to add. The link they provide for the news feed is https://api.quantamagazine.org/feed/.
You should end up with a recipe looking something like this: Code:
#!/usr/bin/env python2
# vim:fileencoding=utf-8
from __future__ import unicode_literals, division, absolute_import, print_function
from calibre.web.feeds.news import BasicNewsRecipe
class Quanta(BasicNewsRecipe):
title = 'Quanta Magazine'
oldest_article = 7
max_articles_per_feed = 100
language = 'en'
encoding = 'UTF-8'
feeds = [
('Articles', 'https://api.quantamagazine.org/feed/'),
]
|
|
|
|
| Advert | |
|
|
|
|
#3 |
|
Junior Member
![]() Posts: 2
Karma: 10
Join Date: Feb 2019
Device: Kindle
|
Thank you lui1, that worked like a charm! I've never worked or used RSS feeds (or any news feeds) but wanted to get something for my father in law who loves reading these types of articles, but is old fashioned and prefers paper. Now, thanks to your help, I have a way of creating a PDF file once a month, and get it nicely printed with some of those online services and send it to him as a written magazine! So thank you!
|
|
|
|
![]() |
| Tags |
| calibre, quanta, quantamagazine, recipe |
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Req: Outside Magazine recipe | samhandwich | Recipes | 4 | 01-09-2013 02:37 PM |
| Built in calibre recipe broken : Prospect Magazine | duluoz | Recipes | 1 | 05-24-2012 09:19 AM |
| Wired Magazine UK New recipe | Starson17 | Recipes | 2 | 07-19-2011 01:23 PM |
| Recipe for Self Magazine (US) (need help) | xXxXxXxXxXx | Recipes | 1 | 05-17-2011 06:16 PM |
| Quanta receives tablet PC orders from Amazon, say upstream sources | Dopedangel | News | 5 | 05-03-2011 03:25 PM |