Metadata-Version: 2.1
Name: rosstat-flc
Version: 0.7.3
Summary: Tool for format-logistic control of reports sent to RosStat
Home-page: https://github.com/WoolenSweater/rosstat_flc
Author: Nikita Ryabinin
Author-email: ryabinin.ne@gmail.com
License: UNKNOWN
Description: # РосСтат ФЛК
        
        Инструмент для форматно-логического контроля отчетности, отправляемой в РосСтат.
        
        Документация описывающая формат отчетности и контроли - [Приказ РосСтата от 28.10.2010 №372](http://www.consultant.ru/document/cons_doc_LAW_115689/)
        
        Список изменений - [CHANGELOG](CHANGELOG.md)
        
        ## Установка
        ```bash
        pip install rosstat-flc
        ```
        
        ## Зависимости
        * [PLY](https://github.com/dabeaz/ply)
        * [lxml](https://github.com/lxml/lxml)
        
        ## Использование
        ```python
        from rosstat.flc import parse_schema, parse_report
        
        # На вход передаются ElementTree, Element, bytes, file name/path, или file-like объекты
        
        schema = parse_schema('xml_schema.xml')
        report = parse_report('xml_report.xml', skip_warns=True)
        
        for result in schema.validate(report):
            print(result)
        
        # {'code': '4.30', 'name': 'Проверка контролей', 'message': 'XML Подраздел 2 стр. 201-202 гр.3 = "1" или "2", при хотя бы одной из стр. 105,106,108,109 гр.3 = 1; слева 1.0 <= справа 0.0 разница 1.0', 'tip': True}
        # {'code': '4.60', 'name': 'Проверка контролей', 'message': 'XML Подраздел 2 стр. 203 гр. 3 = "1" или "2", или "3", или "4", или "5", или "6", при хотя бы одной из стр. 105,106,108,109 гр.3 = 1; слева 1.0 <= справа 0.0 разница 1.0', 'tip': True}
        ```
Platform: UNKNOWN
Requires-Python: >=3.7
Description-Content-Type: text/markdown
