A Python client for accessing HMI, AIA and MDI data from the Stanford JSOC DRMS (Data Record Management System). Version 0.9.0 requires Python >=3.10.
pip install drmsVerified import paths — ran on the pinned version, not inferred.
Creates a DRMS Client and queries the HMI series for 5 records' observation times.
Update your code to use the new `ExportRequest` API: call `.wait()` or `.download()` on the returned object.
If you relied on list indexing, use DataFrame column selection or convert with `.values.tolist()`.
Wrap calls in try/except blocks: try: ... except drms.DrmsOperationError as e: print(e)
Use `Client(email='your.email@example.com')` instead of the default anonymous client.