/TwitterAPIClient

A simple Twitter API client in Python

Primary LanguagePythonMIT LicenseMIT

Twitter API Client

A Twitter API Client which fetches and displays Tweets that

  1. Have been re-tweeted at least once
  2. Contain the hashtag #custserv

Features

  • Built using Flask, a Python microframework
  • Uses powerful Jinja2 templating
  • Infinite Scrolling
  • Easy to extend

Installation

  • Clone or download the source code zip
  • Run pip install -r requirements.txt to download the required dependencies
  • Add your Twitter API credentials in ~/.bash_profile
  • Run python main.py from terminal
  • Open browser and navigate to localhost
  • All the recent tweets satisfying the above mentioned conditions will be displayed

Future Aspects

  • Use caching to save API Calls
  • Write Unit Tests