Go to file
2016-03-10 22:14:39 -05:00
docs Merge skeleton updates 2016-01-18 16:22:17 -05:00
wolframalpha support for images 2016-01-23 13:09:26 +01:00
.gitignore Add gitignore. Make .hgignore empty - there's nothing here that's project specific. 2016-01-01 08:30:19 -05:00
.hgtags Added tag 2.3 for changeset 8e390f13f30a 2016-03-10 22:14:39 -05:00
.travis.yml Generate project skeleton 2015-12-19 22:29:56 -05:00
CHANGES.rst Update changelog 2016-03-10 22:14:31 -05:00
conftest.py Bypass tests on Python 2.7 when pmxbot is involved. 2015-12-11 12:35:36 -05:00
pytest.ini Generate project skeleton 2015-12-19 22:29:56 -05:00
README.rst Rename text files to match skeleton 2015-12-19 22:41:28 -05:00
setup.cfg Generate project skeleton 2015-12-19 22:29:56 -05:00
setup.py Merge new repo-based skeleton 2015-12-19 22:45:12 -05:00

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.