get_recommendations

Obtaining recommendations is quite a nuanced process but comes with many parameters for precise searching.

Parameters:

  • count: int = 25 - Number of characters to retrieve

  • nsfw: bool = False - Determines content type

  • gender: int = 0 - Gender for the search

  • tags: List[str] = [] - Tags for filtering the search

Example request with parameters:

from crushon import Client
client = Client()
for character in client.get_recommendations(nsfw=True)["characters"]:
    print(f'[+] {character["id"]}; {character["name"]}; {character["description"].strip()}')

Last updated