Skip to content

Latest commit

 

History

History
52 lines (37 loc) · 1.69 KB

File metadata and controls

52 lines (37 loc) · 1.69 KB

Algorithms for Intelligent Data Analytics website

This repository hosts the sources for the AIDALab website.

The index.html file can be edited directly. Adding new publications is automated with the update-papers.py script.

Updating the publications

Running python update-papers.py will query DBLP for the papers written by the members of the group. The resulting information is integrated with papers listed in manual_pubs.json and used to update the index.html file. As part of normal operations no other actions are required, other than running the update-papers.py script.

Papers from Arxiv are not considered.

Adding papers that are not indexed by DBLP

To add a paper that is not listed in DBLP, one can add an entry to manual_pubs.json with the following format:

{
  "authors": [
    "First Author",
    "Second Author"
  ],
  "key": "a-unique-key-for-the-paper",
  "title": "title of the paper",
  "url": "url to retrieve the paper",
  "venue": "Journal or conference",
  "year": "year of publication"
},

After editing the file (which is indexed in git) one should run

python update-papers.py

to see the changes included in index.html

Adding paper authors

The list of people whose papers will be looked for in DBLP is at the beginning of the update-papers.py script:

authors = [
{ 'author': 'Andrea_Pietracaprina', 'from_year': '2020', 'to_year': '3000' },
{ 'author': 'Geppino_Pucci', 'from_year': '2020', 'to_year': '3000' },
{ 'author': 'Francesco_Silvestri_0001', 'from_year': '2020', 'to_year': '3000' },
{ 'author': 'Fabio_Vandin', 'from_year': '2020', 'to_year': '3000' },
{ 'author': 'Matteo_Ceccarello', 'from_year': '2020', 'to_year': '3000' },
{ 'author': 'Leonardo_Pellegrina', 'from_year': '2020', 'to_year': '3000' },
{ 'author': 'Diego_Santoro', 'from_year': '2020', 'to_year': '3000' },
{ 'author': 'Ilie_Sarpe', 'from_year': '2020', 'to_year': '3000' },
{ 'author': 'Dario_Simionato', 'from_year': '2020', 'to_year': '3000' },
{ 'author': 'Andrea_Tonon', 'from_year': '2020', 'to_year': '2022' }
]

To add new person, simply add a new entry following the same structure. If someone leaves the group, we can modify the corresponding to_year entry, so that only papers that were published while in the group are included in the website.