21 个稳定版本 (4 个主要版本)
5.0.4+20171117 | 2024 年 3 月 5 日 |
---|---|
3.1.0+20171117 | 2022 年 4 月 26 日 |
3.0.0+20171117 | 2022 年 3 月 8 日 |
2.0.4+20171117 | 2021 年 4 月 15 日 |
0.3.6+20160526 | 2016 年 9 月 11 日 |
#3 在 #标准错误
每月 452 次下载
765KB
11K SLoC
fusiontables2
命令行界面(CLI)允许您在终端中舒适地使用 Google fusiontables 服务的几乎所有功能。
默认情况下,所有输出都打印到标准输出,但可以设置标志将其直接重定向到文件,而不依赖于您的 shell 功能。错误将打印到标准错误,并将程序的退出代码设置为非零。
如果请求数据结构,则这些数据结构将以美观打印的 JSON 返回,作为其他工具的输入很有用。
有关 fusiontables API 的其他所有信息,请参阅官方文档网站。
安装和源代码
使用 cargo 安装命令行界面:
cargo install google-fusiontables2-cli
在GitHub上找到源代码。
用法
此文档是从 fusiontables API(修订 20171117)生成的。CLI 版本为 5.0.4。
fusiontables2 [options]
column
delete <table-id> <column-id> [-p <v>]...
get <table-id> <column-id> [-p <v>]... [-o <out>]
insert <table-id> (-r <kv>)... [-p <v>]... [-o <out>]
list <table-id> [-p <v>]... [-o <out>]
patch <table-id> <column-id> (-r <kv>)... [-p <v>]... [-o <out>]
update <table-id> <column-id> (-r <kv>)... [-p <v>]... [-o <out>]
query
sql <sql> [-p <v>]... [-o <out>]
sql-get <sql> [-p <v>]... [-o <out>]
style
delete <table-id> <style-id> [-p <v>]...
get <table-id> <style-id> [-p <v>]... [-o <out>]
insert <table-id> (-r <kv>)... [-p <v>]... [-o <out>]
list <table-id> [-p <v>]... [-o <out>]
patch <table-id> <style-id> (-r <kv>)... [-p <v>]... [-o <out>]
update <table-id> <style-id> (-r <kv>)... [-p <v>]... [-o <out>]
table
copy <table-id> [-p <v>]... [-o <out>]
delete <table-id> [-p <v>]...
get <table-id> [-p <v>]... [-o <out>]
import-rows <table-id> (-u simple -f <file> [-m <mime>]) [-p <v>]... [-o <out>]
import-table <name> (-u simple -f <file> [-m <mime>]) [-p <v>]... [-o <out>]
insert (-r <kv>)... [-p <v>]... [-o <out>]
list [-p <v>]... [-o <out>]
patch <table-id> (-r <kv>)... [-p <v>]... [-o <out>]
refetch-sheet <table-id> [-p <v>]... [-o <out>]
replace-rows <table-id> (-u simple -f <file> [-m <mime>]) [-p <v>]... [-o <out>]
update <table-id> (-r <kv>)... [-p <v>]... [-o <out>]
task
delete <table-id> <task-id> [-p <v>]...
get <table-id> <task-id> [-p <v>]... [-o <out>]
list <table-id> [-p <v>]... [-o <out>]
template
delete <table-id> <template-id> [-p <v>]...
get <table-id> <template-id> [-p <v>]... [-o <out>]
insert <table-id> (-r <kv>)... [-p <v>]... [-o <out>]
list <table-id> [-p <v>]... [-o <out>]
patch <table-id> <template-id> (-r <kv>)... [-p <v>]... [-o <out>]
update <table-id> <template-id> (-r <kv>)... [-p <v>]... [-o <out>]
fusiontables2 --help
Configuration:
[--scope <url>]...
Specify the authentication a method should be executed in. Each scope
requires the user to grant this application permission to use it.
If unset, it defaults to the shortest scope url for a particular method.
--config-dir <folder>
A directory into which we will store our persistent data. Defaults to
a user-writable directory that we will create during the first invocation.
[default: ~/.google-service-cli]
配置
程序将所有持久数据存储在 ~/.google-service-cli
目录中的 JSON 文件中,文件名以 fusiontables2-
开头。您可以使用 --config-dir
标志在每个调用的基础上更改用于存储配置的目录。
以下段落中提供了有关各种类型持久数据的更多信息。
身份验证
大多数 API 需要用户对请求进行身份验证。如果是这种情况,则 作用域 决定了授予的权限集。这些的粒度通常不超过 只读 或 完全访问。
如果没有设置,系统将自动选择最小的可行范围,例如调用只读方法时,它只会请求只读范围。您可以使用--scope
标志直接指定范围。所有适用的范围都在相应方法的CLI文档中有记录。
首次使用范围时,用户将被要求授权。按照CLI的指示授予权限或拒绝。
如果用户已认证范围,相应的信息将被存储在配置目录中,例如~/.google-service-cli/fusiontables2-token-<scope-hash>.json
。无需手动管理这些令牌。
要撤销授予的认证,请参阅官方文档。
应用程序密钥
为了允许任何应用程序使用Google服务,它需要使用Google开发者控制台进行注册。然后逐个为应用程序启用可用的API。大多数API可以免费使用,并设有每日配额。
为了在不强制要求用户注册自己的应用程序的情况下更方便地使用CLI,CLI自带了一个相应的默认应用程序密钥。这也意味着全球范围内的重用可能会耗尽每日配额。
您可以通过将您自己的密钥文件放在此位置来解决这个问题:~/.google-service-cli/fusiontables2-secret.json
,假设已为它启用了所需的fusiontables API。此类密钥文件可以在Google开发者控制台中从APIs & auth -> Credentials -> Download JSON下载并直接使用。
有关如何设置Google项目和启用API的更多信息,请参阅官方文档。
调试
尽管CLI尽最大努力提供可用的错误消息,但有时可能希望了解导致特定问题的确切原因。这是通过允许所有客户端-服务器通信以原始方式输出到标准错误来完成的。
--debug
标志将以Debug
表示形式将错误打印到标准错误。
您可以考虑将标准错误重定向到文件,以便于使用,例如fusiontables2 --debug <resource> <method> [options] 2>debug.txt
。
依赖项
~20–31MB
~578K SLoC