This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
cv2parser/README

52 lines
1.5 KiB
Plaintext

==================
Cv2parser Overview
==================
Current homepage: <https://dev.entrouvert.org/projects/cv2parser>
Cv2parser (Carte Vitale 2 Parser) is a free (GNU GPL) parser of Carte Vitale 2
(CV2) XML files.
Cv2parser has mailing lists :
- cv2parser@listes.entrouvert.com
- cv2parser-commits@listes.entrouvert.com
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
::
Copyright (c) 2014 Entr'ouvert
This program is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the Free
Software Foundation; either version 3 of the License, or (at your option)
any later version.
This program is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
for more details.
You should have received a copy of the GNU General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.