Skip to main content

A Python client for the Grist API.

Project description

Grist is a relational spreadsheet with tons of batteries included. The Grist API allows you to programmatically retrieve/update your data stored on Grist, and manipulate most of the basic Grist objects, such as workspaces, documents, user permissions and so on.

Pygrister is a Grist client that covers all the documented APIs. Pygrister keeps track of basic configuration for you, remembering your team site, workspace, working document, so that you don’t have to type in the boring stuff every time. Apart from this and little else, Pygrister is rather low-level: it will call the api and retrieve the response, with only minor changes. If the api call is malformed, you will simply receive a bad HTTP status code.

Basic usage goes as follows:

from pygrister.api import GristApi

grist = GristApi()
# list users/permissions for the current document
status_code, response = grist.list_doc_users()
# fetch all rows in a table
status_code, response = grist.list_records('Table1')
# add a column to a table
cols = [{'id': 'age', 'fields': {'label':'age', 'type': 'Int'}}]
status_code, response = grist.add_cols('Table1', cols)

You should read the docs first, and then take a look at the test suite for more usage examples.

Install.

Right now, Pygrister is in beta stage, meaning that the overall interface should be fairly stable but I still make no promises about further changes.

You can install Pygrister from PyPI:

python -m pip install pygrister

What’s next.

  • Add support for some other useful, undocumented Grist Apis;

  • Add at least a basic type system for records;

  • Maybe write a few “macros/recipes” for common Grist tasks…

Any feedback and contribution is very welcome at this stage!

License.

Pygrister is released under the MIT license (see LICENSE.rst). Copyright 2024 Riccardo Polignieri

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pygrister-0.4.0.tar.gz (15.7 kB view hashes)

Uploaded Source

Built Distribution

Pygrister-0.4.0-py3-none-any.whl (11.9 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page