Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bing commands deprecated #239

Open
wants to merge 1 commit into
base: gonzobot
Choose a base branch
from
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