Hello,
I am trying to connect to RDP news directly in python without having the terminal in the same machine.
import lseg.data as ld
import os
os.environ["LD_LIB_CONFIG_PATH"] = r"C:\\Users\\padadmin\\PycharmProjects\\pythonProject\\Repos\\pwm-pad\\APIs\\Configuration"
ld.open_session()
Where I have the json file like this:
{
"sessions": {
"platform": {
"ldpv2auth": {
"app-key": "MYAPIK",
"client_id": "GESG1-xxxxx",
"client_secret": "psw"
}
}
}
}
A couple of questions:
a) Is that json format correct ? If not how to fix it so that I can have access to the news WITHOUT having the terminal running behind ?
b) How can I find the psw if I do not remember it anymore ?
Thanks