Skip to content

Commit d9b80f0

Browse files
committed
Apply feedback from jkrick review
1 parent 2a18f61 commit d9b80f0

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

tutorials/cloud_access/cloud-access-intro.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ The cloud connection is handled by a separate library, usually [s3fs](https://s3
5050
The IRSA buckets are public and access is free.
5151
Credentials are not required.
5252
However, most tools will look for credentials by default and raise an error when none are found.
53-
To avoid this, users can make an "anonymous" connection, usually with a keyword argument such as `anon=True`.
53+
To access without credentials, users can make an anonymous connection, usually with a keyword argument such as `anon=True`.
5454
This notebook demonstrates with the `s3fs`, `astropy`, and `pyarrow` libraries.
5555

5656
+++

tutorials/parquet-catalog-demos/wise-allwise-catalog-demo.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@ This AllWISE catalog is stored in an [AWS S3](https://aws.amazon.com/s3/) cloud
7070
To connect to an S3 bucket we just need to point the reader at S3 instead of the local filesystem.
7171
(Here, a "reader" is a python library that reads parquet files.)
7272
We'll use [pyarrow.fs.S3FileSystem](https://arrow.apache.org/docs/python/generated/pyarrow.fs.S3FileSystem.html) for this because it is recognized by every reader in examples below, and we're already using pyarrow.
73+
([s3fs](https://s3fs.readthedocs.io/en/latest/index.html) is another common option.)
7374
To access without credentials, we'll use the keyword argument `anonymous=True`.
7475
More information about accessing S3 buckets can be found at [](#cloud-access-intro).
7576

0 commit comments

Comments
 (0)