mirror of https://gitlab.com/bashrc2/epicyon
Less indentation
parent
62fa727fbb
commit
ceaaa8aec0
44
newswire.py
44
newswire.py
|
@ -871,27 +871,29 @@ def _xml2str_to_dict(base_dir: str, domain: str, xml_str: str,
|
||||||
|
|
||||||
unique_string_identifier = title + ' ' + link
|
unique_string_identifier = title + ' ' + link
|
||||||
pub_date_str = parse_feed_date(pub_date, unique_string_identifier)
|
pub_date_str = parse_feed_date(pub_date, unique_string_identifier)
|
||||||
if pub_date_str:
|
if not pub_date_str:
|
||||||
if _valid_feed_date(pub_date_str):
|
continue
|
||||||
post_filename = ''
|
if not _valid_feed_date(pub_date_str):
|
||||||
votes_status = []
|
continue
|
||||||
podcast_properties = \
|
post_filename = ''
|
||||||
xml_podcast_to_dict(base_dir, rss_item, xml_str)
|
votes_status = []
|
||||||
if podcast_properties:
|
podcast_properties = \
|
||||||
podcast_properties['linkMimeType'] = link_mime_type
|
xml_podcast_to_dict(base_dir, rss_item, xml_str)
|
||||||
fediverse_handle = ''
|
if podcast_properties:
|
||||||
extra_links = []
|
podcast_properties['linkMimeType'] = link_mime_type
|
||||||
_add_newswire_dict_entry(base_dir,
|
fediverse_handle = ''
|
||||||
result, pub_date_str,
|
extra_links = []
|
||||||
title, link,
|
_add_newswire_dict_entry(base_dir,
|
||||||
votes_status, post_filename,
|
result, pub_date_str,
|
||||||
description, moderated,
|
title, link,
|
||||||
mirrored, [], 32, session, debug,
|
votes_status, post_filename,
|
||||||
podcast_properties, system_language,
|
description, moderated,
|
||||||
fediverse_handle, extra_links)
|
mirrored, [], 32, session, debug,
|
||||||
post_ctr += 1
|
podcast_properties, system_language,
|
||||||
if post_ctr >= max_posts_per_source:
|
fediverse_handle, extra_links)
|
||||||
break
|
post_ctr += 1
|
||||||
|
if post_ctr >= max_posts_per_source:
|
||||||
|
break
|
||||||
if post_ctr > 0:
|
if post_ctr > 0:
|
||||||
print('Added ' + str(post_ctr) + ' rss 2.0 feed items to newswire')
|
print('Added ' + str(post_ctr) + ' rss 2.0 feed items to newswire')
|
||||||
return result
|
return result
|
||||||
|
|
Loading…
Reference in New Issue