maintenance.maintenir_mathPbs
Modifié le 09/03/23 @author: remy
Maintenir le dépôt math-pbs
.
- Importe
init_mathPbs
qui code le manifeste du dépôt. - Instancie un objet
Depot
ce qui effectue la maintenance. - Affiche la propriété
.journal
de l'objetDepot
.
Le manifeste d'un dépôt décrit
- ses conventions d'organisation
- son insertion dans les espaces de publication
- son reflet dans la base en graphe de contextualisation
1# -*- coding: utf-8 -*- 2""" 3Modifié le 09/03/23 @author: remy 4 5Maintenir le dépôt `math-pbs`. 6 7- Importe [`init_mathPbs`](init_mathPbs.html) qui code le *manifeste* du 8 dépôt. 9- Instancie un objet `Depot` ce qui effectue la maintenance. 10- Affiche la propriété `.journal` de l'objet `Depot`. 11 12 13Le manifeste d'un dépôt décrit 14- ses conventions d'organisation 15- son insertion dans les espaces de publication 16- son reflet dans la base en graphe de contextualisation 17 18""" 19import init_mathPbs as init_DPT 20import depot 21 22if __name__ == '__main__': 23 journal = {} 24 25 # INSTANCIATION d'un objet Depot 26 dp = depot.Depot(init_DPT.manifeste) 27 journal = dp.log 28 29 print(journal)