Questions tagged [quip]

For questions about the Quip API.

21 questions
3
votes
1 answer

Reading Quip Spreadsheet with quip-api and pandas

I have started exploring Quip API. I have created a spreadsheet in Quip with the below details: Added title of the spreadsheet Added below data in the spreadsheet: id name 1 harry 2 hermione 3 ron And here is how I am trying to…
riyaB
  • 307
  • 1
  • 3
  • 21
2
votes
1 answer

Automatically insert a python data frame in quip

I have a data frame: I want to automatically insert the data frame details in quip. I have searched online, but couldn't find any satisfactory answer. Please help
2
votes
0 answers

Quip API - Can I use the personal access token to access threads/create documents?

I generated a personal access token for QUIP, but it only shows "invalid access token" whenever I run a call using postman. Can I use the personal token to do this? Or do I need another access token from the admin?
Ryan
  • 179
  • 1
  • 1
  • 14
2
votes
0 answers

How to print comments in a Quip document

I have a Quip document on which others have made comments. How can I print the document with the comments? Failing that, how can I print the comments alone?
mernst
  • 7,437
  • 30
  • 45
1
vote
0 answers

Delete row in quip spreadsheet

Is there a way that we can delete a row from quip spreadsheet using quipclient. The same way, can we add a column or a row to quip spreadsheet using quipclient?? Thank you! I want to delete certain rows from my quip spreadsheet on each code run. If…
46_Try_14
  • 11
  • 1
1
vote
1 answer

How to create new Quip spreadsheet using API

I wanted to programmatically create a new Quip spreadsheet with headers and content pulled from another database new_ss = client.new_document(title="New Spreadsheet",member_ids=[user["private_folder_id"]]) But this only creates a new doc not a…
Jen C
  • 11
  • 3
1
vote
1 answer

Importing data into Quip spreadsheet via API

My task is to write some chunks of data into a Quip Spreadsheet and regularly update it using Quip API. I got the data stored in pandas DataFrame (and can easily convert to any other structure), but the whole issue is around using their API. I got…
1
vote
1 answer

How to choose a secondary hidden menu

I want to use selenium automatically export documents # -*- coding: utf-8 -*- from selenium import webdriver from selenium.webdriver.common.action_chains import ActionChains from selenium.webdriver.support.ui import Select import time #…
hakukou
  • 111
  • 1
  • 10
1
vote
1 answer

Using the Quip API, how can you get a list of all threads?

I need to get a list of all publicly-visible Quip documents in my company using the Quip API. I have a service worker account that will make the API calls. My question: how do I find the root folder to start from? Quip's API docs tell you how to…
Brian Morearty
  • 2,794
  • 30
  • 35
1
vote
1 answer

Does Quip have a document search API?

I've looked high and low in the Quip docs to see if there's a way to search Quip documents via an API. Does anyone know of such an endpoint?
Avand Amiri
  • 767
  • 7
  • 13
0
votes
1 answer

How to import a CSV file into Quip?

I need to import a CSV file into a quip worksheet. Is there an option to do that? If yes, where is it? Can it be done on just worksheets or docs too?
y2k-shubham
  • 10,183
  • 11
  • 55
  • 131
0
votes
0 answers

Find matching character/equipment stats

let's say there is a hero class with characteristics: attack, health. And there is a helmet that can enhance these characteristics. How to do something when calling the "anequip" function of the property of the helmet, independently find the…
0
votes
0 answers

How to import quip spreadsheet data to s3?

I saw some code on quip to s3 exporter in GitHub but it seems like that page has been taken down. Basically for any change event (or regular interval sync also works) in the quip, an s3 bucket (table) should be updated. The code I saw in GitHub had…
Sathish
  • 21
  • 4
0
votes
1 answer

How to create a new sheet inside a quip spreadsheet document via quip Python API?

I had a question and was wondering if there is any possible solution to achieve this via quip python automation API. I have some data which I am getting from a source and then creating a new quip spreadsheet every time to insert data into it. I…
Sal
  • 1
  • 1
0
votes
0 answers

Unable to Export/Download a PDF from Quip using Quip API in Python

I'm trying to follow the Quip API documentation: https://quip.com/dev/automation/documentation/current#operation/exportThreadToPdf to export a quip as PDF using Python. I've tried the following: headers = { "Authorization": "Bearer…
1
2