我正在尝试弄清楚如何使用API批处理请求重命名Google驱动器中的多个文件。目前,我正在为每个正常的请求执行一个请求,但是我觉得使用批处理请求可能会更快,更高效。如果有人能指出正确的方向来处理批处理请求,我将不胜感激。
我仅使用for state in workflow.get_state.all():
# Here you need to check the correct
# state object to get the reverse relation
if state.name == "My correct state":
next_levels = state.get_next_level.all()
for next_level in next_levels:
# Here you need to check the correct
# next_level object to get the reverse relation
if next_level.name == "My correct next_level":
print("This is the correct next_level: " + str(next_level))
break
break
来执行此操作,而不使用google客户端库。
这是我目前用于每个请求的内容。
requests
这是我要寻找的内容,但我不太了解如何准确地做到这一点。
https://developers.google.com/drive/api/v3/batch
(我确实意识到这是V3,我打算切换到该版本。)
谢谢!