spiegel-keyman/linux/keyman-config/keyman_config/__init__.py
2020-07-17 19:22:51 +02:00

14 lines
616 B
Python

from .version import __version__
from .version import __majorversion__
from .version import __releaseversion__
from .version import __tier__
if __tier__ == 'alpha':
# Alpha versions will work against the staging server so that they
# can access new APIs etc that will only be available there. The staging
# servers have resource constraints but should be okay for limited use.
KeymanComUrl = 'https://staging-keyman-com.azurewebsites.net'
KeymanApiUrl = 'https://staging-api-keyman-com.azurewebsites.net'
else:
KeymanComUrl = 'https://keyman.com'
KeymanApiUrl = 'https://api.keyman.com'