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.
Go to file
Mikaël Ates 64067244be Initial release v0.1. 2015-01-15 19:14:51 +01:00
cv2parser Remove useless files. 2015-01-15 19:05:06 +01:00
xml_test_files Add some xml sample files. 2014-12-18 22:08:17 +01:00
.gitignore .gitignore file. 2014-12-18 11:33:57 +01:00
AUTHORS AUTHORS file. 2014-12-18 10:54:35 +01:00
COPYING COPYING file. 2014-12-18 10:52:22 +01:00
README Initial release v0.1. 2015-01-15 19:14:51 +01:00
VERSIONS Initial release v0.1. 2015-01-15 19:14:51 +01:00
__init__.py Initial commit. 2014-12-18 10:39:57 +01:00
requirements.txt requirements file. 2014-12-18 11:34:11 +01:00

README

==================
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.