Skip to main content

A simple way to access the webhose.io API from your Python code

import webhose

webhose.config(token=YOUR_API_KEY)
for post in webhose.search("github"):
    print(post.title)

API Key

To make use of the webhose.io API, you need to obtain a token that would be used on every request. To obtain an API key, create an account at https://webhose.io/auth/signup, and then go into https://webhose.io/dashboard to see your token.

Installing

You can install from source:

$ git clone https://github.com/Buzzilla/webhose-python
$ cd webhose-python
$ python setup.py install

Use the API

To get started, you need to import the library, and set your access token. (Replace YOUR_API_KEY with your actual API key).

>>> import webhose
>>> webhose.config(token=YOUR_API_KEY)

Now you can make a request and inspect the results:

>>> r = webhose.search("foobar")
>>> r.total
62
>>> len(r.posts)
62
>>> r.posts[0].language
'english'
>>> r.posts[0].title
'Putting quotes around dictionary keys in JS'

For your convenience, the Response object is iterable, so you can loop over it and get all the results. The iterator will create additional API requests to fetch additional pages.

>>> total_words = 0
>>> for post in r:
...     total_words += len(post.text.split(" "))
...
>>> print(total_words)
56006

Warning: This method can use up your credits if your search has lots of results.

Full documentation

  • config(token)

    • token - your API key

  • search(query, token=None)

    • query - the search query, either as a search string, or as a Query object

    • token - you can provide the API key directly to the search function if you want

Query objects

Query object correspond to the advanced search options that appear on https://webhose.io/use

Query object have the following members:

  • all_terms - a list of strings, all of which must appear in the results

  • some_terms - a list of strings, some of which must appear in the results

  • phrase - a phrase that must appear verbatim in the results

  • exclude - terms that should not appear in the results

  • site_type - one or more of discussions, news, blogs

  • language - one or more of language names, in lowercase english

  • site - one or more of site names, top level only (i.e., yahoo.com and not news.yahoo.com)

  • title - terms that must appear in the title

  • body_text - term that must appear in the body text

Query objects implement the __str__() method, which shows the resulting search string.

Response objects

Response objects have the following members:

  • total - the total number of posts which match this search

  • more - the number of posts not included in this response

  • posts - a list os Post objects

  • next - a URL for the next results page for this search

  • response - the original requests response

  • get_next() - a method to fetch the next page of results. Returns a new Response object

Response objects implement the __iter__() method, which can be used to loop over all posts matching the query. (Automatic page fetching)

Post and Thread objects

Post and Thread object contain the actual data returned from the API. Consult https://webhose.io/documentation to find out about their structure.

Polling

If you want to make repeated searches, performing an action whenever there are new results, use code like this:

r = webhose.search("skyrim")
while True:
    for post in r:
        perform_action(post)
    time.sleep(300)
    r = r.get_next()

Release files for webhose 0.1.5

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for webhose 0.1.5
File Size Uploaded
webhose-0.1.5.tar.gz 5.5 kB Details

Release files / webhose-0.1.5.tar.gz

Download URL webhose-0.1.5.tar.gz
Size 5.5 kB
Tags Source
SHA-256 checksum
How to use checksums
3d96bda569e7a36da2884ecff03c26a5f3b9267176114ec18aa9f9d3cbddf238
BLAKE2b-256 checksum
How to use checksums
ed5b6226f7cdf021ad1faf9967dc58247161233e09aa36ba71a6e4dab75fd7f2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release history Release notifications | RSS feed

This release

0.1.5 This release

1 release file

0.1.4

1 release file

0.1.3

1 release file

0.1.2

1 release file

0.1.1

1 release file

0.1.0

1 release file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page