allretweet
authorvunhat_minh <vunhat_minh@dwango.co.jp>
Mon, 30 Jun 2014 03:18:21 +0000 (12:18 +0900)
committervunhat_minh <vunhat_minh@dwango.co.jp>
Mon, 30 Jun 2014 03:18:21 +0000 (12:18 +0900)
rainbowstream/config.py
rainbowstream/rainbow.py
setup.py

index 79458991e41467bfccbb852721c820f96790fd21..e6dba818a2ac7a1a57133089de812a25b9eec51c 100644 (file)
@@ -2,6 +2,8 @@
 SEARCH_MAX_RECORD = 5
 # Default home tweet
 HOME_TWEET_NUM = 5
 SEARCH_MAX_RECORD = 5
 # Default home tweet
 HOME_TWEET_NUM = 5
+# Default retweets show
+RETWEETS_SHOW_NUM = 5
 # Default direct message's number
 MESSAGES_DISPLAY = 5
 # Max trending topics display
 # Default direct message's number
 MESSAGES_DISPLAY = 5
 # Max trending topics display
index 554e27ef33aba3fd170539b0d08cd20ddd5551dd..60e9890e4ab4076f858398dd37ff5487a55dc336 100644 (file)
@@ -37,6 +37,7 @@ cmdset = [
     'mentions',
     't',
     'rt',
     'mentions',
     't',
     'rt',
+    'allrt',
     'fav',
     'rep',
     'del',
     'fav',
     'rep',
     'del',
@@ -531,6 +532,33 @@ def retweet():
     t.statuses.retweet(id=tid, include_entities=False, trim_user=True)
 
 
     t.statuses.retweet(id=tid, include_entities=False, trim_user=True)
 
 
+def allretweet():
+    """
+    List all retweet
+    """
+    t = Twitter(auth=authen())
+    # Get rainbow id
+    try:
+        id = int(g['stuff'].split()[0])
+    except:
+        printNicely(red('Sorry I can\'t understand.'))
+        return
+    tid = db.rainbow_to_tweet_query(id)[0].tweet_id
+    # Get display num if exist
+    try:
+        num = int(g['stuff'].split()[1])
+    except:
+        num = RETWEETS_SHOW_NUM
+    # Get result and display
+    rt_ary = t.statuses.retweets(id=tid,count=num)
+    if not rt_ary:
+        printNicely(magenta('This tweet has no retweet.'))
+        return
+    for tweet in reversed(rt_ary):
+        draw(t=tweet, iot=g['iot'])
+    printNicely('')
+
+
 def favorite():
     """
     Favorite
 def favorite():
     """
     Favorite
@@ -975,7 +1003,7 @@ def help():
         yellow('immediately') + '.\n'
     usage += s + 'In addtion, following commands are available right now:\n'
 
         yellow('immediately') + '.\n'
     usage += s + 'In addtion, following commands are available right now:\n'
 
-    # Discover
+    # Discover the world
     usage += '\n'
     usage += s + grey(u'\u266A' + ' Discover the world \n')
     usage += s * 2 + green('trend') + ' will show global trending topics. ' + \
     usage += '\n'
     usage += s + grey(u'\u266A' + ' Discover the world \n')
     usage += s * 2 + green('trend') + ' will show global trending topics. ' + \
@@ -992,7 +1020,7 @@ def help():
     usage += s * 2 + green('s #AKB48') + ' will search for "' + \
         yellow('AKB48') + '" and return 5 newest tweet.\n'
 
     usage += s * 2 + green('s #AKB48') + ' will search for "' + \
         yellow('AKB48') + '" and return 5 newest tweet.\n'
 
-    # Action
+    # Tweet
     usage += '\n'
     usage += s + grey(u'\u266A' + ' Tweets \n')
     usage += s * 2 + green('t oops ') + \
     usage += '\n'
     usage += s + grey(u'\u266A' + ' Tweets \n')
     usage += s * 2 + green('t oops ') + \
@@ -1000,6 +1028,9 @@ def help():
     usage += s * 2 + \
         green('rt 12 ') + ' will retweet to tweet with ' + \
         yellow('[id=12]') + '.\n'
     usage += s * 2 + \
         green('rt 12 ') + ' will retweet to tweet with ' + \
         yellow('[id=12]') + '.\n'
+    usage += s * 2 + \
+        green('allrt 12 20 ') + ' list 20 newest retweet of the tweet with ' + \
+        yellow('[id=12]') + '.\n'
     usage += s * 2 + green('rep 12 oops') + ' will reply "' + \
         yellow('oops') + '" to tweet with ' + yellow('[id=12]') + '.\n'
     usage += s * 2 + \
     usage += s * 2 + green('rep 12 oops') + ' will reply "' + \
         yellow('oops') + '" to tweet with ' + yellow('[id=12]') + '.\n'
     usage += s * 2 + \
@@ -1051,13 +1082,6 @@ def help():
     usage += s * 2 + green('report @dtvd88') + ' will report ' + \
         magenta('@dtvd88') + ' as a spam account.\n'
 
     usage += s * 2 + green('report @dtvd88') + ' will report ' + \
         magenta('@dtvd88') + ' as a spam account.\n'
 
-    # Screening
-    usage += '\n'
-    usage += s + grey(u'\u266A' + ' Screening \n')
-    usage += s * 2 + green('h') + ' will show this help again.\n'
-    usage += s * 2 + green('c') + ' will clear the screen.\n'
-    usage += s * 2 + green('q') + ' will quit.\n'
-
     # Switch
     usage += '\n'
     usage += s + grey(u'\u266A' + ' Switching streams \n')
     # Switch
     usage += '\n'
     usage += s + grey(u'\u266A' + ' Switching streams \n')
@@ -1076,6 +1100,21 @@ def help():
         ' will use the config\'s ONLY_LIST and IGNORE_LIST.\n'
     usage += s * 3 + '(see ' + grey('rainbowstream/config.py') + ').\n'
 
         ' will use the config\'s ONLY_LIST and IGNORE_LIST.\n'
     usage += s * 3 + '(see ' + grey('rainbowstream/config.py') + ').\n'
 
+    # Smart shell
+    usage += '\n'
+    usage += s + grey(u'\u266A' + ' Smart shell\n')
+    usage += s*2 + green('111111 * 9 / 7') + ' or any math expression ' + \
+        'will be evaluate by Python interpreter.\n'
+    usage += s*2 + 'Even ' + green('cal') + ' will show the calendar' + \
+        ' for current month.\n'
+
+    # Screening
+    usage += '\n'
+    usage += s + grey(u'\u266A' + ' Screening \n')
+    usage += s * 2 + green('h') + ' will show this help again.\n'
+    usage += s * 2 + green('c') + ' will clear the screen.\n'
+    usage += s * 2 + green('q') + ' will quit.\n'
+
     # End
     usage += '\n'
     usage += s + '-' * (int(w) - 4) + '\n'
     # End
     usage += '\n'
     usage += s + '-' * (int(w) - 4) + '\n'
@@ -1127,6 +1166,7 @@ def process(cmd):
             mentions,
             tweet,
             retweet,
             mentions,
             tweet,
             retweet,
+            allretweet,
             favorite,
             reply,
             delete,
             favorite,
             reply,
             delete,
@@ -1169,6 +1209,7 @@ def listen():
             [],  # mentions
             [],  # tweet
             [],  # retweet
             [],  # mentions
             [],  # tweet
             [],  # retweet
+            [],  # allretweet
             [],  # favorite
             [],  # reply
             [],  # delete
             [],  # favorite
             [],  # reply
             [],  # delete
index 53f9db8388afd24a4ea8f3b8006862a82556f532..ef32a66830015f82577e6df3fa9884d19856a04a 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -1,6 +1,6 @@
 from setuptools import setup, find_packages
 
 from setuptools import setup, find_packages
 
-version = '0.0.10'
+version = '0.1.0'
 
 install_requires = [
     "SQLAlchemy",
 
 install_requires = [
     "SQLAlchemy",