XML_JSON

Format JSON

Ensemble des informations sur la création et l’utilisation des fichiers JSON

Liens_Web:

Généralités

TODO: ne pas laisser vide

Powershell

TODO: ne pas laisser vide

Python

Liens WEB:
  1. Exemple d’utilisation intéressant :

    from json import dump, load
    from time import sleep
    from random import random
    
    def json_file(path, data = None, delay = 0.1):
        while True:
            try:
                if data == None:
                    with open(path, "r", encoding = "utf-8") as f:
                        return load(f)
                else:
                    with open(path, "w", encoding = "utf-8") as f:
                        return dump(data, f, indent=4, sort_keys=True)
            except:
                sleep(random()*delay) # concurrency
    

Format XML

Ensemble des informations sur la création et l’utilisation des fichiers XML

Liens_Web:

Généralités

TODO: ne pas laisser vide

Powershell

Liens_Web:

Python

TODO: ne pas laisser vide