related_tags#
- Tag.related_tags#
Get the related tags associated with this tag.
- Returns:
A list of related Tag objects associated with this tag.
- Return type:
List[Tag]
- Raises:
RuntimeError – If the client is not set for this Tag.
Example
>>> tags = fred_client.get_tags() >>> for tag in tags: >>> for related_tag in tag.related_tags: >>> print(related_tag.name) 'nation' 'usa' 'frb'...
Note: This property is meant for simple relational requests, for more complex queries use the client methods directly.