X-Git-Url: https://jfr.im/git/z_archive/twitter.git/blobdiff_plain/7f22c0211d8f3cc0efc56533b98354cc8f3aecac..ce92ec7762914d9499be24d1730338ed1de7f642:/twitter/cmdline.py?ds=sidebyside diff --git a/twitter/cmdline.py b/twitter/cmdline.py index 780837d..fcb5892 100644 --- a/twitter/cmdline.py +++ b/twitter/cmdline.py @@ -1,3 +1,5 @@ +#!/usr/bin/env python +# encoding: utf-8 """ USAGE: @@ -90,10 +92,10 @@ OPTIONS = { def parse_args(args, options): long_opts = ['help', 'format=', 'refresh', 'oauth=', - 'refresh-rate=', 'config=', 'length=', 'timestamp', + 'refresh-rate=', 'config=', 'length=', 'timestamp', 'datestamp', 'no-ssl'] short_opts = "e:p:f:h?rR:c:l:td" - opts, extra_args = getopt(args, short_opts, long_opts) + opts, extra_args = getopt(args, short_opts, long_opts) for opt, arg in opts: if opt in ('-f', '--format'): @@ -137,7 +139,7 @@ def get_time_string(status, options, format="%a %b %d %H:%M:%S +0000 %Y"): return time.strftime("%H:%M:%S ", t) elif datestamp: return time.strftime("%Y-%m-%d ", t) - return "" + return "" class StatusFormatter(object): def __call__(self, status, options): @@ -311,7 +313,7 @@ class NoSuchAction(Action): def __call__(self, twitter, options): raise NoSuchActionError("No such action: %s" %(options['action'])) -def printNicely(string): +def printNicely(string): if sys.stdout.encoding: print string.encode(sys.stdout.encoding, 'replace') else: @@ -331,15 +333,14 @@ class SearchAction(Action): # We need to be pointing at search.twitter.com to work, and it is less # tangly to do it here than in the main() twitter.domain="search.twitter.com" - twitter.uri="" + twitter.uriparts=() # We need to bypass the TwitterCall parameter encoding, so we # don't encode the plus sign, so we have to encode it ourselves query_string = "+".join( [quote(term.decode(get_term_encoding())) for term in options['extra_args']]) - twitter.encoded_args = "q=%s" %(query_string) - results = twitter.search()['results'] + results = twitter.search(q=query_string)['results'] f = get_formatter('search', options) for result in results: resultStr = f(result, options) @@ -506,7 +507,7 @@ def main(args=sys.argv[1:]): options['oauth_filename']) oauth_token, oauth_token_secret = read_token_file(oauth_filename) - + twitter = Twitter( auth=OAuth( oauth_token, oauth_token_secret, CONSUMER_KEY, CONSUMER_SECRET),