Open xiaoxi99cs opened 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
I'm guessing you installed quip
python package that has nothing to do with this project.
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 ?
I can use the python lib. You need to make sure that an unrelated quip package is not installed.
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="...")
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.