quip / quip-api

Quip Automation REST API for editing documents, folders, and users
Apache License 2.0
297 stars 165 forks source link

Is quip python lib still active ? #49

Open xiaoxi99cs opened 6 years ago

xiaoxi99cs commented 6 years ago

client = quip.QuipClient(access_token="...") Traceback (most recent call last): File "", line 1, in AttributeError: 'module' object has no attribute 'QuipClient'

aggrolite commented 6 years ago

If you're not tied to Python, I have a Golang fork that is up to date (I've been using it for a project almost every day): https://github.com/aggrolite/go-quip

kevin-brotcke commented 5 years ago

I'm guessing you installed quip python package that has nothing to do with this project.

agsarthak commented 5 years ago

client = quip.QuipClient(access_token="...") Traceback (most recent call last): File "", line 1, in AttributeError: 'module' object has no attribute 'QuipClient'

Were you able to resolve this ?

kenichi-ando commented 4 years ago

I can use the python lib. You need to make sure that an unrelated quip package is not installed.

dvwright commented 4 years ago

FYI I created an unofficial Pypi package so it can be pip installed. Following the suggested package name here I used the name quipclient

pip3 install quipclient
pip3 show quipclient
Name: quipclient
Version: 0.1
Summary: Quip API Python Client
https://pypi.org/project/quipclient/

When using the above package version of this library or the examples you would use quipclient in place of quip.

e.g.

client = quip.QuipClient(access_token="...")

would instead be:

client = quipclient.QuipClient(access_token="...")
prestonfrasch commented 2 years ago

The pypi package is up to date as of this message, and you can always import it as quip: import quipclient as quip

Otherwise, you can just download quip.py from the official repo and import it locally.