Metadata-Version: 2.1
Name: akinator
Version: 1.0.2
Summary: An API wrapper for Akinator.
Home-page: https://github.com/Infiniticity/akinator.py
Author: Omkaar
Author-email: omkaar.nerurkar@gmail.com
License: MIT License
Project-URL: Documentation, https://akinator.readthedocs.io
Project-URL: Source, https://github.com/Infiniticity/akinator.py
Project-URL: Tracker, https://github.com/Infiniticity/akinator.py/issues
Classifier: Programming Language :: Python :: 3
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Internet
Classifier: Topic :: Utilities
Requires-Python: >=3.8.0
Description-Content-Type: text/x-rst
Provides-Extra: async
Provides-Extra: fast_async
License-File: LICENSE

===========
akinator.py
===========

.. image:: https://img.shields.io/github/license/Infiniticity/akinator.py
    :target: https://github.com/Infiniticity/akinator.py/blob/main/LICENSE.md
    :alt: license
.. image:: https://img.shields.io/tokei/lines/github/Infiniticity/akinator.py
    :target: https://github.com/Infiniticity/akinator.py/graphs/contributors
    :alt: lines of code
.. image:: https://img.shields.io/pypi/v/akinator
    :target: https://pypi.python.org/pypi/akinator
    :alt: PyPI version info
.. image:: https://img.shields.io/pypi/pyversions/akinator
    :alt: Python version info


**********
Installing
**********

To install the regular library without asynchronous support, just run the following command:

.. code-block:: sh

    # Unix / macOS
    python3 -m pip install "akinator.py"

    # Windows
    py -m pip install "akinator.py"


Otherwise, to get asynchronous support, do:

.. code-block:: sh

    # Unix / macOS
    python3 -m pip install "akinator.py[async]"

    # Windows
    py -m pip install "akinator.py[async]"


To get async support plus faster performance (via the ``aiodns`` and ``cchardet`` libraries), do:

.. code-block:: sh

    # Unix / macOS
    python3 -m pip install "akinator.py[fast_async]"

    # Windows
    py -m pip install "akinator.py[fast_async]"


To install the development version, do the following:

.. code-block:: sh

    git clone https://github.com/Infiniticity/akinator.py


Requirements
============

* Python ≥ 3.8.0

* `requests <https://pypi.python.org/pypi/requests>`_

* `aiohttp <https://pypi.python.org/pypi/aiohttp>`_ (Optional, for async)

* `aiodns <https://pypi.python.org/pypi/aiodns>`_ and `cchardet <https://pypi.python.org/pypi/cchardet>`_ (Optional, for faster performance with async)


Usually ``pip`` will handle these for you.


Links
=====

- `Akinator <https://akinator.com/>`_
- `Documentation <https://akinator.readthedocs.io/>`_
