在Zapier中,如何获取输入到我的Python“运行代码”操作中的输入,以列表形式而不是联接字符串形式传递?

时间:2019-03-19 03:35:03

标签: python zapier

在Zapier中,我有一个由“ Twitter”事件触发的“运行Python”操作。 Twitter事件传递给我的字段之一称为“实体URL显示URL”。这是正在处理的推文中所有链接的锚文本的列表。

Zapier将此值作为一个逗号分隔的字符串传递给我的Python代码。我知道我可以使用.split(',')来获取列表,但是如果原始字符串包含逗号,则会导致模棱两可。

有没有办法让Zapier将此字符串序列作为字符串序列而不是单个连接在一起的字符串传递到我的代码中?

1 个答案:

答案 0 :(得分:1)

David here, from the Zapier Platform team.

At this time, all inputs to a code step are coerced into strings due to the way data is passed between zap steps. This is a great request though and I'll make a note of it internally.