我对python非常熟悉,只了解R的基础;因此对于需要“使用R”的类,我主要依靠库“网状”。
在过去的一个月中,我已经多次使用它,没有问题;但是,今天我定义了一个类。我实例化了类而没有问题,但是当我尝试调用方法时,它返回错误AttributeError: 'TweetGrabber' object has no attribute 'user_search'
从工作开始,我将代码分解为有效的和无效的:
library('reticulate')
## See the below link to download Python if NOT installed locally.
# https://www.anaconda.com/distribution/
py_config()
use_python(python = '/usr/local/bin/python3')
py_available()
py_install("tweepy")
### === Starts Python environment within R! ===
repl_python()
class TweetGrabber(): # Wrapper for Twitter API.
def __init__(self):
import tweepy
self.tweepy = tweepy
myApi = 'my_key'
sApi = 'my_s_key'
at = 'my_at'
sAt = 'my_s_at'
auth = tweepy.OAuthHandler(myApi, sApi)
auth.set_access_token(at, sAt)
self.api = tweepy.API(auth)
def strip_non_ascii(self,string):
''' Returns the string without non ASCII characters'''
stripped = (c for c in string if 0 < ord(c) < 127)
return ''.join(stripped)
def keyword_search(self,keyword,csv_prefix):
import csv
API_results = self.api.search(q=keyword,rpp=1000,show_user=True)
with open(f'{csv_prefix}.csv', 'w', newline='') as csvfile:
fieldnames = ['tweet_id', 'tweet_text', 'date', 'user_id', 'follower_count',
'retweet_count','user_mentions']
writer = csv.DictWriter(csvfile, fieldnames=fieldnames)
writer.writeheader()
for tweet in API_results:
text = self.strip_non_ascii(tweet.text)
date = tweet.created_at.strftime('%m/%d/%Y')
writer.writerow({
'tweet_id': tweet.id_str,
'tweet_text': text,
'date': date,
'user_id': tweet.user.id_str,
'follower_count': tweet.user.followers_count,
'retweet_count': tweet.retweet_count,
'user_mentions':tweet.entities['user_mentions']
})
def user_search(self,user,csv_prefix):
import csv
API_results = self.tweepy.Cursor(self.api.user_timeline,id=user).items()
with open(f'{csv_prefix}.csv', 'w', newline='') as csvfile:
fieldnames = ['tweet_id', 'tweet_text', 'date', 'user_id', 'user_mentions', 'retweet_count']
writer = csv.DictWriter(csvfile, fieldnames=fieldnames)
writer.writeheader()
for tweet in API_results:
text = self.strip_non_ascii(tweet.text)
date = tweet.created_at.strftime('%m/%d/%Y')
writer.writerow({
'tweet_id': tweet.id_str,
'tweet_text': text,
'date': date,
'user_id': tweet.user.id_str,
'user_mentions':tweet.entities['user_mentions'],
'retweet_count': tweet.retweet_count
})
t = TweetGrabber() # Instantiates the class we've designed
下一行是触发错误的原因。
t.user_search(user='Telsa',csv_prefix='tesla_tweets') # Find and save to csv Tesla tweets
值得注意的是,我已经在python中运行了此代码,它的工作原理就像一个魅力。目标只是一个简单的API包装器(用于tweepy API包装器),这样我就可以用1行代码将tweet捕获并存储在csv中。
我知道R世界中有twitter API。我正在一个压缩的时间轴上工作,除非另有选择,否则我将尽量避免学习twitteR。如果确实有问题,我可以删除类体系结构并调用函数而不会出现问题。
我很困惑,为什么网状结构可以处理这么多,却没有执行类方法。我的代码中有问题吗?这是否超出了Reticulate的范围?
TL; DR:空行标记类主体的结尾。接下来的内容是在全局范围而不是在类范围中定义的。
[似乎将repl_python()
之后的任何内容都直接粘贴到网状REPL中(去除多余的压痕)。在这里,空行表示类定义的末尾。在__init__
的代码后空行,因此类定义在此处结束。以下函数不是在类范围内定义的,而是在全局范围内定义的。考虑下面的示例,其中我为下面的类粘贴了一些示例代码:
> library('reticulate')
> repl_python()
Python 3.8.1 (/home/a_guest/miniconda3/envs/py38/bin/python3)
Reticulate 1.14 REPL -- A Python interpreter in R.
>>> class Foo:
... def __init__(self):
... self.x = 1
...
>>> def get_x(self):
... return self.x
...
>>>
您可以从>>>
函数代码后面的__init__
中看到,REPL返回到全局范围。这是因为前一行为空。与标准Python REPL的不同之处在于,后者会抱怨以下函数的缩进不匹配。让我们检查上面定义的类:
>>> Foo.get_x
AttributeError: type object 'Foo' has no attribute 'get_x'
>>> get_x
<function get_x at 0x7fc7fd490430>
显然get_x
已在全局范围内定义。
解决方案是删除空行或通过添加空格使它们变为非空。因此,例如:
class Foo:
def __init__(self):
self.x = 1
def get_x(self):
return self.x
或使用空格:
class Foo:
def __init__(self):
self.x = 1
# this line contains some spaces
def get_x(self):
return self.x
不导入空格数,该行必须不为空。