-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtwurl.py
executable file
·70 lines (57 loc) · 1.97 KB
/
twurl.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
#!/usr/bin/env python
import sys, time
import oauth2 as oauth
url = sys.argv[1]
filename = sys.argv[2]
print "Fetching " + url + " to " + filename
# load properties from files
# from http://www.linuxtopia.org/online_books/programming_books/python_programming/python_ch34s04.html
def getprops(filename):
#propFile= file( r"secrets.properties", "rU" )
propDict= dict()
try:
with open (filename, "rU") as propFile:
for propLine in propFile:
propDef= propLine.strip()
if len(propDef) == 0:
continue
if propDef[0] in ( '!', '#' ):
continue
punctuation= [ propDef.find(c) for c in ':= ' ] + [ len(propDef) ]
found= min( [ pos for pos in punctuation if pos != -1 ] )
name= propDef[:found].rstrip()
value= propDef[found:].lstrip(":= ").rstrip()
propDict[name]= value
propFile.close()
except (IOError):
print filename + ".properties not found"
return propDict
# load secrets
secrets = getprops("secrets.properties")
# Set up your Consumer and Token and Client
consumer = oauth.Consumer(secrets['CONSUMER_KEY'], secrets['CONSUMER_SECRET'])
token = oauth.Token(secrets['ACCESS_KEY'], secrets['ACCESS_SECRET'])
client = oauth.Client(consumer, token)
### Make the auth request ###
# Set the API endpoint
endpoint = "https://api.twitter.com/oauth/request_token"
# Set the base oauth_* parameters along with any other parameters required
# for the API call.
oauth_params = {
'oauth_version': "1.0",
'oauth_nonce': oauth.generate_nonce(),
'oauth_timestamp': int(time.time()),
'oauth_token': secrets['ACCESS_KEY'],
'oauth_consumer_key': secrets['CONSUMER_KEY']
}
# Create our request.
req = oauth.Request(method="POST", url=endpoint, parameters=oauth_params)
# Sign the request.
signature_method = oauth.SignatureMethod_HMAC_SHA1()
req.sign_request(signature_method, consumer, token)
resp, content = client.request(url, "GET")
print "Response: " + str(resp.status)
if resp.status == 200:
with open (filename, "w") as f:
f.write(content)
f.closed