Generic Information Search: Mapping and Analysis of Publications#

PyPI Status Binder Build Status Documentation Status License: MIT Code Coverage

GISMAP leverages DBLP and HAL databases to provide cartography tools for you and your lab.

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.

Test Gismap online!#

Don’t want to install Gismap on your computer (yet)? No worries, you can play with it using https://mybinder.org/.

For example:

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
>>> lab = ListLab(["Fabien Mathieu", "François Baccelli", "Ludovic Noirie", "Céline Comte", "Sébastien Tixeuil"], dbs="hal")
>>> lab.update_authors()
>>> lab.update_publis()
>>> lab.show_html()

Credits#

This package was created with Cookiecutter and the Package Helper 3 project template.