logo

scripts

A bunch of scripts, some to be moved to their own repository git clone https://hacktivis.me/git/scripts.git

replies.py (275B)


  1. #!/usr/bin/python3
  2. # -*- encoding: utf-8 -*-
  3. from TwitterAPI import TwitterAPI, TwitterOAuth, TwitterRestPager
  4. import html, sys
  5. o = TwitterOAuth.read_file('credentials.txt')
  6. api = TwitterAPI(
  7. o.consumer_key,
  8. o.consumer_secret,
  9. o.access_token_key,
  10. o.access_token_secret)