Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1948,7 +1948,7 @@ task = client.find_sequential_pcd_task(task_id="YOUR_TASK_ID")
Find a single task by name.

```python
task = client.find_sequential_pcd_task(project="YOUR_PROJECT_SLUG", task_name="YOUR_TASK_NAME")
task = client.find_sequential_pcd_task_by_name(project="YOUR_PROJECT_SLUG", task_name="YOUR_TASK_NAME")
```

#### Get Tasks
Expand Down Expand Up @@ -2943,6 +2943,14 @@ Get projects. (Up to 1000 projects)
projects = client.get_projects()
```

### Get Projects Id and Slug map

Get a map of project ids and slugs. (Up to 1000 projects)

```python
id_slug_map = client.get_project_id_slug_map()
```

### Response

Example of a project object
Expand Down