X-Git-Url: https://jfr.im/git/z_archive/twitter.git/blobdiff_plain/d2f3bdc9ec47168999d8d300dc6dc87b1b203626..0396df77671421fa844deddcb074b56e14bc5971:/twitter/cmdline.py diff --git a/twitter/cmdline.py b/twitter/cmdline.py index fd062f0..c32470a 100644 --- a/twitter/cmdline.py +++ b/twitter/cmdline.py @@ -15,7 +15,6 @@ ACTIONS: tweets from that list mylist get list of your lists; give a list name to get tweets from that list - public get latest public tweets pyprompt start a Python prompt for interacting with the twitter object directly replies get latest replies to you @@ -44,6 +43,7 @@ FORMATS for the --format option default one line per status verbose multiple lines per status, more verbose status info + json raw json data from the api on each line urls nothing but URLs ansi ansi colour (rainbow mode) @@ -73,14 +73,15 @@ except (AttributeError, KeyError): CONSUMER_KEY = 'uS6hO2sV6tDKIOeVjhnFnQ' CONSUMER_SECRET = 'MEYTOS97VvlHX7K1rwHPEqVpTSqZ71HtvoK4sVuYk' -import sys -import time from getopt import gnu_getopt as getopt, GetoptError from getpass import getpass -import re -import os.path +import json import locale +import os.path +import re import string +import sys +import time try: from ConfigParser import SafeConfigParser @@ -229,6 +230,11 @@ class VerboseStatusFormatter(object): status['created_at'], gHtmlParser.unescape(status['text']))) +class JSONStatusFormatter(object): + def __call__(self, status, options): + status['text'] = gHtmlParser.unescape(status['text']) + return json.dumps(status) + class URLStatusFormatter(object): urlmatch = re.compile(r'https?://\S+') def __call__(self, status, options): @@ -317,6 +323,7 @@ formatters = {} status_formatters = { 'default': StatusFormatter, 'verbose': VerboseStatusFormatter, + 'json': JSONStatusFormatter, 'urls': URLStatusFormatter, 'ansi': AnsiStatusFormatter } @@ -464,7 +471,7 @@ class ListsAction(StatusAction): screen_name = options['extra_args'][0] if not options['extra_args'][1:]: - lists = twitter.user.lists(user=screen_name)['lists'] + lists = twitter.lists.list(screen_name=screen_name) if not lists: printNicely("This user has no lists.") for list in lists: @@ -485,15 +492,11 @@ class MyListsAction(ListsAction): class FriendsAction(StatusAction): def getStatuses(self, twitter, options): - return reversed(twitter.statuses.friends_timeline(count=options["length"])) - -class PublicAction(StatusAction): - def getStatuses(self, twitter, options): - return reversed(twitter.statuses.public_timeline(count=options["length"])) + return reversed(twitter.statuses.home_timeline(count=options["length"])) class RepliesAction(StatusAction): def getStatuses(self, twitter, options): - return reversed(twitter.statuses.replies(count=options["length"])) + return reversed(twitter.statuses.mentions_timeline(count=options["length"])) class FollowAction(AdminAction): def getUser(self, twitter, user): @@ -616,7 +619,6 @@ actions = { 'mylist' : MyListsAction, 'help' : HelpAction, 'leave' : LeaveAction, - 'public' : PublicAction, 'pyprompt' : PythonPromptAction, 'replies' : RepliesAction, 'search' : SearchAction, @@ -661,11 +663,11 @@ def main(args=sys.argv[1:]): if v: options[k] = v if options['refresh'] and options['action'] not in ( - 'friends', 'public', 'replies'): - print("You can only refresh the friends, public, or replies actions.", file=sys.stderr) + 'friends', 'replies'): + print("You can only refresh the friends or replies actions.", file=sys.stderr) print("Use 'twitter -h' for help.", file=sys.stderr) return 1 - + oauth_filename = os.path.expanduser(options['oauth_filename']) if (options['action'] == 'authorize' @@ -673,7 +675,7 @@ def main(args=sys.argv[1:]): oauth_dance( "the Command-Line Tool", CONSUMER_KEY, CONSUMER_SECRET, options['oauth_filename']) - + global ansiFormatter ansiFormatter = ansi.AnsiCmd(options["force-ansi"]) @@ -683,7 +685,7 @@ def main(args=sys.argv[1:]): auth=OAuth( oauth_token, oauth_token_secret, CONSUMER_KEY, CONSUMER_SECRET), secure=options['secure'], - api_version='1', + api_version='1.1', domain='api.twitter.com') try: