You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've noticed that when calling pubmed if it encounters any characters in italics the field becomes truncated. I've tried a few different ways and do not think it's the way I'm extracting results as it occurs before conversion JSON/ Dict. Does anyone have a fix for this please?
Here's an example of it happening:
from pymed import PubMed
pubmed = PubMed(tool="your search name", email="your email")
query = "32963958" # pubmed ID of a paper with italics
results = pubmed.query(query, max_results=1)
for article in results:
print(article.title)
print(article.toDict())
The text was updated successfully, but these errors were encountered:
I've noticed that when calling
pubmed
if it encounters any characters in italics the field becomes truncated. I've tried a few different ways and do not think it's the way I'm extracting results as it occurs before conversion JSON/ Dict. Does anyone have a fix for this please?Here's an example of it happening:
from pymed import PubMed
pubmed = PubMed(tool="your search name", email="your email")
query = "32963958" # pubmed ID of a paper with italics
results = pubmed.query(query, max_results=1)
for article in results:
print(article.title)
print(article.toDict())
The text was updated successfully, but these errors were encountered: