-
Notifications
You must be signed in to change notification settings - Fork 3
Open
Description
My specific attempt was via a file stored on OSF. The following:
instr = attune.open(r"https://osf.io/6s7gk/download")
currently does not work (OSError).
Using requests.get works
instr = attune.Instrument(**requests.get("https://osf.io/6s7gk/download").json())
solution block might be something like:
try:
[normal path opening stuff]
except OSError as e:
return requests.get(r"https://osf.io/6s7gk/download").json()
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels