Provide a python library for using IGN WMTS web service.
https://geoservices.ign.fr/documentation/services/services-geoplateforme/diffusion#70062
Explain the principal in better way than the current IGN WMTS actual documentation
https://geoservices.ign.fr/documentation/services/services-deprecies/images-tuilees-wmts-ogc
$ python3 -m venv .venv
$ source .venv/bin/activate
$ pip install -r requirements.txt
$ python3 wmts_example.py
$ pip install git+https://github.com/francois-poidevin/IGNwmtsPyLib@main
from wmtsPyLib.wmts.wmts import Wmts
_wmts = Wmts()
print(_wmts.getCapabilities())
print(_wmts.getAvailableLayers())
Take a look in ./wmts_example.py for examples