Metadata-Version: 2.4
Name: gismap
Version: 0.2.2
Summary: GISMAP leverages DBLP and HAL databases to provide cartography tools for you and your lab.
Project-URL: Repository, https://github.com/balouf/gismap
Project-URL: Documentation, https://balouf.github.io/gismap
Author-email: Fabien Mathieu <fabien.mathieu@normalesup.org>
Maintainer-email: Fabien Mathieu <fabien.mathieu@normalesup.org>
License-Expression: MIT
License-File: AUTHORS.md
Requires-Python: >=3.10
Requires-Dist: bof>=0.3.5
Requires-Dist: gismo>=0.5.2
Requires-Dist: ipykernel>=6.30.1
Requires-Dist: tqdm>=4.67.1
Description-Content-Type: text/markdown

# Generic Information Search: Mapping and Analysis of Publications


[![PyPI Status](https://img.shields.io/pypi/v/gismap.svg)](https://pypi.python.org/pypi/gismap)
[![Build Status](https://github.com/balouf/gismap/actions/workflows/build.yml/badge.svg?branch=main)](https://github.com/balouf/gismap/actions?query=workflow%3Abuild)
[![Documentation Status](https://github.com/balouf/gismap/actions/workflows/docs.yml/badge.svg?branch=main)](https://github.com/balouf/gismap/actions?query=workflow%3Adocs)
[![License: MIT](https://img.shields.io/badge/license-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
[![Code Coverage](https://codecov.io/gh/balouf/gismap/branch/main/graphs/badge.svg)](https://codecov.io/gh/balouf/gismap/tree/main)

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: <https://github.com/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:

```console
$ pip install gismap
```

Use GISMAP to produce a collaboration graph (HTML):

```pycon
>>> 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][CC] and the [Package Helper 3][PH3] project template.

[CC]: <https://github.com/audreyr/cookiecutter>
[PH3]: <https://balouf.github.io/package-helper-3/>
