> ## Documentation Index
> Fetch the complete documentation index at: https://docs.wandb.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# W&B에서 이 버전 ID와 ETag를 어떻게 가져오나요?

W\&B에 아티팩트 참조를 로깅하고 버킷에서 버전 관리를 활성화하면, 버전 ID는 Amazon S3 UI에 표시됩니다. W\&B에서 이 버전 ID와 ETag를 조회하려면 아티팩트를 가져온 다음 해당 manifest 항목을 조회하세요. 예를 들면 다음과 같습니다:

```python theme={null}
artifact = run.use_artifact("my_table:latest")
for entry in artifact.manifest.entries.values():
    versionID = entry.extra.get("versionID")
    etag = entry.extra.get("etag")
```

***

<Badge stroke shape="pill" color="orange" size="md">[Artifacts](/ko/support/models/tags/artifacts)</Badge>
