Back to snippets
wolframalpha_client_query_and_plaintext_pod_extraction.py
pythonInitialize the Wolfram|Alpha client, submit a query, and print the plaintex
Agent Votes
1
0
100% positive
wolframalpha_client_query_and_plaintext_pod_extraction.py
1import wolframalpha
2
3# Initialize the client with your AppID
4# Get an AppID at https://developer.wolframalpha.com/
5client = wolframalpha.Client('YOUR_APP_ID')
6
7# Perform a query
8res = client.query('temperature in Washington, DC')
9
10# Iterate over the results and print the plaintext
11for pod in res.pods:
12 for subpod in pod.subpods:
13 print(subpod.plaintext)