You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Jason R. Coombs cff8e08013 Use simpler syntax now supported by pmxbot. 8 years ago
docs Merge skeleton updates 8 years ago
wolframalpha Use simpler syntax now supported by pmxbot. 8 years ago
.gitignore Add gitignore. Make .hgignore empty - there's nothing here that's project specific. 8 years ago
.hgtags Added tag 2.0 for changeset 06fa3ceb4662 8 years ago
.travis.yml Generate project skeleton 9 years ago
CHANGES.rst For tests, also disable the API key. This is the API key that was seeing high usage. 8 years ago
README.rst Rename text files to match skeleton 9 years ago
conftest.py Bypass tests on Python 2.7 when pmxbot is involved. 9 years ago
pytest.ini Generate project skeleton 9 years ago
setup.cfg Generate project skeleton 9 years ago
setup.py Merge new repo-based skeleton 9 years ago

README.rst

wolframalpha
============

Python Client built against the `Wolfram|Alpha <http://wolframalpha.com>`_
v2.0 API. This project is hosted on `bitbucket
<https://github.com/jaraco/wolframalpha>`_.

Installation
============

This library is released to PyPI, so the easiest way to install it is to use
easy_install::

easy_install wolframalpha

or pip::

pip install wolframalpha

If you don't have these tools or you prefer not to use setuptools, you may
also simply extract the 'wolframalpha' directory an appropriate location in
your Python path.

Usage
=====

Basic usage is pretty simple. Create the client with your App ID (request from
Wolfram Alpha)::

import wolframalpha
client = wolframalpha.Client(app_id)

Then, you can send queries, which return Result objects::

res = client.query('temperature in Washington, DC on October 3, 2012')

Result objects have `pods` attribute (a Pod is an answer from Wolfram Alpha)::

for pod in res.pods:
do_something_with(pod)

You may also query for simply the pods which have 'Result' titles::

print(next(res.results).text)

For more information, read the source.