Skip to content

Commit

Permalink
v0.2.3 update warning message
Browse files Browse the repository at this point in the history
  • Loading branch information
oczkers committed Nov 20, 2016
1 parent d966230 commit 69e787f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion fut/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
4 changes: 2 additions & 2 deletions fut/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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")
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down

0 comments on commit 69e787f

Please sign in to comment.