Commit 01edda02 authored by Your Name's avatar Your Name

fix isExist to exists

parent b9b4addb
...@@ -26,7 +26,7 @@ def searchban(screen_name): ...@@ -26,7 +26,7 @@ def searchban(screen_name):
# "protected": False, # "protected": False,
# "suspended": False, # "suspended": False,
# "hasTweets": True, # "hasTweets": True,
"isExist": False, "exists": False,
"error": None "error": None
}, },
# "check": { # "check": {
...@@ -50,7 +50,7 @@ def searchban(screen_name): ...@@ -50,7 +50,7 @@ def searchban(screen_name):
# profile_json = profile_info.json() # profile_json = profile_info.json()
# print(profile_json) # print(profile_json)
# if profile_info.status_code == 200: # if profile_info.status_code == 200:
# returnjson["profile"]["isExist"] = True # returnjson["profile"]["exists"] = True
# returnjson["profile"]["id"] = profile_json["id_str"] # returnjson["profile"]["id"] = profile_json["id_str"]
# returnjson["profile"]["screenName"] = profile_json["screen_name"] # returnjson["profile"]["screenName"] = profile_json["screen_name"]
# returnjson["profile"]["protected"] = profile_json["protected"] # returnjson["profile"]["protected"] = profile_json["protected"]
...@@ -91,7 +91,7 @@ def searchban(screen_name): ...@@ -91,7 +91,7 @@ def searchban(screen_name):
returnjson["profile"]["hasTweets"] = True returnjson["profile"]["hasTweets"] = True
if usertl.status_code == 200: if usertl.status_code == 200:
returnjson["profile"]["isExist"] = True returnjson["profile"]["exists"] = True
returnjson["profile"]["id"] = usertl_json[0]["user"]["id_str"] returnjson["profile"]["id"] = usertl_json[0]["user"]["id_str"]
returnjson["profile"]["screen_name"] = usertl_json[0]["user"]["screen_name"] returnjson["profile"]["screen_name"] = usertl_json[0]["user"]["screen_name"]
# returnjson["profile"]["protected"] = usertl_json["protected"] # returnjson["profile"]["protected"] = usertl_json["protected"]
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment