> ## Documentation Index
> Fetch the complete documentation index at: https://wb-21fd5541-dependabot-submodules-dot-claude-85784ca.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Projects

export const GitHubLink = ({url}) => <a href={url} target="_blank" rel="noopener noreferrer" className="github-source-link">
    <svg width="20" height="20" viewBox="0 0 24 24" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
      <path d="M12 0C5.37 0 0 5.37 0 12c0 5.31 3.435 9.795 8.205 11.385.6.105.825-.255.825-.57 0-.285-.015-1.23-.015-2.235-3.015.555-3.795-.735-4.035-1.41-.135-.345-.72-1.41-1.23-1.695-.42-.225-1.02-.78-.015-.795.945-.015 1.62.87 1.845 1.23 1.08 1.815 2.805 1.305 3.495.99.105-.78.42-1.305.765-1.605-2.67-.3-5.46-1.335-5.46-5.925 0-1.305.465-2.385 1.23-3.225-.12-.3-.54-1.53.12-3.18 0 0 1.005-.315 3.3 1.23.96-.27 1.98-.405 3-.405s2.04.135 3 .405c2.295-1.56 3.3-1.23 3.3-1.23.66 1.65.24 2.88.12 3.18.765.84 1.23 1.905 1.23 3.225 0 4.605-2.805 5.625-5.475 5.925.435.375.81 1.095.81 2.22 0 1.605-.015 2.895-.015 3.3 0 .315.225.69.825.57A12.02 12.02 0 0024 12c0-6.63-5.37-12-12-12z" />
    </svg>
    GitHub 소스 코드
  </a>;

<GitHubLink url="https://github.com/wandb/wandb/blob/main/wandb/apis/public/projects.py#L56" />

## <kbd>class</kbd> wandb.apis.public.Projects

```python theme={null}
service_api: 'ServiceApi',
entity: 'str',
per_page: 'int' = 50
```

`Project` 객체들을 순회하는 지연(lazy) 이터레이터입니다.

엔터티가 생성하고 저장한 프로젝트들에 접근하기 위한 이터러블 인터페이스입니다.

<div id="args">
  ## 인수
</div>

* `service_api`:  이 컬렉션에 대해 W\&B API 호출을 수행하는 wandb-core 서비스의 인터페이스입니다.
* `entity`:  프로젝트를 소유한 엔터티입니다.
* `per_page`:  API에 대한 각 요청마다 가져올 프로젝트 수입니다.

<div id="examples">
  ## 예시
</div>

```python theme={null}
from wandb.apis.public.api import Api

# 이 엔터티에 속한 프로젝트 찾기
projects = Api().projects(entity="entity")

# 파일 반복
for project in projects:
    print(f"Project: {project.name}")
    print(f"- URL: {project.url}")
    print(f"- Created at: {project.created_at}")
    print(f"- Is benchmark: {project.is_benchmark}")
```

<div id="methods">
  ## 메서드
</div>

### <kbd>방법</kbd> RelayPaginator.convert\_objects()

```python theme={null}
self
```

마지막으로 가져온 응답 데이터를 반복 처리되는 객체로 변환합니다.

### <kbd>방법</kbd> Paginator.**next**()

```python theme={null}
self
```

이터레이터의 다음 항목을 반환합니다. 더 이상 항목이 없으면 StopIteration 예외를 발생시킵니다.

### <kbd>방법</kbd> Paginator.update\_variables()

```python theme={null}
self
```

다음 페이지를 가져오기 위한 쿼리 변수를 업데이트합니다.
