在Zapier中,我有一个由“ Twitter”事件触发的“运行Python”操作。 Twitter事件传递给我的字段之一称为“实体URL显示URL”。这是正在处理的推文中所有链接的锚文本的列表。
Zapier将此值作为一个逗号分隔的字符串传递给我的Python代码。我知道我可以使用.split(',')
来获取列表,但是如果原始字符串包含逗号,则会导致模棱两可。
有没有办法让Zapier将此字符串序列作为字符串序列而不是单个连接在一起的字符串传递到我的代码中?
答案 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.