From b80fb5a13e28ced18828734207dae40e1f6ae28d Mon Sep 17 00:00:00 2001 From: Bastien Le Querrec <blq@laquadrature.net> Date: Tue, 7 Jan 2025 01:52:26 +0100 Subject: [PATCH] =?UTF-8?q?pref54:=20ajout=20de=20la=20pr=C3=A9fecture=20d?= =?UTF-8?q?e=20Meurthe-et-Moselle?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitlab-ci.yml | 5 +++++ Attrap_pref54.py | 23 +++++++++++++++++++++++ Makefile | 4 +++- README.md | 1 + cli.py | 1 + 5 files changed, 33 insertions(+), 1 deletion(-) create mode 100644 Attrap_pref54.py diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 623cfe1..89cd0f1 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -219,6 +219,11 @@ test_pref50: PREF: "pref50" extends: .default_pref +test_pref54: + variables: + PREF: "pref54" + extends: .default_pref + test_pref59: variables: PREF: "pref59" diff --git a/Attrap_pref54.py b/Attrap_pref54.py new file mode 100644 index 0000000..48d84b4 --- /dev/null +++ b/Attrap_pref54.py @@ -0,0 +1,23 @@ +from Attrap_prefdpt import Attrap_prefdpt + + +class Attrap_pref54(Attrap_prefdpt): + + # Configuration de la préfecture + hostname = 'https://www.meurthe-et-moselle.gouv.fr' + raa_page = f'{hostname}/Publications/Recueil-des-actes-administratifs' + full_name = 'Préfecture de Meurthe-et-Moselle' + short_code = 'pref54' + timezone = 'Europe/Paris' + + # Configuration des widgets à analyser + Attrap_prefdpt.white_card['regex']['year'] = '([0-9]{4})' + + # On ajoute un widget de menu déroulant + Attrap_prefdpt.select_widgets.append( + Attrap_prefdpt.DptSelectWidget( + 'menu_deroulant', + regex='.* du ([0-9]*(?:er|ER)? [A-Za-zéÉûÛ]* [0-9]*)', + css_path='select#Liste-liste-docs' + ) + ) diff --git a/Makefile b/Makefile index 0d8a5d6..a9b1da6 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -make: ppparis pref01 pref02 pref03 pref04 pref05 pref06 pref09 pref10 pref11 pref13 pref2a pref2b pref25 pref29 pref31 pref33 pref34 pref35 pref38 pref39 pref42 pref44 pref49 pref50 pref59 pref62 pref63 pref64 pref65 pref66 pref69 pref73 pref75 pref80 pref81 pref83 pref87 pref91 pref92 pref93 pref94 pref976 prefidf prefpaca +make: ppparis pref01 pref02 pref03 pref04 pref05 pref06 pref09 pref10 pref11 pref13 pref2a pref2b pref25 pref29 pref31 pref33 pref34 pref35 pref38 pref39 pref42 pref44 pref49 pref50 pref54 pref59 pref62 pref63 pref64 pref65 pref66 pref69 pref73 pref75 pref80 pref81 pref83 pref87 pref91 pref92 pref93 pref94 pref976 prefidf prefpaca ppparis: bin/python3 cli.py ppparis pref01: @@ -49,6 +49,8 @@ pref49: bin/python3 cli.py pref49 pref50: bin/python3 cli.py pref50 +pref54: + bin/python3 cli.py pref54 pref59: bin/python3 cli.py pref59 pref62: diff --git a/README.md b/README.md index 9648836..ab3a652 100644 --- a/README.md +++ b/README.md @@ -81,6 +81,7 @@ Vous pouvez également activer le safe mode en spécifiant la variable d'environ - Préfecture de la Loire-Atlantique (identifiant : `pref44`) - Préfecture de Maine-et-Loire (identifiant : `pref49`) - Préfecture de la Manche (identifiant : `pref50`) +- Préfecture de Meurthe-et-Moselle (identifiant : `pref54`) - Préfecture du Nord (identifiant : `pref59`) - Préfecture du Pas-de-Calais (identifiant : `pref62`) - Préfecture du Puy-de-Dôme (identifiant : `pref63`) diff --git a/cli.py b/cli.py index a259c5e..fa78d1d 100755 --- a/cli.py +++ b/cli.py @@ -69,6 +69,7 @@ available_administrations = [ 'pref44', 'pref49', 'pref50', + 'pref54', 'pref59', 'pref62', 'pref63', -- GitLab