A wrapper for dblp.org search api
Project description
dblpy
Dblpy is a simple wrapper library for the dblp.org search api.
from dblpy import get_authors, get_venues, get_publications
authors = get_authors(q='Donald Knuth')
for a in authors:
print(a.name)
for n in a.notes:
print(f'|{n}')
publications = get_publications(q='gps trajectory', max_results=5)
for p in publications:
print(p)
venues = get_venues(q='Berlin')
for v in venues:
print(v)
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
dblpy-lib-0.1.1.tar.gz
(3.3 kB
view details)
File details
Details for the file dblpy-lib-0.1.1.tar.gz.
File metadata
- Download URL: dblpy-lib-0.1.1.tar.gz
- Upload date:
- Size: 3.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.0 CPython/3.8.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dde9c6c228f82392f556c40d10fffd25c01eec26bb64376fa0f8dddd6094574b
|
|
| MD5 |
4b8b8b17c571dd5cc8b40fe41f48a853
|
|
| BLAKE2b-256 |
b3b42c9f2b00b4c6996313bfcc0a3ebd76ae875eb08c280d0b984bd29abea721
|