Errors with seatable_api library on Seatable 5.0

seatable_api library doesn’t work as intended since update 5.0 on self hosted developper edition with the base.update_row() function:

The script worked normally before, first time I get this error.

image

Have you updated the seatable python SDK to the latest version?

I have:

seatable-python-runner:3.1.2
seatable-python-starter:3.1.1
seatable-python-scheduler:3.1.0

I can not confirm, what you observe. Here is my script and as you can see it is working:

from seatable_api import Base, context
base = Base(context.api_token, context.server_url)
base.auth()

row_id = "ZjpUBwtgQx25M7a36ekcrA"
table = context.current_table
base.update_row(table, row_id, {'Name': "new value"})

update_row

I am using latest SeaTable Server (5.0.8 PE and latest Python-Pipeline - the version you already use).

I can only recommend restarting all containers and try again.

This topic was automatically closed 2 days after the last reply. New replies are no longer allowed.