Metadata-Version: 2.1
Name: danecode
Version: 0.2.0
Summary: A simple util to get dane codes by department and municipality
Author: santiagofep
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: jellyfish
Requires-Dist: pandas
Requires-Dist: unidecode

# Dane code

```python

import danecode

#you can have typo errors in the arguments

department = "Santnder"
municipality = "Riongro"

municipality_data = danecode.get_data(department, municipality)

#Returns
municipality_data = {
    'department': 'Santander',
    'department_code': '68',
    'municipality': 'Rionegro',
    'municipality_code': '68615'
}

```
