more fixes for tags

This commit is contained in:
Ed Summers
2018-06-09 13:51:00 -04:00
parent 17eead1ab0
commit 5917ef7137
2 changed files with 4 additions and 4 deletions

View File

@ -25,8 +25,7 @@ def main():
for feed in config['feeds']:
for entry in get_feed(feed['url'], config['updated']):
print(feed['template'].format(**entry))
#masto.status_post(get_text(entry))
masto.status_post(get_text(entry))
save_config(config, config_file)
@ -66,7 +65,8 @@ def get_feed(feed_url, last_update):
def get_entry(entry):
hashtags = []
for tag in entry.get('tags', []):
hashtags.append('#{}'.format(tag.value))
for t in tag['term'].split(' '):
hashtags.append('#{}'.format(t))
return {
'url': entry.id,
'title': entry.title,

View File

@ -5,7 +5,7 @@ with open("README.md") as f:
setup(
name='feediverse',
version='0.0.3',
version='0.0.6',
python_requires='>=2.7',
url='https://github.com/edsu/feediverse',
author='Ed Summers',