https://github.com/chdsbd/wolframalpha-bot
:space_invader: A simple Flask app that provides a webhook for Slack to query the WolframAlpha API
https://github.com/chdsbd/wolframalpha-bot
flask slack webhook wolfram-alpha-api wolframalpha-bot
Last synced: about 1 month ago
JSON representation
:space_invader: A simple Flask app that provides a webhook for Slack to query the WolframAlpha API
- Host: GitHub
- URL: https://github.com/chdsbd/wolframalpha-bot
- Owner: chdsbd
- License: mit
- Created: 2016-09-02T23:25:33.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-01-03T05:28:20.000Z (over 7 years ago)
- Last Synced: 2025-04-17T22:10:17.949Z (about 1 month ago)
- Topics: flask, slack, webhook, wolfram-alpha-api, wolframalpha-bot
- Language: Python
- Homepage:
- Size: 4.88 KB
- Stars: 3
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# wolframalpha-bot
> A simple Flask app that provides a webhook for Slack to query the WolframAlpha API## Setup
1. Configure the Flask App using your [WolframAlphaAPIKey](http://products.wolframalpha.com/api/):
```bash
export API_KEY=
export TOKEN=
```2. Configure an [Outgoing WebHook](https://slack.com/apps/A0F7VRG6Q-outgoing-webhooks) for Slack with your `URL` and `TOKEN`.
3. Start app
- production: run `gunicorn app:app`
- development: run `python app.py`