diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 2ee52d6a4a978a02c29c485106666ae958cc1c2f..d516a979d7edef6322c85001b955123fa5e90a97 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -229,6 +229,11 @@ test_pref54: PREF: "pref54" extends: .default_pref +test_pref55: + variables: + PREF: "pref55" + extends: .default_pref + test_pref59: variables: PREF: "pref59" diff --git a/Attrap_pref55.py b/Attrap_pref55.py new file mode 100644 index 0000000000000000000000000000000000000000..bac061e8e8317d2b84df0f8b8268e3caedcdbbe2 --- /dev/null +++ b/Attrap_pref55.py @@ -0,0 +1,21 @@ +from Attrap_prefdpt import Attrap_prefdpt + + +class Attrap_pref55(Attrap_prefdpt): + + # Configuration de la préfecture + hostname = 'https://www.meuse.gouv.fr' + raa_page = f'{hostname}/Publications/Recueil-des-Actes-Administratifs-RAA' + full_name = 'Préfecture de la Meuse' + short_code = 'pref55' + timezone = 'Europe/Paris' + + # On configure le widget de menu déroulant + Attrap_prefdpt.select_widgets.append( + Attrap_prefdpt.DptSelectWidget( + 'menu_deroulant', + regex='RAA année ([0-9]{4})', + css_path='select#Liste-des-recueils-liste-docs', + type='year' + ) + ) diff --git a/Makefile b/Makefile index 7bfd5484bc18d9e2d6a65ea2816914f3b6118da4..e4d3804a70a164c9b7047459931c41871bd9b65e 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 pref30 pref31 pref33 pref34 pref35 pref38 pref39 pref42 pref44 pref49 pref50 pref54 pref59 pref62 pref63 pref64 pref65 pref66 pref69 pref73 pref75 pref77 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 pref30 pref31 pref33 pref34 pref35 pref38 pref39 pref42 pref44 pref49 pref50 pref54 pref55 pref59 pref62 pref63 pref64 pref65 pref66 pref69 pref73 pref75 pref77 pref80 pref81 pref83 pref87 pref91 pref92 pref93 pref94 pref976 prefidf prefpaca ppparis: bin/python3 cli.py ppparis pref01: @@ -53,6 +53,8 @@ pref50: bin/python3 cli.py pref50 pref54: bin/python3 cli.py pref54 +pref55: + bin/python3 cli.py pref55 pref59: bin/python3 cli.py pref59 pref62: diff --git a/README.md b/README.md index b17a1072933cdcb0b1b0752a802cecbcb733c67a..2cc26899c0c3c6f22c7df6fcce540c544a4993d7 100644 --- a/README.md +++ b/README.md @@ -83,6 +83,7 @@ Vous pouvez également activer le safe mode en spécifiant la variable d'environ - 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 de la Meuse (identifiant : `pref55`) - 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 e8323a134c6e540335308259bfc1b8b081fd0cc0..361a87e0c3ae7e5df8b4903057169efd16c425b0 100755 --- a/cli.py +++ b/cli.py @@ -71,6 +71,7 @@ available_administrations = [ 'pref49', 'pref50', 'pref54', + 'pref55', 'pref59', 'pref62', 'pref63',