mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-09-29 15:31:08 -04:00
41 lines
1.4 KiB
Python
41 lines
1.4 KiB
Python
#!/usr/bin/env python
|
|
|
|
from calibre.web.feeds.news import BasicNewsRecipe, classes
|
|
|
|
|
|
class IndiaLegalLive(BasicNewsRecipe):
|
|
title = 'India Legal Magazine'
|
|
language = 'en_IN'
|
|
__author__ = 'unkn0wn'
|
|
oldest_article = 7 # days
|
|
max_articles_per_feed = 50
|
|
encoding = 'utf-8'
|
|
use_embedded_content = False
|
|
no_stylesheets = True
|
|
remove_attributes = ['style', 'height', 'width']
|
|
|
|
masthead_url = 'https://d2r2ijn7njrktv.cloudfront.net/IL/uploads/2020/12/03181846/india-legal-live-logo-218x73-1.png'
|
|
|
|
def get_cover_url(self):
|
|
soup = self.index_to_soup('https://www.indialegallive.com/')
|
|
for citem in soup.findAll('img', src=lambda s: s and s.endswith('shot.jpg')):
|
|
return citem['src']
|
|
|
|
keep_only_tags = [
|
|
dict(name='h1'),
|
|
classes(
|
|
'tdb_single_subtitle tdb_single_date tdb_single_featured_image tdb_single_content'
|
|
),
|
|
]
|
|
remove_tags = [
|
|
dict(name='div', attrs={'style':'position:absolute;top:0;left:-9999px;'}),
|
|
]
|
|
|
|
feeds = [
|
|
('Courts', 'https://www.indialegallive.com/constitutional-law-news/courts-news/rss'),
|
|
('Ring Side', 'https://www.indialegallive.com/ringside/rss'),
|
|
('Cover Story Articles', 'https://www.indialegallive.com/cover-story-articles/rss'),
|
|
('Special', 'https://www.indialegallive.com/special/rss'),
|
|
('Columns', 'https://www.indialegallive.com/column-news/rss'),
|
|
]
|