# built documents.
#
# The short X.Y version.
-version = '0.7.7'
+version = '0.7.8'
# The full version, including alpha/beta/rc tags.
-release = '0.7.7'
+release = '0.7.8'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
printNicely(' '.join(ary))
+def format_quote(tweet):
+ """
+ Quoting format
+ """
+ # Retrieve info
+ screen_name = '@' + tweet['user']['screen_name']
+ text = tweet['text']
+ # Validate quote format
+ if '#owner' not in c['QUOTE_FORMAT']:
+ printNicely(light_magenta('Quote should contains #owner'))
+ return False
+ if '#comment' not in c['QUOTE_FORMAT']:
+ printNicely(light_magenta('Quote format should have #comment'))
+ return False
+ # Build formater
+ formater = ''
+ try:
+ formater = c['QUOTE_FORMAT']
+ formater = screen_name.join(formater.split('#owner'))
+ formater = text.join(formater.split('#tweet'))
+ formater = u2str(formater)
+ except:
+ pass
+ # Highlight like a tweet
+ formater = formater.split()
+ formater = lmap(
+ lambda x: light_green(x)
+ if x == '#comment'
+ else x,
+ formater)
+ formater = lmap(
+ lambda x: color_func(c['TWEET']['rt'])(x)
+ if x == 'RT'
+ else x,
+ formater)
+ formater = lmap(lambda x: cycle_color(x) if x[0] == '@' else x, formater)
+ formater = lmap(
+ lambda x: color_func(c['TWEET']['link'])(x)
+ if x[0:4] == 'http'
+ else x,
+ formater)
+ formater = lmap(
+ lambda x: color_func(c['TWEET']['hashtag'])(x)
+ if x.startswith('#')
+ else x,
+ formater)
+ formater = ' '.join(formater)
+ # Notice
+ notice = light_magenta('Quoting: "') + formater + light_magenta('"')
+ printNicely(notice)
+ return formater
+
+
# Start the color cycle
start_cycle()
"""
Quote a tweet
"""
- # Retrieve info
+ # Get tweet
t = Twitter(auth=authen())
try:
id = int(g['stuff'].split()[0])
return
tid = c['tweet_dict'][id]
tweet = t.statuses.show(id=tid)
- screen_name = '@' + tweet['user']['screen_name']
- text = tweet['text']
- # Validate quote format
- if '#owner' not in c['QUOTE_FORMAT']:
- printNicely(light_magenta('Quote should contains #owner'))
+ # Get formater
+ formater = format_quote(tweet)
+ if not formater:
return
- if '#comment' not in c['QUOTE_FORMAT']:
- printNicely(light_magenta('Quote format should have #comment'))
- return
- # Notice
- notice = light_magenta('Current quote format is: ')
- notice += light_green(c['QUOTE_FORMAT'])
- printNicely(notice)
- # Build formater
- formater = ''
- try:
- formater = c['QUOTE_FORMAT']
- formater = screen_name.join(formater.split('#owner'))
- formater = text.join(formater.split('#tweet'))
- formater = u2str(formater)
- except:
- pass
# Get comment
prefix = light_magenta('Compose your ') + light_green('#comment: ')
comment = raw_input(prefix)
if comment:
quote = comment.join(formater.split('#comment'))
- t.statuses.update(status = quote)
+ t.statuses.update(status=quote)
else:
printNicely(light_magenta('No text added.'))
import os.path
# Bumped version
-version = '0.7.7'
+version = '0.7.8'
# Require
install_requires = [