@@ -12,11 +12,13 @@ pd.set_option("display.notebook_repr_html", False)
1212The pins package publishes data, models, and other Python objects, making it
1313easy to share them across projects and with your colleagues. You can pin
1414objects to a variety of pin * boards* , including folders (to share on a
15- networked drive or with services like DropBox), RStudio Connect, and Amazon
16- S3.
15+ networked drive or with services like DropBox), Posit Connect, and Amazon
16+ S3, and Google Cloud Storage .
1717Pins can be automatically versioned, making it straightforward to track changes,
1818re-run analyses on historical data, and undo mistakes.
1919
20+ See the [ documentation] ( https://rstudio.github.io/pins-python ) for getting started.
21+
2022## Installation
2123
2224``` shell
@@ -50,7 +52,7 @@ board.pin_write(mtcars.head(), "mtcars", type="csv")
5052
5153Above, we saved the data as a CSV, but depending on
5254what you’re saving and who else you want to read it, you might use the
53- ` type ` argument to instead save it as a ` joblib ` or ` arrow ` file (NOTE: arrow is not yet supported) .
55+ ` type ` argument to instead save it as a ` joblib ` , ` parquet ` , or ` json ` file.
5456
5557You can later retrieve the pinned data with ` .pin_read() ` :
5658
@@ -61,7 +63,7 @@ board.pin_read("mtcars")
6163A board on your computer is good place to start, but the real power of
6264pins comes when you use a board that’s shared with multiple people. To
6365get started, you can use ` board_folder() ` with a directory on a shared
64- drive or in DropBox, or if you use [ RStudio
66+ drive or in DropBox, or if you use [ Posit
6567Connect] ( https://www.rstudio.com/products/connect/ ) you can use
6668` board_rsconnect() ` :
6769
@@ -81,12 +83,12 @@ board = board_rsconnect()
8183board.pin_read(" hadley/sales-summary" )
8284```
8385
84- You can easily control who gets to access the data using the RStudio
86+ You can easily control who gets to access the data using the Posit
8587Connect permissions pane.
8688
8789The pins package also includes boards that allow you to share data on
88- services like Amazon’s S3 (` board_s3() ` ), with plans to support other backends--
89- such as Azure's blob storage.
90+ services like Amazon’s S3 (` board_s3() ` ), Google Cloud Storage ( ` board_gcs() ` ),
91+ and Azure blob storage ( ` board_azure() ` ) .
9092
9193## Development
9294
0 commit comments