Skip to content

Commit 534d805

Browse files
committed
Bump to v2.0.1
1 parent c03e3c8 commit 534d805

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ A modern, easy-to-use Python wrapper for the Akinator web game, supporting both
1818
Background
1919
----------
2020

21-
Originally, there was a popular Python library called `akinator.py`, which provided a simple interface to interact with the Akinator API. However, this library suddenly disappeared from public repositories without notice. In response, a mirror was created here to preserve its functionality. Unfortunately, it too stopped working after Akinator made changes to their backend API. Later, another library called `akipy` emerged to fill the gap, but it also became non-functional when Cloudflare protection was introduced on Akinator's endpoints. This library revives Akinator interaction by replacing the standard `requests` library with `cloudscraper`, allowing it to bypass Cloudflares anti-bot measures and restoring full functionality.
21+
Originally, there was a popular Python library called ``akinator.py``, which provided a simple interface to interact with the Akinator API. However, this library suddenly disappeared from public repositories without notice. In response, a mirror was created here to preserve its functionality. Unfortunately, it too stopped working after Akinator made changes to their backend API. Later, another library called ``akipy`` emerged to fill the gap, but it also became non-functional when Cloudflare protection was introduced on Akinator's endpoints. This library revives Akinator interaction by replacing the standard ``requests`` library with ```cloudscraper``, allowing it to bypass Cloudflare's anti-bot measures and restoring full functionality.
2222

2323
Features
2424
--------

akinator/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
__author__ = "Omkaar"
1414
__license__ = "MIT"
1515
__copyright__ = "Copyright 2025 Omkaar"
16-
__version__ = "2.0.0"
16+
__version__ = "2.0.1"
1717

1818

1919
from .client import *

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@
1010
project = "akinator.py"
1111
copyright = "2025, Omkaar"
1212
author = "Ombucha"
13-
release = "2.0.0"
13+
release = "2.0.1"
1414

1515
extensions = ["sphinx.ext.autodoc"]

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "akinator.py"
3-
version = "2.0.0"
3+
version = "2.0.1"
44
description = "A basic API wrapper for Akinator."
55
authors = ["Ombucha <omkaar.nerurkar@gmail.com>"]
66
license = "MIT"

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
setup(
1111
name = "akinator",
12-
version = "2.0.0",
12+
version = "2.0.1",
1313
description = "A basic API wrapper for Akinator.",
1414
long_description = README,
1515
long_description_content_type = "text/x-rst",
@@ -23,7 +23,7 @@
2323
"Programming Language :: Python",
2424
"Programming Language :: Python :: 3",
2525
],
26-
python_requires='>= 98.0',
26+
python_requires='>= 3.9.0',
2727
packages = ["akinator"],
2828
include_package_data = True,
2929
install_requires = ["cloudscraper"]

0 commit comments

Comments
 (0)