Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我们已经为我们的工作区设置了可用的部门,并希望将具有 user:department 关系的现有 Excel 文档迁移到新的数据字段。我使用 Pyral 包编写了一个 Python 脚本来尝试执行此操作,但看起来“部门”字段无法通过 API 访问?这是有意的还是我的查询有问题?
Pyral 默认为 Webservices API (WSAPI) 1.37,新的 User 字段仅出现在 WSAPI >= 1.41 上。
您可以通过更改此变量来覆盖 pyral 的默认 WSAPI 版本:
WS_API_VERSION = "1.37"
在 pyral 的 config.py 中:
WS_API_VERSION = "1.42"