- SeaTable Cloud Plus
Since Monday (yesterday), a external Python script has been aborting when attempting to perform an SQL query on a table.
However, I can’t find anything that indicates that something needs to be changed in my script because of version 5.3.
This part of the script:
base = Base(token, server)
base.auth() #Connection works correct
…
stext = 'select mail_id,_id from DF_Emailextern where mailid = '+str(m_id)
qdata = base.query(stext) <<<<-----
It aborts on this line with reference to "base.query"
The error message (in VSC):
Exception has occurred: MissingSchema
Invalid URL ‘/api/v1/query/03e907ff-12e0-410f-abab-9cf69dcdd563/’: No scheme supplied. Perhaps you meant https:///api/v1/query/03e907ff-12e0-410f-abab-9cf69dcdd563/?
I can’t figure out what’s wrong.
Best regards from Cologne