-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathven.py
71 lines (63 loc) · 2.23 KB
/
ven.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
import requests, tweepy, time, urllib
with open('config.ini','r') as config:
tokens = config.readlines()
TW_CONSUMER_KEY = tokens[0].rstrip()
TW_CONSUMER_SECRET = tokens[1].rstrip()
TW_ACCESS_KEY = tokens[2].rstrip()
TW_ACCESS_SECRET = tokens[3].rstrip()
def authenticate_twitter():
print('Authenticating twitter...')
auth = tweepy.OAuthHandler(TW_CONSUMER_KEY, TW_CONSUMER_SECRET)
auth.set_access_token(TW_ACCESS_KEY, TW_ACCESS_SECRET)
twitter = tweepy.API(auth)
print('Twitter authenticated.\n')
return twitter
def get_venmos(num):
vens = requests.get("https://venmo.com/api/v5/public?limit=" + str(num))
return vens.json()['data']
def summarize(json):
actor = json['actor']['firstname']
target = json['transactions'][0]['target']['firstname']
method = json['type']
message = json['message']
if method == 'payment':
method = 'paid'
elif method == 'charge':
method = 'charged'
return actor + ' ' + method + ' ' + target + ' for "' + message + '"'
def tweet(twitter, ven):
summary = summarize(ven)
if 'payment' == ven['type']:
photo = ven['actor']['picture']
elif 'charge' == ven['type']:
photo = ven['transactions'][0]['target']['picture']
if "no-image" in photo:
print("Tweeting without photo")
try:
twitter.update_status(summary)
except:
print("Error tweeting")
else:
print("Tweeting with photo")
urllib.request.urlretrieve(photo, "photo.png")
try:
twitter.update_with_media("photo.png", summary)
except:
print("Error tweeting")
def check_for_drugs(json):
drugs = ['heroin', 'marijuana', 'drug', 'cocaine', 'meth', 'sex', 'weed', 'hookers', 'alcohol', '💉', '💊', 'pills', 'sherm', 'pcp']
if any(x in json['message'].lower() for x in drugs):
return json['message']
else:
return False
def main():
twitter = authenticate_twitter()
while True:
vens = get_venmos(1000)
for ven in vens:
if check_for_drugs(ven):
tweet(twitter, ven)
print("Tweeted " + summarize(ven) + "\n Sleeping for 45 minutes")
time.sleep(2700)
if __name__ == '__main__':
main()