Tools to Easily Search and Download French Data From INSEE and IGN APIs.
Project description
pynsee gives a quick access to more than 150 000 macroeconomic series,
a dozen datasets of local data, numerous sources available on insee.fr,
geographical limits of administrative areas taken from IGN
as well as key metadata and SIRENE database containing data on all French companies.
Have a look at the detailed API page portail-api.insee.fr.
This package is a contribution to reproducible research and public data transparency. It benefits from the developments made by teams working on APIs at INSEE and IGN.
Installation & API subscription
Credentials are necessary to access SIRENE API available through pynsee by the module sirene. API credentials can be created here : portail-api.insee.fr. All other modules are freely accessible.
# Download Pypi package
pip install pynsee[full]
# Get the development version from GitHub
# git clone https://github.com/InseeFrLab/pynsee.git
# cd pynsee
# pip install .[full]
# Subscribe to portail-api.insee.fr and get your credentials!
# Save your credentials with init_conn function :
from pynsee.utils import init_conn
init_conn(sirene_key="my_sirene_key")
# Beware : any change to the keys should be tested after having cleared the cache
# Please do : from pynsee.utils import clear_all_cache; clear_all_cache()
Data Search and Collection Advice
- Macroeconomic data :
First, use
get_dataset_listto search what are your datasets of interest and then get the series list withget_series_list. Alternatively, you can make a keyword-based search withsearch_macrodata, e.g.search_macrodata('GDP'). Then, get the data withget_datasetorget_series - Local data : use first
get_local_metadata, then get data withget_local_data - Metadata : e.g. function to get the classification of economic activities (Naf/Nace Rev2)
get_activity_list - Sirene (French companies database) : use first
get_dimension_list, then usesearch_sirenewith dimensions as filtering variables - Geodata : get the list of available geographical data with
get_geodata_listand then retrieve it withget_geodata - Files on insee.fr: get the list of available files on insee.fr with
get_file_listand then download it withdownload_file
For further advice, have a look at the documentation and gallery of the examples.
Example - Population Map
import math
import matplotlib.cm as cm
import matplotlib.pyplot as plt
import numpy as np
import pandas as pd
from pynsee.geodata import get_geodata_list, get_geodata
# get geographical data list
geodata_list = get_geodata_list()
# get departments geographical limits
mapcom = get_geodata("ADMINEXPRESS-COG-CARTO.LATEST:commune").to_crs(epsg=3035)
# area calculations depend on crs which fits metropolitan france but not overseas departements
# figures should not be considered as official statistics
mapcom.attrs["area"] = mapcom.area / 10**6
mapcom = mapcom.to_crs(epsg=3857)
mapcom['REF_AREA'] = 'D' + mapcom['code_insee']
mapcom['density'] = mapcom['population'] / mapcom.attrs["area"]
mapcom = mapcom.transform_overseas(departement=['971', '972', '974', '973', '976', 'NR'],
factor=[1.5, 1.5, 1.5, 0.35, 1.5, 1.5])
mapcom = mapcom.zoom(
departement=["75","92", "93", "91", "77", "78", "95", "94"],
factor=1.5, startAngle = math.pi * (1 - 3.5 * 1/9))
density_ranges = [
40, 80, 100, 120, 150, 200, 250, 400, 600, 1000, 2000, 5000, 10000, 20000
]
rvals = np.full(len(mapcom), "< 40", dtype=object)
list_ranges = ["< 40"]
for rmin, rmax in zip(density_ranges, density_ranges[1:]):
range_string = f"[{rmin}, {rmax}["
list_ranges.append(range_string)
rvals[(mapcom.density >= rmin) & (mapcom.density < rmax)] = range_string
rvals[mapcom.density.values > density_ranges[-1]] = "> 20 000"
list_ranges.append("> 20 000")
mapcom.loc[:, "range"] = pd.Categorical(rvals, ordered=True, categories=list_ranges)
fig, ax = plt.subplots(1, 1, figsize=(15, 15))
lgd = {'bbox_to_anchor': (1.1, 0.8), 'title': 'density per km2'}
mapcom.plot(column="range", cmap=cm.viridis, legend=True, ax=ax, legend_kwds=lgd)
ax.set_axis_off()
ax.set(title='Distribution of population in France')
plt.show()
fig.savefig('pop_france.svg',
format='svg', dpi=1200,
bbox_inches = 'tight',
pad_inches = 0)
How to avoid proxy issues ?
# Use the proxy_server argument of the init_conn function to change the proxy server address
from pynsee.utils import init_conn
init_conn(sirene_key="my_sirene_key",
http_proxy="http://my_proxy_server:port",
https_proxy="http://my_proxy_server:port")
# Beware : any change to the keys should be tested after having cleared the cache
# Please do : from pynsee.utils import *; clear_all_cache()
# Alternativety you can use directly environment variables as follows.
# Beware not to commit your credentials!
import os
os.environ['sirene_key'] = 'my_sirene_key'
os.environ['http_proxy'] = "http://my_proxy_server:port"
os.environ['https_proxy'] = "http://my_proxy_server:port"
Support
Feel free to open an issue with any question about this package using the Github repository.
Contributing
All contributions, whatever their forms, are welcome. See CONTRIBUTING.md
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pynsee-0.2.5.tar.gz.
File metadata
- Download URL: pynsee-0.2.5.tar.gz
- Upload date:
- Size: 9.8 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.25
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
753e5b785932720ba08e68127358b40d45d6d65cbac28a61e2b481a1deb70480
|
|
| MD5 |
44a6436d2620dbfd70cad4c7587eec1b
|
|
| BLAKE2b-256 |
78678f13471f12c3f0797d3abc332c1d9cacdb04fc05a0d605ef5930718c3184
|
File details
Details for the file pynsee-0.2.5-py3-none-any.whl.
File metadata
- Download URL: pynsee-0.2.5-py3-none-any.whl
- Upload date:
- Size: 9.8 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.25
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e2098ed4053d199abd785446512f0afe477428c94c2a84277dfec359bfb10c68
|
|
| MD5 |
34ce473f0f49f87bb30216d7bd93cf20
|
|
| BLAKE2b-256 |
e51e17d8e76d6728dc0129e564066f290b02dc71c87f94475c9660797eb9a4a9
|