Skip to content
This repository has been archived by the owner on Oct 15, 2018. It is now read-only.

Latest commit

 

History

History
31 lines (22 loc) · 698 Bytes

README.rst

File metadata and controls

31 lines (22 loc) · 698 Bytes

Jmbo Twitter

Jmbo app to fetch and display tweets as listings.

Contents

Installation

  1. Install or add jmbo-twitter to your Python path.
  2. Add jmbo_twitter to your INSTALLED_APPS setting.

Usage

Twitter's API version 1 requires authentication. Obtain authentication info at https://dev.twitter.com/apps. The following setting is required:

JMBO_TWITTER = {
    'consumer_key': 'XXX',
    'consumer_secret': 'XXX',
    'access_token_key': 'XXX',
    'access_token_secret': 'XXX'
}