From e549c74f665301d8c433019be60f770ba1204032 Mon Sep 17 00:00:00 2001 From: Ben McGinnes Date: Tue, 5 Aug 2014 22:29:21 +1000 Subject: [PATCH] Removed files and offending branches. Now to reverse the polarity of the neutron flow. --- examples/block_spammer.py | 20 -------------------- examples/block_user.py | 20 -------------------- examples/follow_user.py | 20 -------------------- examples/show_status.py | 23 ----------------------- examples/unblock_user.py | 20 -------------------- examples/unfollow_user.py | 20 -------------------- 6 files changed, 123 deletions(-) delete mode 100644 examples/block_spammer.py delete mode 100644 examples/block_user.py delete mode 100644 examples/follow_user.py delete mode 100644 examples/show_status.py delete mode 100644 examples/unblock_user.py delete mode 100644 examples/unfollow_user.py diff --git a/examples/block_spammer.py b/examples/block_spammer.py deleted file mode 100644 index 64b797d..0000000 --- a/examples/block_spammer.py +++ /dev/null @@ -1,20 +0,0 @@ -from twython import Twython, TwythonError - -# Optionally accept user data from the command line (or elsewhere). -# -# Usage: block_spammer.py SomeoneAnnoying - -import sys - -if len(sys.argv) >= 2: - target = sys.argv[1] -else: - target = raw_input("User to follow: ") # For Python 3.x use: target = input("User to follow: ") - -# Requires Authentication as of Twitter API v1.1 -twitter = Twython(APP_KEY, APP_SECRET, OAUTH_TOKEN, OAUTH_TOKEN_SECRET) - -try: - twitter.report_spam(screen_name=target) -except TwythonError as e: - print(e) diff --git a/examples/block_user.py b/examples/block_user.py deleted file mode 100644 index 6b151ff..0000000 --- a/examples/block_user.py +++ /dev/null @@ -1,20 +0,0 @@ -from twython import Twython, TwythonError - -# Optionally accept user data from the command line (or elsewhere). -# -# Usage: block_user.py A_Twitter_Troll - -import sys - -if len(sys.argv) >= 2: - target = sys.argv[1] -else: - target = raw_input("User to follow: ") # For Python 3.x use: target = input("User to follow: ") - -# Requires Authentication as of Twitter API v1.1 -twitter = Twython(APP_KEY, APP_SECRET, OAUTH_TOKEN, OAUTH_TOKEN_SECRET) - -try: - twitter.create_block(screen_name=target, skip_status="true") -except TwythonError as e: - print(e) diff --git a/examples/follow_user.py b/examples/follow_user.py deleted file mode 100644 index b9e78a8..0000000 --- a/examples/follow_user.py +++ /dev/null @@ -1,20 +0,0 @@ -from twython import Twython, TwythonError - -# Optionally accept user data from the command line (or elsewhere). -# -# Usage: follow_user.py ryanmcgrath - -import sys - -if len(sys.argv) >= 2: - target = sys.argv[1] -else: - target = raw_input("User to follow: ") # For Python 3.x use: target = input("User to follow: ") - -# Requires Authentication as of Twitter API v1.1 -twitter = Twython(APP_KEY, APP_SECRET, OAUTH_TOKEN, OAUTH_TOKEN_SECRET) - -try: - twitter.create_friendship(screen_name=target, follow="true") -except TwythonError as e: - print(e) diff --git a/examples/show_status.py b/examples/show_status.py deleted file mode 100644 index b4da77f..0000000 --- a/examples/show_status.py +++ /dev/null @@ -1,23 +0,0 @@ -from twython import Twython, TwythonError - -# Optionally accept user data from the command line (or elsewhere). -# -# Usage: show_status.py 463604849372704768 - -import sys - -if len(sys.argv) >= 2: - target = sys.argv[1] -else: - target = raw_input("ID number of tweet to fetch: ") # For Python 3.x use: target = input("ID number of tweet to fetch: ") - -# Requires Authentication as of Twitter API v1.1 -twitter = Twython(APP_KEY, APP_SECRET, OAUTH_TOKEN, OAUTH_TOKEN_SECRET) - -try: - tweet = twitter.show_status(id=twid) - print(tweet["user"]["name"]+" ("+tweet["user"]["screen_name"]+"): "+tweet["text"]) -except TwythonError as e: - print(e) - -# This will print: Name (screen name): the content of the tweet selected. diff --git a/examples/unblock_user.py b/examples/unblock_user.py deleted file mode 100644 index dcb6ebb..0000000 --- a/examples/unblock_user.py +++ /dev/null @@ -1,20 +0,0 @@ -from twython import Twython, TwythonError - -# Optionally accept user data from the command line (or elsewhere). -# -# Usage: unblock_user.py Not_So_Bad_After_All - -import sys - -if len(sys.argv) >= 2: - target = sys.argv[1] -else: - target = raw_input("User to follow: ") # For Python 3.x use: target = input("User to follow: ") - -# Requires Authentication as of Twitter API v1.1 -twitter = Twython(APP_KEY, APP_SECRET, OAUTH_TOKEN, OAUTH_TOKEN_SECRET) - -try: - twitter.destroy_block(screen_name=target, skip_status="true") -except TwythonError as e: - print(e) diff --git a/examples/unfollow_user.py b/examples/unfollow_user.py deleted file mode 100644 index 863eda8..0000000 --- a/examples/unfollow_user.py +++ /dev/null @@ -1,20 +0,0 @@ -from twython import Twython, TwythonError - -# Optionally accept user data from the command line (or elsewhere). -# -# Usage: unfollow_user.py Not_So_Cool_Really - -import sys - -if len(sys.argv) >= 2: - target = sys.argv[1] -else: - target = raw_input("User to follow: ") # For Python 3.x use: target = input("User to follow: ") - -# Requires Authentication as of Twitter API v1.1 -twitter = Twython(APP_KEY, APP_SECRET, OAUTH_TOKEN, OAUTH_TOKEN_SECRET) - -try: - twitter.destroy_friendship(screen_name=target) -except TwythonError as e: - print(e)