From 69e787fd4e4d4059cf1bb1462e69a5978711d319 Mon Sep 17 00:00:00 2001 From: Piotr Staroszczyk Date: Sun, 20 Nov 2016 20:24:08 +0100 Subject: [PATCH] v0.2.3 update warning message --- fut/__init__.py | 2 +- fut/core.py | 4 ++-- setup.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/fut/__init__.py b/fut/__init__.py index 96c11ee..5866f87 100644 --- a/fut/__init__.py +++ b/fut/__init__.py @@ -23,7 +23,7 @@ """ __title__ = 'fut' -__version__ = '0.2.2' +__version__ = '0.2.3' __author__ = 'Piotr Staroszczyk' __author_email__ = 'piotr.staroszczyk@get24.org' __license__ = 'GNU GPL v3' diff --git a/fut/core.py b/fut/core.py index aaaf380..db2c855 100644 --- a/fut/core.py +++ b/fut/core.py @@ -178,7 +178,7 @@ def __login__(self, email, passwd, secret_answer, platform='pc', code=None, emul # TODO: split into smaller methods # TODO: check first if login is needed (https://www.easports.com/fifa/api/isUserLoggedIn) # TODO: get gamesku, url from shards !! - print("WARNING: Last days we've experienced few perm bans for most active users so at this moment it might be easy tracked by ea bot hunters. I strongly recommend to stop using it or at least lower activity until new version would be provided.") + print("WARNING: Requests made by fut were investigated and one little problem has been found (default page_size for search was 13 instead of 12) but it shouldn't be enough to ban so most probably reason is just to much and repeatable activity. All i can recommend is avoid emulate feature and temp bans (lower, randomize activity). Please report all bans to help protect others https://github.com/oczkers/fut/issues/216") secret_answer_hash = EAHashingAlgorithm().EAHash(secret_answer) # create session self.r = requests.Session() # init/reset requests session object @@ -840,4 +840,4 @@ def messageDelete(self, message_id): url = '{0}/{1}'.format(self.urls['fut']['ActiveMessage'], message_id) self.__delete__(url) -print("WARNING: Last days we've experienced few perm bans for most active users so at this moment it might be easy tracked by ea bot hunters. I strongly recommend to stop using it or at least lower activity until new version would be provided.") +print("WARNING: Requests made by fut were investigated and one little problem has been found (default page_size for search was 13 instead of 12) but it shouldn't be enough to ban so most probably reason is just to much and repeatable activity. All i can recommend is avoid emulate feature and temp bans (lower, randomize activity). Please report all bans to help protect others https://github.com/oczkers/fut/issues/216") diff --git a/setup.py b/setup.py index 927155a..20006de 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ __title__ = 'fut' -__version__ = '0.2.2' +__version__ = '0.2.3' __author__ = 'Piotr Staroszczyk' __author_email__ = 'piotr.staroszczyk@get24.org' __license__ = 'GNU GPL v3'