diff --git a/README b/README index 1370de8..b30cce6 100644 --- a/README +++ b/README @@ -13,8 +13,24 @@ Cv2parser has mailing lists : - cv2parser-commits@listes.entrouvert.com -Cv2parser was originally written by Mikaƫl Ates. Please see the file AUTHORS -for a list of major contributors. +See AUTHORS file for a list of contributors. + +Description +----------- + +cv2parser is used for parsing XML files extracted from Carte Vitale 2 +and make its content accessible easily with Python data structures. + +The parser is issued from generateDS and the xml schema cvitale.xsd. + +Example +------- + + from cv2parser import cvitale + ... + cv = cvitale.parse(filename) + for beneficiaire in cv.listeBenef.get_element(): + print beneficiaire.ident.nir :: diff --git a/VERSIONS b/VERSIONS new file mode 100644 index 0000000..3bb9820 --- /dev/null +++ b/VERSIONS @@ -0,0 +1,4 @@ +15/01/2015 - v0.1 +----------------- + +Initiale release.