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

# Project

### read\_project

```python theme={null}
vessl.read_project(
   project_name: str, **kwargs
)
```

Read project in the default organization. If you want to
override the default organization, then pass `organization_name` as
`**kwargs`.

**Args**

* `project_name` (str) : Project name.

**Example**

```python theme={null}
vessl.read_project(
    project_name="tutorials",
)
```

***

## list\_projects

```python theme={null}
vessl.list_projects(
   **kwargs
)
```

List projects in the default organization. If you want to
override the default organization, then pass `organization_name` as
`**kwargs`.

**Example**

```python theme={null}
vessl.list_projects()
```

***

## create\_project

```python theme={null}
vessl.create_project(
   project_name: str, description: str = None, **kwargs
)
```

Create project in the default organization. If you want to
override the default organization, then pass `organization_name` as
`**kwargs`.

**Args**

* `project_name` (str) : Project name.
* `description` (str) : Project description. Defaults to None.

**Example**

```python theme={null}
vessl.create_project(
    project_name="tutorials",
    description="VESSL tutorial project",
)
```
