Twilio Python帮助程序库 - 您如何知道返回的页面资源有多少?

时间:2011-12-05 22:01:17

标签: python twilio

我正在尝试编写一个简单的脚本,使用python帮助程序库从Twilio下载调用详细信息。到目前为止,似乎我唯一的选择是使用.iter()方法来获取对子帐户进行的每次调用。这可能是一个非常大的数字。

如果我使用.list()资源,它似乎没有给我任何地方的页数,所以我不知道继续分页多长时间来获取该时间段的所有呼叫。我错过了什么?

以下是包含代码示例的文档: http://readthedocs.org/docs/twilio-python/en/latest/usage/basics.html

2 个答案:

答案 0 :(得分:4)

目前没有很好的文档记录,但您可以使用以下API调用来浏览列表:

import twilio.rest
client = twilio.rest.TwilioRestClient(ACCOUNT_SID, AUTH_TOKEN)
# iterating vars
remaining_messages = client.calls.count()
current_page = 0
page_size = 50 # any number here up to 1000, although paging may be slow...
while remaining_messages > 0:
     calls_page = client.calls.list(page=current_page, page_size=page_size)
     # do something with the calls_page object...
     remaining_messages -= page_size
     current_page += 1

您可以将pagepage_size参数传递给list()函数,以控制您看到的结果。我今天将更新文档以使其更加清晰。

答案 1 :(得分:1)

正如评论中所提到的,上面的代码不起作用,因为remaining_messages = client.calls.count()总是返回50,这使得它对于分页绝对没用。

相反,我最后只是尝试下一页,直到它失败,这是相当hacky。该库应该在列表资源中包含用于分页的numpages。

import twilio.rest
import csv

account = <ACCOUNT_SID>
token = <ACCOUNT_TOKEN>

client = twilio.rest.TwilioRestClient(account, token)

csvout = open("calls.csv","wb")
writer = csv.writer(csvout)

current_page = 0
page_size = 50
started_after = "20111208"

test = True

while test:

     try:
         calls_page = client.calls.list(page=current_page, page_size=page_size, started_after=started_after)

         for calls in calls_page:
             writer.writerow( (calls.sid, calls.to, calls.duration, calls.start_time) )

         current_page += 1
     except:
         test = False