diff --git a/README.FR.md b/README.FR.md
index df250b41c54ec522729ac85ad9a00ff3867e0814..7d306903858cb232c46a8e85f1cfa9598d3ddc0f 100644
--- a/README.FR.md
+++ b/README.FR.md
@@ -21,6 +21,8 @@ Crée 1 fichier CSV, des prix agrégé des carburants par région et par an, en
 
 Crée 1 fichier CSV, des prix des carburants par région et par mois, en litre.
 
+Crée 2 fichiers de prix agrégés au niveau national afin de pouvoir vérifier l'exactitude par rapport aux données de l'INSEE
+
 ## Installation
 
 ### Clonage
@@ -32,13 +34,14 @@ cd prix-carburants
 
 ### Création de l'environnement virtuel et installation des packages (Linux)
 
-Ces scripts nécessitent Python3, Jupyterlab et Pandas.
+Ces scripts nécessitent Python3, Jupyterlab, Pandas et requests.
 
 ```shell
 python3 -m venv .venv
 source .venv/bin/activate
 pip install jupyterlab
 pip install pandas
+pip install requests
 ```
 
 ### Lancement
diff --git a/README.md b/README.md
index 61a4a5884aee44e0321ef452470059773fb3bba0..956cd2717a864e952079144c4b5a0f197aa9cce8 100644
--- a/README.md
+++ b/README.md
@@ -16,10 +16,11 @@ Retrieves all available fuel prices, including VAT, by service station, fuel typ
 
 Finds the region code of each gas station (using APIs, and starting from the latitude and longitude and/or the postal code, to find the citycode, then the departement code, then the region code).
 
-Creates 1 CSV file, of the aggregated fuel prices by region and by year, in liter.
+Creates 2 CSV file, of the aggregated fuel prices by region and by year, in liter and in hectoliter.
 
-Create 1 CSV file, of the fuel prices by region and by month, in liter.
+Create 2 CSV file, of the fuel prices by region and by month, in liter and in hectoliter.
 
+Create 2 files of aggregated prices at the national level to be able to check the accuracy compared to the data of the INSEE.
 ## Installation
 ###  cloning