Skip to content

Commit

Permalink
change to details
Browse files Browse the repository at this point in the history
  • Loading branch information
yufree committed Apr 10, 2024
1 parent d0b8f00 commit e0a0f7f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion update.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ def get_pubmed_abstracts(rss_url):
# If the publication date is within one week, extract the abstract and URL
if published_date >= one_week_ago:
# Get the abstract and URL of the entry
abstract = entry.summary
abstract = entry.content[0].value
doi = entry.dc_identifier
abstracts_with_urls.append({"abstract": abstract, "doi": doi})

Expand Down

0 comments on commit e0a0f7f

Please sign in to comment.