From 64067244bed2810345f8bf172c56c7c75a727eaf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mika=C3=ABl=20Ates?= Date: Thu, 15 Jan 2015 19:14:51 +0100 Subject: [PATCH] Initial release v0.1. --- README | 20 ++++++++++++++++++-- VERSIONS | 4 ++++ 2 files changed, 22 insertions(+), 2 deletions(-) create mode 100644 VERSIONS 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.