Metadata-Version: 2.1
Name: siu-data
Version: 0.2.15
Summary: SIU data
Home-page: https://github.com/avdata99/pySIUdata
Author: Andres Vazquez
Author-email: andres@data99.com.ar
License: MIT
Keywords: SIU
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2.7
Description-Content-Type: text/markdown
Requires-Dist: pyexcel (>=-0.5.15)
Requires-Dist: pyexcel-xls (>=0.5.8)
Requires-Dist: pyexcel-xlsx (>=0.5.8)
Requires-Dist: python-slugify (>=1.2.6)

[![Build Status](https://travis-ci.org/avdata99/pySIUdata.svg?branch=master)](https://travis-ci.org/avdata99/pySIUdata)
[![GitHub All Releases](https://img.shields.io/github/downloads/avdata99/pySIUdata/total)](https://github.com/avdata99/pySIUdata/releases)
[![GitHub Issues](https://img.shields.io/github/issues/avdata99/pySIUdata)](https://github.com/avdata99/pySIUdata/issues)
[![GitHub PR](https://img.shields.io/github/issues-pr/avdata99/pySIUdata)](https://github.com/avdata99/pySIUdata/pulls)
[![Licence](https://img.shields.io/github/license/avdata99/pySIUdata)](https://github.com/avdata99/pySIUdata/blob/master/LICENSE)
[![PyPi version](https://img.shields.io/pypi/v/siu-data)](https://pypi.org/project/siu-data/)
[![Pypi py version](https://img.shields.io/pypi/pyversions/siu-data)](https://pypi.org/project/siu-data/)
[![Last Commit](https://img.shields.io/github/last-commit/avdata99/pySIUdata)](https://github.com/avdata99/pySIUdata/commits/master)

# py SIU data
Obtener datos de sistemas SIU

Instalar

```
pip install siu-data
```

## Portal de Transparencia

Obtención de datos del portal de transparencia.

Ejemplo de uso

``` python
from siu_data.portal_data import SIUPoratlTransparenciaData
s = SIUPoratlTransparenciaData(base_url='http://wichi.siu.edu.ar/pentaho/plugin/cda/api/doQuery',
                               username='usuario_transparencia',
                               password='clave_transparencia')
s.load_all_data()
s.save_metadata('lala.csv')
```

## Tests

```
python -m pytest
```


