Source code for api.world.v1.timezone
"""Autogenerated API"""
import requests
from argus_cli.plugin import register_command
[docs]@register_command(extending=('world','v1','timezone'))
def get_time_zones(keywords: list = None, offset: int = 0, limit: int = 25,json: bool = True, verify: bool = True, apiKey: str = "", authentication: dict = {}) -> dict:
"""Get all time zones (PUBLIC)
:param list keywords: Filter time zones by keywords
:param int offset: Skip a number of time zones
:param int limit: Maximum number of returned time zones
:raises AuthenticationFailedException: on 401
:raises ValidationErrorException: on 412
:raises AccessDeniedException: on 403
:returns: {"offset": 764, "limit": 543, "responseCode": 200, "count": 247, "data": [{"description": "Work spring national friend wear him staff."}], "metaData": {"additionalProperties": {}}, "messages": [{"message": "Study something car north fight action.", "messageTemplate": "Serious drop rate off instead.", "field": "Class create scene might role space foreign.", "parameter": {}, "timestamp": 1239705835}], "currentPage": 100, "size": 385}
"""
from requests import get
from argus_api.exceptions import http
url = "https://portal.mnemonic.no/web/api/world/v1/timezone".format()
headers = {
'Content-Type': 'application/json',
'User-Agent': 'ArgusToolbelt/1.0'
}
if apiKey:
headers["Argus-API-Key"] = apiKey
elif authentication and isinstance(authentication, dict):
headers.update(authentication)
elif callable(authentication):
headers.update(authentication(url))
body = {}
if offset:
body.update({"offset": offset})
if limit:
body.update({"limit": limit})
if keywords:
body.update({"keywords": keywords})
response = get(url, json=body if body else None, verify=verify, headers=headers)
errors = []
if response.status_code == 401:
raise http.AuthenticationFailedException(response)
elif response.status_code == 403:
raise http.AccessDeniedException(response)
elif response.status_code == 412:
raise http.ValidationErrorException(response)
elif response.status_code == 404:
raise http.ObjectNotFoundException(response)
return response.json() if json else response