2 minute read

Wolfram|Alpha is perhaps the most advanced knowledge base in the world. Wolfram|Alpha is perhaps the most advanced knowledge base in the world.

If you’re a Computer Scientist, Physicist, Mathematician, or just an analytical person that likes fast, accurate computation with a knowledge base that is unmatched anywhere else in the world, then you’ve probably worked with WolframAlpha before. Whether for computations, unit conversions, or word definitions, Wolfram seems to have an answer to pretty much every single important question out there, and being able to harness that ability and apply it to our own programs is perhaps one of the most powerful add-ons we can add to an AI or chatbot to enhance responses quickly and easily. In this Quick Tip, we’ll be going through how to integrate WolframAlpha into your Python program to instantly beef up your data power.

API Authentication

Creating an Account

In the free plan, we get access to 2,000 free queries per month, which so far has been enough for all of my applications (even those with 120,000+ users!). If you’re going to be having a small to medium-sized project, the free plan should suffice.

First, you’ll need to create a WolframAlpha API account.

The WolframAlpha API Dashboard.

When you verify your email address, you’ll be redirected to the dashboard, and you’ll be able to proceed to the next step!

Getting Your API Key

In the dashboard, click the Get an AppID button.

Enter the relevant details for the app.

When you click on create, a new API key will be generated for your records. Store this token - it’s what you’ll need to authenticate with the Wolfram API! Once you write it down, we can move on to the next step - setting up our code to authenticate the key, and writing queries and getting responses!

Keep this API key for your records!

Installation

First, you’ll need to install the wolframalpha dependency:

pip install wolframalpha

Next, you’ll be able to download or copy the gist I created for interfacing with Wolfram Alpha:

Save this as wolframapi.py in the root folder of your Python program. Then, in your main Python file, import the module:

import wolframapi as wolfram

Usage

Once you’ve imported all the necessary modules, you’ll be able to very easily create a new Wolfram Client object and interface with it.

First, instantiate the Wolfram Client as a variable:

client = wolfram.Client("YOUR_CONFIG_KEY_HERE")

If no errors are returned, authentication succeeded! Now, you’ll be able to easily query responses like so:

print(client.ask("Weather in Tallahassee, FL"));

If everything is correct, you should get a detailed, multiline response:

A bit hot, don’t you think?

And that’s it! You can now customize it to your heart’s desire. Feel free to implement any changes to my small API, as well as use this code on your programs of any scale whatsoever!

Conclusion

With WolframAlpha, you’ll be able to create extremely intelligent responses to almost any prompt, from weather, to unit conversions, to Calculus. It’s something that I consider essential to all of my AI applications, and sometimes use it for quick conversions so as not to install loads of different modules. I hope you found my Quick Tip interesting, and happy coding!