CartoDB / carto-python

CARTO Python client
https://carto.com
BSD 3-Clause "New" or "Revised" License
154 stars 62 forks source link

No class `NoAuthClient` in module `carto.auth` #170

Open regan-sarwas opened 3 years ago

regan-sarwas commented 3 years ago

Documentation suggests there is a class NoAuthClient in carto.auth module. However this yields an ImportError

ImportError: cannot import name 'NoAuthClient' from 'carto.auth'

From read-the-docs and the Readme file.

from carto.auth import NoAuthClient

I discovered the class is in pyrestcli.auth but not imported in auth.py. Until the code or documentation is corrected, the following works

from pyrestcli.auth import NoAuthClient

However it issues the following warning when using the send() method on the SQLClient in carto.sql:

UserWarning: You are using methods other than get with no authentication!!!

Maybe it is best to just use the requests module when doing read only queries on a public database?