> ## Documentation Index
> Fetch the complete documentation index at: https://wb-21fd5541-sdk-add-methods-properties.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Project methods

## <Badge color="yellow" size="lg" shape="rounded">Class</Badge> wandb.apis.public.Project

## <Badge color="blue" size="lg" shape="rounded">method</Badge> Project.artifacts\_types()

Returns all artifact types associated with this project.

```python theme={null}
self,
per_page: 'int' = 50
```

##### Arguments

<ResponseField name="per_page" type="int" />

## <Badge color="blue" size="lg" shape="rounded">method</Badge> Project.collections()

Returns all artifact collections associated with this project.

```python theme={null}
self,
filters: 'Mapping[str, Any] | None' = None,
order: 'str | None' = None,
per_page: 'int' = 50
```

##### Arguments

<ResponseField name="filters" type="Mapping[str, Any] | None">
  Optional mapping of filters to apply to the query.
</ResponseField>

<ResponseField name="order" type="str | None">
  Optional string to specify the order of the results. If you prepend order with a + order is ascending (default). If you prepend order with a - order is descending.
</ResponseField>

<ResponseField name="per_page" type="int">
  The number of artifact collections to fetch per page. Default is 50.
</ResponseField>

## <Badge color="blue" size="lg" shape="rounded">method</Badge> Project.sweeps()

Return a paginated collection of sweeps in this project.

```python theme={null}
self,
per_page: 'int' = 50,
filters: 'dict[str, Any] | None' = None,
order: 'str | None' = None
```

##### Arguments

<ResponseField name="per_page" type="int">
  The number of sweeps to fetch per request to the API.
</ResponseField>

<ResponseField name="filters" type="dict[str, Any] | None">
  (dict) queries for specific sweeps using the runs filters, See wandb/apis/public/api.py:runs for more details.
</ResponseField>

<ResponseField name="order" type="str | None" />

##### Returns

A `Sweeps` object, which is an iterable collection of `Sweep` objects.
