diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 623cfe17cdb3513a346875303af99d4eeec05882..89cd0f107341be15cd94eead887c42a39b51139c 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 0000000000000000000000000000000000000000..48d84b4f76a67ef1a60a7d0fe26a0e9c7367fba8 --- /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 0d8a5d6ccb6ce1e955a1e66560fe7919a92d81c3..a9b1da6626967d2c6977f9b92f01825b1f5d5841 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 964883671f107b1e2c30d4d78e1108729ca1c9f2..ab3a6520b85a16c718ece28f30711960da55a27f 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 a259c5e9a7115fcadf82ffd2a2f126cead065d0e..fa78d1d5fd9bcec3067b64f1aca6fa3fe10a0b6d 100755 --- a/cli.py +++ b/cli.py @@ -69,6 +69,7 @@ available_administrations = [ 'pref44', 'pref49', 'pref50', + 'pref54', 'pref59', 'pref62', 'pref63',