File: const.py

package info (click to toggle)
meteofrance-api 1.5.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 608 kB
  • sloc: python: 1,497; makefile: 8
file content (14 lines) | stat: -rw-r--r-- 307 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
"""Météo-France API test constants."""

from meteofrance_api.model.place import PlaceData

MOUNTAIN_CITY: PlaceData = {
    "insee": "74080",
    "name": "La Clusaz",
    "lat": 45.90417,
    "lon": 6.42306,
    "country": "FR",
    "admin": "Rhône-Alpes",
    "admin2": "74",
    "postCode": "74220",
}