You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
599 B
27 lines
599 B
# coding: utf-8 |
|
""" |
|
Constants used across the app. |
|
""" |
|
from __future__ import absolute_import, print_function, unicode_literals |
|
|
|
from enum import Enum |
|
|
|
# Some backends give more infos than others. Here is the precedence we want to |
|
# use. First is most important one, last is the one that will always be |
|
# considered as less trustable if two backends have similar info about a |
|
# housing. |
|
BACKENDS_BY_PRECEDENCE = [ |
|
"foncia", |
|
"seloger", |
|
"pap", |
|
"leboncoin", |
|
"explorimmo", |
|
"logicimmo", |
|
] |
|
|
|
|
|
class TimeToModes(Enum): |
|
PUBLIC_TRANSPORT = -1 |
|
WALK = 1 |
|
BIKE = 2 |
|
CAR = 3
|
|
|