├── .github ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE │ ├── bug.yaml │ ├── change.yaml │ └── feature.yaml ├── SECURITY.md ├── image.jpeg └── workflows │ └── publish.yaml ├── .gitignore ├── .readthedocs.yaml ├── LICENCE ├── README.en.md ├── README.md ├── assets └── logo.png ├── docs ├── Makefile ├── _static │ └── logo.png ├── calc.rst ├── conf.py ├── favicon.ico ├── get.rst ├── index.rst ├── install.rst ├── make.bat ├── md │ ├── get.md │ ├── index.md │ ├── install.md │ ├── labor_market.md │ ├── poverty.md │ └── quickstart.md ├── quickstart.rst └── requirements.txt ├── examples.ipynb ├── poetry.lock ├── pyeph ├── .files │ └── EPH_tot_urbano_estructura_bases.xlsx ├── __init__.py ├── ads.py ├── calc │ ├── __init__.py │ ├── _base_calculator.py │ ├── _template.py │ ├── _types.py │ ├── dwelling.py │ ├── labor_market.py │ └── poverty.py ├── config.py ├── errors.py ├── get │ ├── __init__.py │ ├── _base_getter.py │ ├── basket.py │ ├── equivalent_adult.py │ ├── mautic.py │ └── microdata.py └── tools │ ├── .examples │ └── canasta_ejemplo.csv │ ├── __init__.py │ ├── decorators.py │ ├── labels.py │ └── merge.py ├── pyproject.toml └── tests ├── __init__.py ├── test_dwelling.py ├── test_exceptions.py └── test_get.py /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/institutohumai/pyeph/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/institutohumai/pyeph/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/institutohumai/pyeph/HEAD/.github/ISSUE_TEMPLATE/bug.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/change.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/institutohumai/pyeph/HEAD/.github/ISSUE_TEMPLATE/change.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/institutohumai/pyeph/HEAD/.github/ISSUE_TEMPLATE/feature.yaml -------------------------------------------------------------------------------- /.github/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/institutohumai/pyeph/HEAD/.github/SECURITY.md -------------------------------------------------------------------------------- /.github/image.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/institutohumai/pyeph/HEAD/.github/image.jpeg -------------------------------------------------------------------------------- /.github/workflows/publish.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/institutohumai/pyeph/HEAD/.github/workflows/publish.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/institutohumai/pyeph/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/institutohumai/pyeph/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/institutohumai/pyeph/HEAD/LICENCE -------------------------------------------------------------------------------- /README.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/institutohumai/pyeph/HEAD/README.en.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/institutohumai/pyeph/HEAD/README.md -------------------------------------------------------------------------------- /assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/institutohumai/pyeph/HEAD/assets/logo.png -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/institutohumai/pyeph/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/institutohumai/pyeph/HEAD/docs/_static/logo.png -------------------------------------------------------------------------------- /docs/calc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/institutohumai/pyeph/HEAD/docs/calc.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/institutohumai/pyeph/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/institutohumai/pyeph/HEAD/docs/favicon.ico -------------------------------------------------------------------------------- /docs/get.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/institutohumai/pyeph/HEAD/docs/get.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/institutohumai/pyeph/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/institutohumai/pyeph/HEAD/docs/install.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/institutohumai/pyeph/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/md/get.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/institutohumai/pyeph/HEAD/docs/md/get.md -------------------------------------------------------------------------------- /docs/md/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/institutohumai/pyeph/HEAD/docs/md/index.md -------------------------------------------------------------------------------- /docs/md/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/institutohumai/pyeph/HEAD/docs/md/install.md -------------------------------------------------------------------------------- /docs/md/labor_market.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/institutohumai/pyeph/HEAD/docs/md/labor_market.md -------------------------------------------------------------------------------- /docs/md/poverty.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/institutohumai/pyeph/HEAD/docs/md/poverty.md -------------------------------------------------------------------------------- /docs/md/quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/institutohumai/pyeph/HEAD/docs/md/quickstart.md -------------------------------------------------------------------------------- /docs/quickstart.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/institutohumai/pyeph/HEAD/docs/quickstart.rst -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- 1 | myst-parser==3.0.0 2 | furo==2024.8.6 3 | sphinx>=7.0.0 -------------------------------------------------------------------------------- /examples.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/institutohumai/pyeph/HEAD/examples.ipynb -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/institutohumai/pyeph/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyeph/.files/EPH_tot_urbano_estructura_bases.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/institutohumai/pyeph/HEAD/pyeph/.files/EPH_tot_urbano_estructura_bases.xlsx -------------------------------------------------------------------------------- /pyeph/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/institutohumai/pyeph/HEAD/pyeph/__init__.py -------------------------------------------------------------------------------- /pyeph/ads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/institutohumai/pyeph/HEAD/pyeph/ads.py -------------------------------------------------------------------------------- /pyeph/calc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/institutohumai/pyeph/HEAD/pyeph/calc/__init__.py -------------------------------------------------------------------------------- /pyeph/calc/_base_calculator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/institutohumai/pyeph/HEAD/pyeph/calc/_base_calculator.py -------------------------------------------------------------------------------- /pyeph/calc/_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/institutohumai/pyeph/HEAD/pyeph/calc/_template.py -------------------------------------------------------------------------------- /pyeph/calc/_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/institutohumai/pyeph/HEAD/pyeph/calc/_types.py -------------------------------------------------------------------------------- /pyeph/calc/dwelling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/institutohumai/pyeph/HEAD/pyeph/calc/dwelling.py -------------------------------------------------------------------------------- /pyeph/calc/labor_market.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/institutohumai/pyeph/HEAD/pyeph/calc/labor_market.py -------------------------------------------------------------------------------- /pyeph/calc/poverty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/institutohumai/pyeph/HEAD/pyeph/calc/poverty.py -------------------------------------------------------------------------------- /pyeph/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/institutohumai/pyeph/HEAD/pyeph/config.py -------------------------------------------------------------------------------- /pyeph/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/institutohumai/pyeph/HEAD/pyeph/errors.py -------------------------------------------------------------------------------- /pyeph/get/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/institutohumai/pyeph/HEAD/pyeph/get/__init__.py -------------------------------------------------------------------------------- /pyeph/get/_base_getter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/institutohumai/pyeph/HEAD/pyeph/get/_base_getter.py -------------------------------------------------------------------------------- /pyeph/get/basket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/institutohumai/pyeph/HEAD/pyeph/get/basket.py -------------------------------------------------------------------------------- /pyeph/get/equivalent_adult.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/institutohumai/pyeph/HEAD/pyeph/get/equivalent_adult.py -------------------------------------------------------------------------------- /pyeph/get/mautic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/institutohumai/pyeph/HEAD/pyeph/get/mautic.py -------------------------------------------------------------------------------- /pyeph/get/microdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/institutohumai/pyeph/HEAD/pyeph/get/microdata.py -------------------------------------------------------------------------------- /pyeph/tools/.examples/canasta_ejemplo.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/institutohumai/pyeph/HEAD/pyeph/tools/.examples/canasta_ejemplo.csv -------------------------------------------------------------------------------- /pyeph/tools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/institutohumai/pyeph/HEAD/pyeph/tools/__init__.py -------------------------------------------------------------------------------- /pyeph/tools/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/institutohumai/pyeph/HEAD/pyeph/tools/decorators.py -------------------------------------------------------------------------------- /pyeph/tools/labels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/institutohumai/pyeph/HEAD/pyeph/tools/labels.py -------------------------------------------------------------------------------- /pyeph/tools/merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/institutohumai/pyeph/HEAD/pyeph/tools/merge.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/institutohumai/pyeph/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_dwelling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/institutohumai/pyeph/HEAD/tests/test_dwelling.py -------------------------------------------------------------------------------- /tests/test_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/institutohumai/pyeph/HEAD/tests/test_exceptions.py -------------------------------------------------------------------------------- /tests/test_get.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/institutohumai/pyeph/HEAD/tests/test_get.py --------------------------------------------------------------------------------