I am trying to use the package limonaid
but I always get the same error.
library(limonaid)
options(lime_api = 'https://url.com/index.php/admin/remotecontrol')
options(lime_username = 'user')
options(lime_password = 'password')
get_session_key()
#> Error: Argument 'txt' must be a JSON string, URL or file.
Created on 2023-10-17 with reprex v2.0.2.9000
My LimeSurvey "interface" options:
It was working with limesurvey 2.xx but since the update to the 6.xx version, it is not working.
Thank you.
Copying from my Reddit answer in case people here find it useful:
Using the Python citric library, there isn't a method specifically to export responses as a Pandas data frame, and I'm hesitant to add any since I want to keep the library agnostic (e.g. the user might want to use Polars instead of Pandas, etc.). That said, I try to document simple recipes for things just like that: https://citric.readthedocs.io/en/stable/how-to.html#export-responses-to-a-pandas-dataframe.
So, if you have a Python script like
then you can use reticulate to source this script:
Disclaimer: I'm the author of the citric library