pyairtable icon indicating copy to clipboard operation
pyairtable copied to clipboard

Python Api Client for Airtable

Results 32 pyairtable issues
Sort by recently updated
recently updated
newest added

This is a breaking change to the `pyairtable.formulas` module, so it would have to be released as 3.0, but it introduces a more thorough way for library users to construct...

This is the last checkbox in the "Modify collaborations/sharing" section of the roadmap in #249. It supports the following operations: - [x] [Update collaborator base permission](https://airtable.com/developers/web/api/update-collaborator-base-permission) - [x] [Update interface...

Hi, I want to compare if a datetime field is set to a very specific time. ``` {Start (Integration)}=2023-09-08T00:00:00.000+02:00Z ``` However that does not work, we need to use this...

bug

Hi, would it be possible to add the following formulas? ```py def NOT_EQUAL(left: Any, right: Any) -> str: return "{} != {}".format(left, right) def LESS_EQUAL(left: Any, right: Any) -> str:...

enhancement

Hi I want to implement missing formulas from [Airtable Documentation](https://support.airtable.com/docs/formula-field-reference) but I saw [comment](https://github.com/gtalarico/pyairtable/issues/304#issuecomment-1732029360) about need of rethink `formulas` module. Is rethink/redesing in progress?

Not sure if this is a poor implementation or if it doesn't fit the intended update goals, but I'm working on a dynamic solution to the issues surrounding formulas mentioned...

For example ```python get_table_schema(api.table(base_id, "tblXXXXXXXXXXXXXX")) ``` returns `None` but the function works if you use the table's name: ```python get_table_schema(api.table(base_id, "My Table")) ```

bug
good first issue

The new Airtable Personal Access Tokens have several scopes you can choose from. https://airtable.com/developers/web/api/scopes It would be nice to know which ones are required to use different features of pyairtable...

enhancement

It should be possible to make use of the `return_fields_by_field_id` option with ORM as well

enhancement

The 2.0 release of this library introduced a number of breaking changes in the API. We've written a migration guide here: https://pyairtable.readthedocs.io/en/2.0.0/migrations.html If you see errors like this: * `'Table'...