carte d'affichage Python

# Plotly is a great to great many type of static maps (density map, choropleth, hexbin, etc);
# https://plotly.com/python/maps/

# Folium is a better for interective maps;
import folium
m = folium.Map(location=[45.5236, -122.6750])
m
# The result will show an interactive map, similar to google map;
Intempestive Al Dente