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.

Gry: the Grist cli tool.

Gry is a command line tool to query the Grist Api. Gry is based on Pygrister, but you can use/vendor it as a stand-alone tool, with no prior Python/Pygrister knowledge needed.

Gry is installed with Pygrister: to try it out, just type

% gry --help    # % is your shell prompt

and find out what Gry can do for you (or, read the online documentation!).

Basic usage goes as follows:

% gry team see  # get info on the "default" team as per config
% gry doc see  # the "default" document as per config
% gry doc see -d f4Y8Tov7TRkTQfUuj7TVdh  # select a specific document

# the best way to switch to another document, from now on:
% export GRIST_DOC_ID=f4Y8Tov7TRkTQfUuj7TVdh  # or "set" in windows
% gry doc see  # the same as above, but no need to add the "-d" option
% gry doc see -d bogus_doc  # now this will fail...
% gry doc see -d bogus_doc -i  # ...so let's see the request details

% gry ws see -w 42  # workspace info, in a nicely formatted table
% gry ws see -w 42 -vv  # the same, in the original raw json

% gry table new --help  # how do I add a table?
% gry table new name:Text:Name age:Int:Age --table People  # like this!

% gry col list -b People  # the columns of our new table
% gry rec new name:"John Doe" age:42 -b People  # populate the table

% gry sql "select * from People where age>?" -p 35  # run an sql query
% gry python  # let's open a Python shell now!
>>> gry.list_cols(table_id='People')  # "gry" is now a python object
>>> exit()  # and we are back to the shell

Python version required.

Pygrister (and Gry) will work with any Python>=3.9.

Note that Grist itself may have stricter Python requirements but don’t mix things up: the Grist’s Python lives on the server, supporting a Grist instance. You will likely run Pygrister from a client instead, with your Python of choice.

Install.

Any feedback and contribution is very welcome at this stage!

Right now, Pygrister is in beta stage, meaning that the overall interface should be fairly stable but I make no promises about further changes. The new Scim api support is still very experimental.

You can install Pygrister from PyPI:

python -m pip install pygrister

Note that this repo may have recent features not yet released on PyPI: see NEWS.txt and/or the commit history. To try the “bleeding edge” from GitHub:

python -m pip install git+https://github.com/ricpol/pygrister

License.

Pygrister/Gry is released under the MIT license (see LICENSE.rst). Copyright 2024-2025 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.9.0.tar.gz (44.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pygrister-0.9.0-py3-none-any.whl (34.0 kB view details)

Uploaded Python 3

File details

Details for the file pygrister-0.9.0.tar.gz.

File metadata

  • Download URL: pygrister-0.9.0.tar.gz
  • Upload date:
  • Size: 44.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.3

File hashes

Hashes for pygrister-0.9.0.tar.gz
Algorithm Hash digest
SHA256 d77b31357eb04c534cb2333710549437f7710315d073a433852fb8842472d0d2
MD5 35decaa61b67e1413acc79b51418bfc3
BLAKE2b-256 309dccf5c74bcb976381e9a6624eee2ef4c4943e2dc10433a3aee2465d2781f5

See more details on using hashes here.

File details

Details for the file pygrister-0.9.0-py3-none-any.whl.

File metadata

  • Download URL: pygrister-0.9.0-py3-none-any.whl
  • Upload date:
  • Size: 34.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.3

File hashes

Hashes for pygrister-0.9.0-py3-none-any.whl
Algorithm Hash digest
SHA256 d3262707a5c98193dc6d55f08665e19163aaa3f6b23021f1f7409c8a3a937260
MD5 2593c96b6d920f475868d77ddc473a44
BLAKE2b-256 522b9ed920afc40bd18886fabe95e1cdf4112389001671feb4cafde21aa3c88a

See more details on using hashes here.

Supported by

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