From 7f7ff25dfaff2d0b12b86a26f82279839cca2d19 Mon Sep 17 00:00:00 2001 From: Nomitch Antoine <antoine.nomitch@etu.ec-lyon.fr> Date: Tue, 19 Mar 2024 12:23:04 +0000 Subject: [PATCH] =?UTF-8?q?Ajout=20d'un=20fichier=20python=20qui=20automat?= =?UTF-8?q?ise=20le=20t=C3=A9l=C3=A9chargement=20de=20ressources=20n=C3=A9?= =?UTF-8?q?cessaires=20pour=20nltk?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- download_nltk_ressources.py | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 download_nltk_ressources.py diff --git a/download_nltk_ressources.py b/download_nltk_ressources.py new file mode 100644 index 0000000..7f5d6fe --- /dev/null +++ b/download_nltk_ressources.py @@ -0,0 +1,3 @@ +import nltk +nltk.download('punkt') +nltk.download('stopwords') -- GitLab