Socket
Socket
Sign inDemoInstall

Pygrister

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

Pygrister

A Python client for the Grist API.


Maintainers
1

Pygrister: a Python client for the Grist API.

Grist <https://www.getgrist.com/>_ is a relational spreadsheet with tons of batteries included. The Grist API <https://support.getgrist.com/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 <https://pygrister.readthedocs.io>_, 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

Keywords

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc