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
PyCap does not directly provide two queries (available in API playground) that we needed.
These are easily patched into PyCap's base classes (which lets us preserve all of PyCap's response handling) by changing the payload (which is a dictionary created with self._initialize_payload() and optionally expanded by adding keys), as done for:
PyCap does not directly provide two queries (available in API playground) that we needed.
These are easily patched into PyCap's base classes (which lets us preserve all of PyCap's response handling) by changing the payload (which is a dictionary created with
self._initialize_payload()
and optionally expanded by adding keys), as done for:datalad-redcap/datalad_redcap/export_project_xml.py
Lines 41 to 72 in 6057002
datalad-redcap/datalad_redcap/query.py
Lines 27 to 54 in f62d02e
(side note - I use monkey-patching for one and subclassing for another, would be nice to make it consistent)
I should probably open an issue in PyCap asking if they would consider a PR - needs a little bit on top of what was done here.
The text was updated successfully, but these errors were encountered: