:py:mod:`EVECelery.tasks.ESI.Character.get_characters_character_id` =================================================================== .. py:module:: EVECelery.tasks.ESI.Character.get_characters_character_id .. 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.Character.get_characters_character_id.get_characters_character_id .. py:class:: get_characters_character_id Bases: :py:obj:`EVECelery.tasks.BaseTasks.TaskESI.TaskESI` Get character's public information .. 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(character_id: int, **kwargs) -> str ESI route with input request parameters :param character_id: An EVE character ID :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(character_id: int, datasource: str = 'tranquility', kwargs_apply_async: Optional[dict] = None, kwargs_get: Optional[dict] = None) -> Union[EVECelery.tasks.ESI.Character.Models.get_characters_character_id_200.Response200_get_characters_character_id] Get character's public information Public information about a character --- Alternate route: `/dev/characters/{character_id}/` Alternate route: `/legacy/characters/{character_id}/` Alternate route: `/v5/characters/{character_id}/` --- This route is cached for up to 86400 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 character_id: An EVE character ID :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_characters_character_id`. .. py:method:: run(character_id: int, 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. Get character's public information Public information about a character --- Alternate route: `/dev/characters/{character_id}/` Alternate route: `/legacy/characters/{character_id}/` Alternate route: `/v5/characters/{character_id}/` --- This route is cached for up to 86400 seconds :param character_id: An EVE character ID :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_characters_character_id`.