2

我正在整理一些 python 代码来移动然后从 Twilio 中删除录音。网上有很多文档可以帮助编写脚本,但文档说我需要将授权代码和令牌添加为 windows 变量。该文档显示了如何到达正确的位置以添加这些变量,但没有准确显示要输入的内容、输入的位置或所需的确切格式。我对这一切都很陌生。在我的 Windows 10 机器上 - 在新的变量窗口中 - 它要求输入“变量名”和“变量值”。我需要确切地知道我输入了什么以及它应该采用的格式。任何帮助将不胜感激。谢谢!

创建此代码的大部分信息来自https://www.twilio.com/blog/2016/05/bulk-delete-your-twilio-recordings-with-python.html

    from twilio.rest import TwilioRestClient
import csv
import threading
from queue import Queue
from datetime import date
import os
import requests
from requests.auth import HTTPBasicAuth
# Ensure your environmental variables have these configured
account_sid = "{{ myaccountSID }}"
auth_token  = "{{ myToken }}"

# Initialize Twilio Client
client = TwilioRestClient(account_sid, auth_token)

# Create a lock to serialize console output
lock = threading.Lock()


# The work method includes a print statement to indicate progress
def do_work(recording_sid):
    client.recordings.delete(recording_sid)
    # Make sure the whole print completes or
    # threads can mix up output in one line.
    with lock:
        print(threading.current_thread().name, "has deleted", recording_sid)


def do_work(recording):
    data = requests.get(recording.uri, auth=HTTPBasicAuth(),
                        stream=True)
    # Create a .wav file and stream the recording to improve performance.
    with open(recording.sid + '.wav', 'wb') as fd:
        for chunk in data.iter_content(1):
            fd.write(chunk)
    client.recordings.delete(recording.sid)
    # Make sure the whole print completes or threads
    # can mix up output in one line.
    with lock:
        print(threading.current_thread().name,
              "has downloaded to the local folder and "
              "has been deleted off Twilio", recording_sid)
        que.task_done()


# Create the queue and thread pool.
# The range value controls the number of threads you run.
que = Queue()
for idx in range(20):
    thread = threading.Thread(target=worker)
    # thread dies when main thread (only non-daemon thread) exits.
    thread.daemon = True
    thread.start()

    # Open up a CSV file to dump the results of deleted recordings into
with open('recordings.csv', 'w') as csvfile:
    record_writer = csv.writer(csvfile, delimiter=',')
    # Let's create the header row
    record_writer.writerow(["Recording SID", "Duration", "Date", "Call SID"])
    # You can use a date filter if needed. e.g. before=date(2016, 5, 30)
    for recording in client.recordings.iter(before=date(2016, 5, 30)):
        record_writer.writerow([recording.sid, recording.duration,
                                recording.date_updated, recording.call_sid])
        que.put(recording)
    que.join()  # block until all tasks are done

print("All done!")
4

2 回答 2

1

在我的 Windows 10 机器上 - 在新的变量窗口中 - 它要求输入“变量名”和“变量值”。

我没有 Windows 10,但我在 Widnows 7 上向您展示,它可能与添加系统变量的界面相同。

所以你需要设置两个“环境变量”>“系统变量”:

第一:

  • “变量名”这样说:TWILIO_ACCOUNT_SID
  • 'variable value' 将您的 twilio 帐户 sid 设置为如下所示: AC0123456789abcdefabcdefabcdefabcd

在此处输入图像描述

第二个:

  • “变量名”这样说:TWILIO_AUTH_TOKEN
  • 'variable value' 将您的 twilio 身份验证令牌放入如下所示:0123456789abcdefabcdefabcdefabcd

在此处输入图像描述

现在回到你的代码改变这个:

account_sid = "{{ myaccountSID }}"
auth_token  = "{{ myToken }}"

对此:

account_sid = os.environ.get('TWILIO_ACCOUNT_SID')
auth_token  = os.environ.get('TWILIO_AUTH_TOKEN')

如果您打开了命令窗口,请将其关闭。您需要打开一个新的命令窗口才能获取新的环境变量。

于 2016-06-10T19:08:36.560 回答
0

Twilio 布道者在这里。

默认情况下, Twilio Python 帮助程序库TwilioRestClient中的对象会在当前环境中查找名为和的环境变量。这是一篇描述如何在 Windows 上设置环境变量的帖子:TWILIO_ACCOUNT_SIDTWILIO_AUTH_TOKEN

https://superuser.com/questions/284342/what-are-path-and-other-environment-variables-and-how-can-i-set-or-use-them

因此,要为您的 Account Sid 设置环境变量,您将打开命令提示符并输入:

c:\>set TWILIO_ACCOUNT_SID=ACXXXXXXXXXXXXXXXXXXXXXXXXXXX

将凭据保存在环境变量中是一种确保这些凭据安全的好方法,并有助于防止您不小心将它们检入源代码控制中。

如果您不想使用环境变量,您也可以通过构造函数直接向库提供凭据:

from twilio.rest import TwilioRestClient

ACCOUNT_SID = "AXXXXXXXXXXXXXXXXX"
AUTH_TOKEN = "YYYYYYYYYYYYYYYYYY"
client = TwilioRestClient(ACCOUNT_SID, AUTH_TOKEN)

希望有帮助。

于 2016-06-10T15:32:13.310 回答