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
3 changes: 2 additions & 1 deletion docs/get_started.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Google Cloud Storage, Azure, and more.
This vignette will introduce you to the basics of pins.

```{python}
from pins import board_local, board_folder, board_temp, board_url
from pins import board, board_local, board_folder, board_temp, board_url
```

## Getting started
Expand All @@ -36,6 +36,7 @@ Here are a few options:
board = board_local() # share data across R sessions on the same computer
board = board_folder("~/Dropbox") # share data with others using dropbox
board = board_folder("Z:\\my-team\pins") # share data using a shared network drive
board = board("file", "Z:\\my-team\pins") # share data using a shared network drive with caching
board = board_connect() # share data with Posit Connect
```

Expand Down
Loading