Initial release v0.1.

This commit is contained in:
Mikaël Ates 2015-01-15 19:14:51 +01:00
parent 8e7b36e8f3
commit 64067244be
2 changed files with 22 additions and 2 deletions

20
README
View File

@ -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
::

4
VERSIONS Normal file
View File

@ -0,0 +1,4 @@
15/01/2015 - v0.1
-----------------
Initiale release.