Skip to content

A simple Python wrapper around the DBLP API, currently supporting author search and author and publication lookup.

Notifications You must be signed in to change notification settings

mrksbrg/dblp-python

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

dblp-python

A simple Python wrapper around the DBLP API, currently supporting author search and author and publication lookup.

Example

Let's search for Michael Ley, DBLP maintainer. Try :

>>> import dblp
>>> #do a simple author search for michael ley
>>> authors = dblp.search('michael ley')
>>> michael = authors[0]
>>> print michael.name
Michael Ley
>>> print len(michael.publications)
31

If you'd like to learn more about Michael's work, you can explore his publications. All publication results are lazy-loaded, so have at it :

>>> print michael.publications[0].title
DBLP - Some Lessons Learned.
>>> print michael.publications[0].journal
PVLDB
>>> print michael.publications[0].year
2009

More information about a publication can often be found at its ee URL - in this case, a link to the PDF :

>>> print michael.publications[0].ee
http://www.vldb.org/pvldb/2/vldb09-98.pdf

Other publication and author attributes are documented with their respective classes- just use help(). Enjoy!

Contributing

Contributions are very welcome! Feel free to fork the repo and request a pull, or open an issue if you find a bug or would like to request a feature.

About

A simple Python wrapper around the DBLP API, currently supporting author search and author and publication lookup.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%