Skip to content

tarrow/epmclib

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

25 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

epmclib

Python EPMC interface.

#To get the title of a paper referenced by PMCID:

from epmclib.epmclib import getPMCID

`pmcid = getPMCID('PMC1234')`
`pmcid.getTitle()`
`print(pmcid.title)`

#Similarly to get a chunk of basic metadata:

pmcid.getBasicMetadata()
print(pmcid.metadata)

#If you just want to test if a PMCID resolves:

pmcid.resolves()

which returns true or false.

#To query by PMID Simply use in the same way as PMCIDs:

from epmclib.epmclib import getPMID
pmid = getPMID('12324')

About

Python EPMC interface

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages