有什么方法可以不使用 Client Library 连接到 google 云项目吗?

Is there any way to connect to google cloud project without using Client Library?

我们可以在不使用客户端库的情况下连接到 google 云项目吗?

什么是BigQuery API?是否类似于bq-command line-tool

如果不是,有没有办法将 bq-commandline-tool 转换为 API 以便在 Python 中使用?

强烈建议在可用时使用 Google 云客户端库,但如果您希望从 Python 调用 Google 云平台 REST API 而无需客户端库,您可以使用 HTTP 库,例如 Requests.

客户端库为您处理的一件事是 authentication. To authenticate to a Google API with Python, I highly recommend the google-auth Python library。如果没有身份验证库,您将不得不自己实施 OAuth2 规范,这是不鼓励的。