:py:mod:`EVECelery.tasks.ESI.Status.get_status` =============================================== .. py:module:: EVECelery.tasks.ESI.Status.get_status .. autoapi-nested-parse:: A task definition module with associated response models returned by the task. This module was automatically generated from Jinja templates with the codegen tool included in the root of this repo. You should not directly modify this module but instead modify the template 'codegen/Templates/ESI_Task.py'. Module Contents --------------- Classes ~~~~~~~ .. autoapisummary:: EVECelery.tasks.ESI.Status.get_status.get_status .. py:class:: get_status Bases: :py:obj:`EVECelery.tasks.BaseTasks.TaskESI.TaskESI` Retrieve the uptime and player counts .. py:method:: request_method() -> str Returns the type of request made to ESI This method will return the request method (get, post, etc.) made to ESI. :return: Request method passed to requests.request() .. py:method:: route(**kwargs) -> str ESI route with input request parameters :return: ESI route with request path parameters if any .. py:method:: cache_ttl_default() -> int TTL for when cache is unspecified. :return: The number of seconds to cache a response .. py:method:: get_sync(datasource: str = 'tranquility', kwargs_apply_async: Optional[dict] = None, kwargs_get: Optional[dict] = None) -> Union[EVECelery.tasks.ESI.Status.Models.get_status_200.Response200_get_status] Retrieve the uptime and player counts EVE Server status --- Alternate route: `/dev/status/` Alternate route: `/legacy/status/` Alternate route: `/v1/status/` Alternate route: `/v2/status/` --- This route is cached for up to 30 seconds NOTE: This function calls the task and blocks until the result is available. This function is a wrapper around Celery's `task.apply_async() `_ and `AsyncResult.get() `_ methods. Instead of a dictionary, this function returns a pydantic model to more easily see what returned data responses look like, what is optionally returned, etc. If you would instead like to return an async result, use Celery's `apply_async() `_ method on this task. :param datasource: The server name you would like data from -- ['tranquility'] :param Optional[dict] kwargs_apply_async: Dictionary of keyword arguments passed to `task.apply_async() `_ :param Optional[dict] kwargs_get: Dictionary of keyword arguments passed to `AsyncResult.get() `_ :return: The response from ESI as a pydantic object. The response model will follow the structure of :class:`Response200_get_status`. .. py:method:: run(datasource: str = 'tranquility', **kwargs) -> dict The task body that runs on the EVECelery worker This is the task body that runs on the EVECelery worker. IMPORTANT NOTE: You should not directly call this function from your client code as it will run within the context of your client and won't be sent to the message broker to run on a worker node. To correctly call this task body, see `Celery's documentation `_ on methods for calling tasks. See also this task's :func:`get_sync` which is a wrapper function around Celery's apply_async().get() call. Retrieve the uptime and player counts EVE Server status --- Alternate route: `/dev/status/` Alternate route: `/legacy/status/` Alternate route: `/v1/status/` Alternate route: `/v2/status/` --- This route is cached for up to 30 seconds :param datasource: The server name you would like data from -- ['tranquility'] :return: The response from ESI as a JSON dictionary. The response dictionary will follow the structure of :class:`Response200_get_status`.