pyspc.model.grp18.rt_config.GRPRT_Cfg
- class pyspc.model.grp18.rt_config.GRPRT_Cfg(filename=None)[source]
Bases :
OrderedDictStructure de données GRPRT Cfg (Prévision GRP Temps Réel)
Config_Prevision.txt
- filename
Nom du fichier Config de GRP Temps-Réel
- Type:
str
Notes
Cette structure de données est un dictionnaire ordonné. La balise d’une information est la clé et la structure contient les méta-données dans ses valeurs
- __init__(filename=None)[source]
Initialisation de l’instance de la classe GRPRT_Cfg
- Paramètres:
filename (str) – Nom du fichier Config de GRP Temps-Réel
Methods
__init__([filename])Initialisation de l'instance de la classe GRPRT_Cfg
clear()copy()fromkeys(iterable[, value])Create a new ordered dictionary with keys from iterable and values set to value.
get(key[, default])Return the value for key if key is in the dictionary, else default.
Récupérer les mots clés de la configuration GRP Temps Réel dans l'ordre d'apparition
items()Return a set-like object providing a view on the dict's items.
keys()Return a set-like object providing a view on the dict's keys.
move_to_end(key[, last])Move an existing element to the end (or beginning if last is false).
pop(key[,default])If the key is not found, return the default if given; otherwise, raise a KeyError.
popitem([last])Remove and return a (key, value) pair from the dictionary.
read()Lecture du fichier de configuration de GRP Temps Réel
setdefault(key[, default])Insert key with a value of default if key is not in the dictionary.
update([E, ]**F)If E is present and has a .keys() method, then does: for k in E.keys(): D[k] = E[k] If E is present and lacks a .keys() method, then does: for k, v in E: D[k] = v In either case, this is followed by: for k in F: D[k] = F[k]
update_config(cfg_info)Modifier les informations de configuration GRP Temps Reel
values()Return an object providing a view on the dict's values.
write()Ecrire le fichier de configuration GRP Temps Réel
- clear() None. Remove all items from od.
- copy() a shallow copy of od
- classmethod fromkeys(iterable, value=None)
Create a new ordered dictionary with keys from iterable and values set to value.
- get(key, default=None, /)
Return the value for key if key is in the dictionary, else default.
- classmethod get_cfg_keys()[source]
Récupérer les mots clés de la configuration GRP Temps Réel dans l’ordre d’apparition
- Renvoie:
Liste des balises du fichier de configuration GRP Temps Réel
- Type renvoyé:
list
- items()
Return a set-like object providing a view on the dict’s items.
- keys()
Return a set-like object providing a view on the dict’s keys.
- move_to_end(key, last=True)
Move an existing element to the end (or beginning if last is false).
Raise KeyError if the element does not exist.
- pop(key[, default]) v, remove specified key and return the corresponding value.
If the key is not found, return the default if given; otherwise, raise a KeyError.
- popitem(last=True)
Remove and return a (key, value) pair from the dictionary.
Pairs are returned in LIFO order if last is true or FIFO order if false.
- setdefault(key, default=None)
Insert key with a value of default if key is not in the dictionary.
Return the value for key if key is in the dictionary, else default.
- update([E, ]**F) None. Update D from mapping/iterable E and F.
If E is present and has a .keys() method, then does: for k in E.keys(): D[k] = E[k] If E is present and lacks a .keys() method, then does: for k, v in E: D[k] = v In either case, this is followed by: for k in F: D[k] = F[k]
- update_config(cfg_info)[source]
Modifier les informations de configuration GRP Temps Reel
- Paramètres:
cfg_info (dict) – Dictionnaire contenant les informations à modifier dans la configuration de GRP Temps Reel. Les clés correspondent aux balises du fichier de configuration.
- values()
Return an object providing a view on the dict’s values.