Go to file
2012-10-04 08:49:39 -04:00
wolframalpha Expanded basic test 2012-10-03 19:36:21 -04:00
.hgtags Added tag 1.0.1 for changeset f5ff7fd7358b 2012-10-04 08:49:39 -04:00
README Updated readme again 2012-10-04 08:49:31 -04:00
setup.py Added readme 2012-10-03 20:36:35 -04:00

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

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

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

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

    easy_install wolframalpha

or

    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.