Skip to main content

Minimal wrapper for Twitter's REST and Streaming APIs

Project description

This Python package supports Twitter’s REST and Streaming APIs (version 1.1) with OAuth 1.0 or OAuth 2.0. It works with the latest Python versions in both 2.x and 3.x branches.

Some Code Examples

[See TwitterAPI/cli.py and TwitterAPI/examples for more working examples.]

First, authenticate with your application credentials:

from TwitterAPI import TwitterAPI
api = TwitterAPI(consumer_key, consumer_secret, access_token_key, access_token_secret)

Tweet something:

r = api.request('statuses/update', {'status':'This is a tweet!'})
print r.status_code

Get some tweets:

r = api.request('search/tweets', {'q':'pizza'})
for item in r:
        print item

Stream tweets from New York City:

r = api.request('statuses/filter', {'locations':'-74,40,-73,41'})
for item in r:
        print item

Notice that request() accepts both REST and Streaming API methods, and it takes two arguments: the Twitter method, and a dictionary of method parameters. In the above examples we use get_iterator() to get each tweet object. The iterator knows how to iterate both REST and Streaming API results, in addition to error objects. Alternatively, you have access to the response object returned by request(). From the response object r you can get the raw response with r.text or the HTTP status code with r.status_code. See the requests library documentation for more details.

Command-Line Usage (cli.py)

For syntax help:

python -u -m TwitterAPI.cli -h

You will need to supply your Twitter application OAuth credentials. The easiest option is to save them in TwitterAPI/credentials.txt. It is the default place where cli.py will look for them. You also may supply an alternative credentials file as a command-line argument.

Call any REST API endpoint:

python -u -m TwitterAPI.cli -endpoint statuses/update -parameters status='my tweet'

Another example (here using abbreviated option names) that parses selected output fields:

python -u -m TwitterAPI.cli -e search/tweets -p q=zzz count=10 -field screen_name text

Calling any Streaming API endpoint works too:

python -u -m TwitterAPI.cli -e statuses/filter -p track=zzz -f screen_name text

After the -field option you must supply one or more key names from the raw JSON response object. This will print values only for these keys. When the -field option is omitted cli.py prints the entire JSON response object.

Installation

From the command line:

pip install TwitterAPI

Documentation

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

TwitterAPI-2.2.8.tar.gz (8.8 kB view details)

Uploaded Source

File details

Details for the file TwitterAPI-2.2.8.tar.gz.

File metadata

  • Download URL: TwitterAPI-2.2.8.tar.gz
  • Upload date:
  • Size: 8.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for TwitterAPI-2.2.8.tar.gz
Algorithm Hash digest
SHA256 fc3f60e62ffe34a6f3ca0379d0439be9d670b7d7014526efd8bb819063794c20
MD5 9e31a8aa374001600d55ad469f8275dd
BLAKE2b-256 244de37dde5615b9a6c93f2421ef26c61cea4416678cce09b1fd856fa327c2a1

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page