如何在Twitter Search API后功能中使用随机日期功能?

时间:2019-08-25 17:33:04

标签: python-3.x twitter

我正在使用Twitter Search API(沙盒版本,但我也有Premium)创建一个项目,并且在向Twitter API发出请求的函数中使用随机日期函数时遇到问题。 问题很简单,我不能正确编写它,甚至不确定Twitter API能否读取它。

我尝试过格式化和字符串连接,但是没有运气。

def API(requests):
    request_count = 0
    while request_count < requests:
        date = randomDate(random.random()) #random_date in right format 
        data = '{"query":"#MakeAmericaGreatAgain lang:en", "maxResults": 100, "fromDate": "201511080400", "toDate": "{}"}'.format(date)
        response = connector.post(endpoint,data=data,headers=headers).json()
#there is mere code below this, but it's not important

该函数的重点是为每个请求接收随机日期,因此我没有得到相同的推文以进行进一步分析。

0 个答案:

没有答案