how to start

After a successful installation, to get started, you need to write a small script. Here is an example script that does not require authentication for execution, for your convenience:

from crushon import Client
client = Client()
print(client.search("frisk"))

Let's improve it for clarity:

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

Last updated