Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 615 Bytes

README.md

File metadata and controls

29 lines (20 loc) · 615 Bytes

Phoenix Helpers

This repository includes helpers for the Phoenix project.

checkers

event-file-checker

This python module allows to check that an event file follows properly the phoenix syntax for event files. In order to check file myfile.json from the command line, just say

python event_file_checker.py myfile.json

In order to use the APi directly, write :

import json
import event_file_checker

json_file = open("myfile.json")
topJson = json.load(json_file)
event_file_checker.check(topJson)

scripts

api-read-file

to be completed