Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions plugins/bing.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@ def bingify(s):
@hook.command("bing", "b")
def bing(text, bot):
"""<query> - returns the first bing search result for <query>"""

return "This API has been deprecated and removed."

api_key = bot.config.get("api_keys", {}).get("bing_azure")

# handle NSFW
Expand Down Expand Up @@ -74,6 +77,9 @@ def bing(text, bot):
@hook.command("bingimage", "bis")
def bingimage(text, bot):
"""<query> - returns the first bing image search result for <query>"""

return "This API has been deprecated and removed."

api_key = bot.config.get("api_keys", {}).get("bing_azure")

# handle NSFW
Expand Down