python-nocodb
python-nocodb copied to clipboard
NocoDB Python API Client
Hi, I tried to create links between records with: `client.table_row_create(project, "disks", {"machine.Id": machine_id)` In my example I have a machine table and a disk table having a one to many...
Feature: add function to call route to add a relation between a row and an element of its column
The new upload_file method allows a local file to be uploaded to NocoDB and assigned to a field with the attachment type. The upload is done in two steps: First,...
This implements the "relation row add" POST command of noco. Allowing the user to link to another record in another table using a LinkToAnotherRecord field in a table.
It could be great to have an object or method that let you paginate the returned rows. Something like: ```python client.table_row_list(...auto_paginate=True) -> Generator[Row] ``` Related issue: https://github.com/elchicodepython/python-nocodb/issues/10
Table and column management capabilities where added in this PR https://github.com/elchicodepython/python-nocodb/pull/7 but there is no doc about them inside the README.
This was something that I've made for myself at the beginning but as it seems that is being used by a lot of people we need to make sure that...
Hi, is there a way, with you library, to add links between records in different table using the NocoDB relationships? Thanks