minio python 客户端,如何导入标签

minio python client, how to import Tags

python 的 Minio 文档显示了以下代码,用于创建标记以添加到将要存储在 Minio 服务器上的文件中。

tags = Tags(for_object=True)
tags["User"] = "jsmith"

这是文档的来源https://docs.min.io/docs/python-client-api-reference.html

我没有在任何地方找到有关 Tags() 来源的文档。这是 Minio 特定对象吗?还是更普遍地与 Python 相关?

很抱歉回答晚了,但是你去吧:

from minio.commonconfig import Tags

根据https://github.com/minio/minio-py/blob/master/minio/commonconfig.py#L43