You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using `--source aws`, boto3 discovers credentials automatically via the [standard AWS credential chain](https://docs.aws.amazon.com/sdkref/latest/guide/standardized-credentials.html) (environment variables, `~/.aws/credentials`, IAM roles, etc.). This allows downloading credentialed datasets from S3 without passing PhysioNet credentials.
56
+
57
+
**Authentication:**
58
+
59
+
For credentialed datasets, provide PhysioNet credentials via flags or environment variables:
60
+
61
+
```bash
62
+
# Via flags
63
+
physionet download mimic-iv --username user --password pass
64
+
65
+
# Via environment variables
66
+
export PHYSIONET_USERNAME=user
67
+
export PHYSIONET_PASSWORD=pass
68
+
physionet download mimic-iv
69
+
```
70
+
71
+
Downloads support automatic resume, SHA256 checksum verification, and retry on transient errors.
72
+
18
73
### `physionet validate`
19
74
20
75
Validate a dataset before submission to PhysioNet. The validator checks for
0 commit comments