Generic Information Search: Mapping and Analysis of Publications#
GISMAP leverages DBLP and HAL databases to provide cartography tools for you and your lab.
Free software: MIT
Documentation: https://balouf.github.io/gismap/.
Github: balouf/gismap
Features#
Can be used by all researchers in Computer Science (DBLP endpoint) or based in France (HAL endpoint).
Aggregate publications from multiple databases, including multiple author keys inside the same database.
Automatically keeps track of a Lab/Department members and publications.
Builds interactive collaboration graphs.
Quickstart#
Install GISMAP:
$ pip install gismap
Use GISMAP to produce a collaboration graph (HTML):
>>> from gismap.sources.hal import HAL
>>> from gismap.lab import ListLab, lab2graph
>>> lab = ListLab(["Mathilde Labbé", "Anne Reverseau", "David Martens", "Marcela Scibiorska", "Nathalie Grande"], dbs=[HAL])
>>> lab.update_authors()
>>> lab.update_publis()
>>> collabs = lab2graph(lab)
Credits#
This package was created with Cookiecutter and the Package Helper 3 project template.