Metadata-Version: 2.1
Name: ketacli
Version: 0.7
Summary: KetaDB Client
Home-page: https://xishuhq.com
Author: lvheyang
Author-email: cuiwenzheng@ymail.com
License: MIT
Description-Content-Type: text/markdown
Requires-Dist: requests
Requires-Dist: prettytable
Requires-Dist: pyyaml
Requires-Dist: mando

# ketadb 工具

示例：

```shell
ketacli login --name <username> --endpoint http://localhost:9000 --token <yourtoken>

ketacli logout

# 枚举所有仪表盘
ketacli list dashboard --fields id,app,updateTime --sort updateTime --order asc --prefix test 

# 描述资源的字段
ketacli describe dashboard 

# 插入一条数据

ketacli insert --repo test01 '[{"a":1}]'

# 查询一条数据

ketacli search 'repo=test01 | limit 10'
```
