Metadata-Version: 2.4
Name: danecode
Version: 0.3.0
Summary: A simple util to get dane codes by department and municipality
Author: santiagofep
License-Expression: MIT
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: jellyfish
Requires-Dist: pandas
Requires-Dist: unidecode
Dynamic: license-file

# 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'
}

```
