This commit is contained in:
Ben McGinnes 2017-06-07 09:01:02 +00:00 committed by GitHub
commit d2e1a1530f
5 changed files with 103 additions and 0 deletions

20
examples/block_spammer.py Normal file
View file

@ -0,0 +1,20 @@
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)

20
examples/block_user.py Normal file
View file

@ -0,0 +1,20 @@
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)

23
examples/show_status.py Normal file
View file

@ -0,0 +1,23 @@
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.

20
examples/unblock_user.py Normal file
View file

@ -0,0 +1,20 @@
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)

20
examples/unfollow_user.py Normal file
View file

@ -0,0 +1,20 @@
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)