简体   繁体   中英

Python Invalid Syntax for Twitter Sentiment Analysis

Here is my error...it is at line 58 and reads:

"File "twitterstream.py", line 58
    print line.strip()
             ^
SyntaxError: invalid syntax

How might I go about running this program? It is all available at https://github.com/ujjwalkarn/Twitter-Sentiment-Analysis

import oauth2 as oauth
import urllib2 as urllib

# See assignment1.html instructions or README for how to get these credentials

api_key = "WzIbZ8ixUncBVyhLasVL42FKy"
api_secret = "BNSpY4OCEO4yN8COBpu32sQFByzLutFkzITiDe0kkx4bN5JDY2"
access_token_key = "2353880150-v4gBEPofeLjJWzoGSLMF80bPWuDMSeuetGSGFE8"
access_token_secret = "ydvDqQf3LkQ4EnP9pTIJKtrMMAn4ks5PNt3JKKr7nBpIZ"

_debug = 0

oauth_token    = oauth.Token(key=access_token_key, secret=access_token_secret)
oauth_consumer = oauth.Consumer(key=api_key, secret=api_secret)

signature_method_hmac_sha1 = oauth.SignatureMethod_HMAC_SHA1()

http_method = "GET"


http_handler  = urllib.HTTPHandler(debuglevel=_debug)
https_handler = urllib.HTTPSHandler(debuglevel=_debug)

'''
Construct, sign, and open a twitter request
using the hard-coded credentials above.
'''
def twitterreq(url, method, parameters):
  req = oauth.Request.from_consumer_and_token(oauth_consumer,
                                             token=oauth_token,
                                             http_method=http_method,
                                             http_url=url,
                                             parameters=parameters)

  req.sign_request(signature_method_hmac_sha1, oauth_consumer, oauth_token)

  headers = req.to_header()

  if http_method == "POST":
    encoded_post_data = req.to_postdata()
  else:
    encoded_post_data = None
    url = req.to_url()

  opener = urllib.OpenerDirector()
  opener.add_handler(http_handler)
  opener.add_handler(https_handler)

  response = opener.open(url, encoded_post_data)

  return response

def fetchsamples():
  url = "https://stream.twitter.com/1/statuses/sample.json"
  parameters = []
  response = twitterreq(url, "GET", parameters)
  for line in response:
    print line.strip()

if __name__ == '__main__':
  fetchsamples()

Ensure that the version of python you are using matches the version the developer used. If you are using python 3, you need to use print as a function

print(line.strip())

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM