26 lines
673 B
Markdown
26 lines
673 B
Markdown
# INSEE number translator
|
|
|
|
Extract data from INSEE number (France)
|
|
|
|
## Getting started
|
|
### From package
|
|
```shell
|
|
# activate your venv
|
|
python -m pip install insee-number-translator
|
|
insee 269059913116714 168127982980507
|
|
```
|
|
|
|
### From sources
|
|
```shell
|
|
pyenv virtualenv 3.7.9 insee
|
|
pyenv local insee
|
|
poetry install
|
|
# restart your shell
|
|
insee 269059913116714 168127982980507
|
|
```
|
|
|
|
## Data sources
|
|
|
|
* cities : https://public.opendatasoft.com/explore/dataset/correspondance-code-insee-code-postal/export/
|
|
* countries : https://www.insee.fr/fr/information/2028273
|
|
* departments : https://www.data.gouv.fr/fr/datasets/regions-departements-villes-et-villages-de-france-et-doutre-mer/
|