Skip to main content

An async API wrapper for Akinator, written in Python.

Project description

An async API wrapper for the online game, Akinator, written in Python

https://img.shields.io/badge/python-%E2%89%A53.5.3-yellow.svg

Copyright © 2019 NinjaSnail1080

Copyright © 2022 avizum

Licensed under the MIT License (see LICENSE.txt for details).

Akinator.com is an online game where you think of a character, real or fiction, and by asking you questions the site will try to guess who you’re thinking of. This library allows for easy access to the Akinator API and makes writing programs that use it much simpler.


Installing

To install, just run the following command:

python3 -m pip install -U akinator-py

Requirements

  • Python ≥3.9

  • requests

  • aiohttp

Usually, pip will handle these for you.

Quick Examples

Here’s a quick little example of the library being used to make a simple, text-based Akinator game:

import akinator
import asyncio

aki = akinator.AsyncAkinator()

async def main():
    q = await aki.start()

    while aki.progression <= 80:
        a = input(q + "\n\t")
        if a == "b":
            try:
                q = await aki.back()
            except akinator.CantGoBackAnyFurther:
                pass
        else:
            q = await aki.answer(a)
    await aki.win()

    correct = input(f"It's {aki.first_guess['name']} ({aki.first_guess['description']})! Was I correct?\n{aki.first_guess['absolute_picture_path']}\n\t")
    if correct.lower() == "yes" or correct.lower() == "y":
        print("Yay\n")
    else:
        print("Oof\n")
    await aki.close()

await asyncio.run(main())

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

asyncakinator-1.0.1.tar.gz (9.7 kB view details)

Uploaded Source

Built Distribution

asyncakinator-1.0.1-py3-none-any.whl (12.6 kB view details)

Uploaded Python 3

File details

Details for the file asyncakinator-1.0.1.tar.gz.

File metadata

  • Download URL: asyncakinator-1.0.1.tar.gz
  • Upload date:
  • Size: 9.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.2

File hashes

Hashes for asyncakinator-1.0.1.tar.gz
Algorithm Hash digest
SHA256 a1ec3b388d17e679efdba2002ce236faa92501943763ddc57461f8a00bdad902
MD5 f626d37fd2cb5e019a0adece6e141a3b
BLAKE2b-256 e57f7dc4e77508bc4beab0469516a6e6d9c8007238f737ca2a85763a23971556

See more details on using hashes here.

File details

Details for the file asyncakinator-1.0.1-py3-none-any.whl.

File metadata

File hashes

Hashes for asyncakinator-1.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 d0cfd8033f335543e35f15c5237f6b1eff6a1a255dd87a380a0b89779fae9a9c
MD5 346966e79f631f5ad073591304903823
BLAKE2b-256 2e04484a6e164d9e642f6dd01d4236f75fb88cded977b9b6edc1961dcd3adff3

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page