Skip to content

Commit f56555f

Browse files
authored
Merge pull request #486 from kcl-lang/update-faq-plugin-docs
docs: update plugin documents in FAQ
2 parents c918483 + c1d4d8e commit f56555f

File tree

4 files changed

+4
-320
lines changed
  • docs/user_docs/support
  • i18n/zh-CN/docusaurus-plugin-content-docs
  • versioned_docs/version-0.10/user_docs/support

4 files changed

+4
-320
lines changed

docs/user_docs/support/faq-kcl.md

+1-80
Original file line numberDiff line numberDiff line change
@@ -2272,86 +2272,7 @@ data_type_list:
22722272

22732273
## 49. How to develop a KCL plugin?
22742274

2275-
KCL plugins are installed in the plugins subdirectory of KCL (usually installed in the `$HOME/.kcl/plugins` directory), or set through the `$KCL_PLUGINS_ROOT` environment variable. Besides, the `plugins` directory could also be placed at the `pwd` path. For plugin developers, plugins are managed in the [Git repository](https://github.com/kcl-lang/kcl-plugin), and the plugin repository can be cloned to this directory for development.
2276-
2277-
KCL has built-in kcl-plugin scaffolding command to assist users to write KCL plug-ins in Python language, so that the corresponding plug-ins can be called in the KCL file to enhance the KCL language itself, such as accessing the network, reading and writing IO, CMDB query and encryption and decryption functions.
2278-
2279-
```
2280-
usage: kcl-plugin [-h] {list,init,info,gendoc,test} ...
2281-
2282-
positional arguments:
2283-
{list,init,info,gendoc,test}
2284-
kcl plugin sub commands
2285-
list list all plugins
2286-
init init a new plugin
2287-
info show plugin document
2288-
gendoc gen all plugins document
2289-
test test plugin
2290-
2291-
optional arguments:
2292-
-h, --help show this help message and exit
2293-
```
2294-
2295-
For example, if you want to develop a plugin named io, you can use the following command to successfully create a new io plugin
2296-
2297-
```
2298-
kcl-plugin init io
2299-
```
2300-
2301-
Then you can use the following command to get the root path of the plugin and cd to the corresponding io plugin directory for development
2302-
2303-
```
2304-
kcl-plugin info
2305-
```
2306-
2307-
For example, if you want to develop a function read_file to read a file, you can write python code in `plugin.py` of `$plugin_root/io`:
2308-
2309-
```python
2310-
# Copyright 2020 The KCL Authors. All rights reserved.
2311-
2312-
import pathlib
2313-
2314-
INFO = {
2315-
'name': 'io',
2316-
'describe': 'my io plugin description test',
2317-
'long_describe': 'my io plugin long description test',
2318-
'version': '0.0.1',
2319-
}
2320-
2321-
2322-
def read_file(file: str) -> str:
2323-
"""Read string from file"""
2324-
return pathlib.Path(file).read_text()
2325-
2326-
```
2327-
2328-
In addition, you can write the corresponding test function in `plugin_test.py`, or you can directly write the following KCL file for testing:
2329-
2330-
```python
2331-
import kcl_plugin.io
2332-
2333-
text = io.read_file('test.txt')
2334-
```
2335-
2336-
You can also use the info command to view information about the io plugin
2337-
2338-
```
2339-
kcl-plugin info io
2340-
```
2341-
2342-
```
2343-
{
2344-
"name": "io",
2345-
"describe": "my io plugin description test",
2346-
"long_describe": "my io plugin long description test",
2347-
"version": "0.0.1",
2348-
"method": {
2349-
"read_file": "Read string from file"
2350-
}
2351-
}
2352-
```
2353-
2354-
Finally, the plugin that has written the test can be merged with MR in the `kcl_plugins` repository.
2275+
See [here](https://www.kcl-lang.io/docs/reference/plugin/overview) for more information.
23552276

23562277
## 50. How to do basic type conversion in KCL
23572278

i18n/zh-CN/docusaurus-plugin-content-docs/current/user_docs/support/faq-kcl.md

+1-80
Original file line numberDiff line numberDiff line change
@@ -2284,86 +2284,7 @@ data_type_list:
22842284

22852285
## 49. 如何通过编写 KCL 插件进行扩展?
22862286

2287-
KCL 插件在 KCL 的 plugins 子目录(通常安装在 `$HOME/.kcl/plugins` 目录),或者通过 `$KCL_PLUGINS_ROOT` 环境变量设置(环境变量优先级更高)。对于插件开发人员,插件都在 [Git 仓库](https://github.com/kcl-lang/kcl-plugin)管理,可以将插件仓库克隆到该目录进行开发。
2288-
2289-
KCL 内置了 kcl-plugin 脚手架命令用于辅助用户使用 Python 语言编写 KCL 插件,以便在 KCL 文件当中调用相应的插件对 KCL 语言本身进行增强,比如访问网络,读写 IO,CMDB 查询和加密解密等功能。
2290-
2291-
```
2292-
usage: kcl-plugin [-h] {list,init,info,gendoc,test} ...
2293-
2294-
positional arguments:
2295-
{list,init,info,gendoc,test}
2296-
kcl plugin sub commands
2297-
list list all plugins
2298-
init init a new plugin
2299-
info show plugin document
2300-
gendoc gen all plugins document
2301-
test test plugin
2302-
2303-
optional arguments:
2304-
-h, --help show this help message and exit
2305-
```
2306-
2307-
比如想要开发一个名为 io 插件,就可以使用如下命令成功新建一个 io 插件
2308-
2309-
```
2310-
kcl-plugin init io
2311-
```
2312-
2313-
然后可以使用如下命令获得 plugin 的根路径并 cd 到相应的 io 插件目录进行开发
2314-
2315-
```
2316-
kcl-plugin info
2317-
```
2318-
2319-
比如想要开发一个读文件的函数 read_file,就可以在 `$plugin_root/io` 的 `plugin.py` 中进行 python 代码编写:
2320-
2321-
```python
2322-
# Copyright 2020 The KCL Authors. All rights reserved.
2323-
2324-
import pathlib
2325-
2326-
INFO = {
2327-
'name': 'io',
2328-
'describe': 'my io plugin description test',
2329-
'long_describe': 'my io plugin long description test',
2330-
'version': '0.0.1',
2331-
}
2332-
2333-
2334-
def read_file(file: str) -> str:
2335-
"""Read string from file"""
2336-
return pathlib.Path(file).read_text()
2337-
2338-
```
2339-
2340-
另外可以在 `plugin_test.py` 中编写相应的测试函数,也可以直接编写如下所示 KCL 文件进行测试:
2341-
2342-
```python
2343-
import kcl_plugin.io
2344-
2345-
text = io.read_file('test.txt')
2346-
```
2347-
2348-
还可以使用 info 命令查看 io 插件的信息
2349-
2350-
```
2351-
kcl-plugin info io
2352-
```
2353-
2354-
```
2355-
{
2356-
"name": "io",
2357-
"describe": "my io plugin description test",
2358-
"long_describe": "my io plugin long description test",
2359-
"version": "0.0.1",
2360-
"method": {
2361-
"read_file": "Read string from file"
2362-
}
2363-
}
2364-
```
2365-
2366-
最后将编写测试完成的插件在 `kcl_plugins` 仓库提 MR 合并即可
2287+
查看[这里](https://www.kcl-lang.io/docs/reference/plugin/overview)获得更多信息。
23672288

23682289
## 50. 如何在 KCL 中进行基本类型转换
23692290

i18n/zh-CN/docusaurus-plugin-content-docs/version-0.10/user_docs/support/faq-kcl.md

+1-80
Original file line numberDiff line numberDiff line change
@@ -2284,86 +2284,7 @@ data_type_list:
22842284

22852285
## 49. 如何通过编写 KCL 插件进行扩展?
22862286

2287-
KCL 插件在 KCL 的 plugins 子目录(通常安装在 `$HOME/.kcl/plugins` 目录),或者通过 `$KCL_PLUGINS_ROOT` 环境变量设置(环境变量优先级更高)。对于插件开发人员,插件都在 [Git 仓库](https://github.com/kcl-lang/kcl-plugin)管理,可以将插件仓库克隆到该目录进行开发。
2288-
2289-
KCL 内置了 kcl-plugin 脚手架命令用于辅助用户使用 Python 语言编写 KCL 插件,以便在 KCL 文件当中调用相应的插件对 KCL 语言本身进行增强,比如访问网络,读写 IO,CMDB 查询和加密解密等功能。
2290-
2291-
```
2292-
usage: kcl-plugin [-h] {list,init,info,gendoc,test} ...
2293-
2294-
positional arguments:
2295-
{list,init,info,gendoc,test}
2296-
kcl plugin sub commands
2297-
list list all plugins
2298-
init init a new plugin
2299-
info show plugin document
2300-
gendoc gen all plugins document
2301-
test test plugin
2302-
2303-
optional arguments:
2304-
-h, --help show this help message and exit
2305-
```
2306-
2307-
比如想要开发一个名为 io 插件,就可以使用如下命令成功新建一个 io 插件
2308-
2309-
```
2310-
kcl-plugin init io
2311-
```
2312-
2313-
然后可以使用如下命令获得 plugin 的根路径并 cd 到相应的 io 插件目录进行开发
2314-
2315-
```
2316-
kcl-plugin info
2317-
```
2318-
2319-
比如想要开发一个读文件的函数 read_file,就可以在 `$plugin_root/io` 的 `plugin.py` 中进行 python 代码编写:
2320-
2321-
```python
2322-
# Copyright 2020 The KCL Authors. All rights reserved.
2323-
2324-
import pathlib
2325-
2326-
INFO = {
2327-
'name': 'io',
2328-
'describe': 'my io plugin description test',
2329-
'long_describe': 'my io plugin long description test',
2330-
'version': '0.0.1',
2331-
}
2332-
2333-
2334-
def read_file(file: str) -> str:
2335-
"""Read string from file"""
2336-
return pathlib.Path(file).read_text()
2337-
2338-
```
2339-
2340-
另外可以在 `plugin_test.py` 中编写相应的测试函数,也可以直接编写如下所示 KCL 文件进行测试:
2341-
2342-
```python
2343-
import kcl_plugin.io
2344-
2345-
text = io.read_file('test.txt')
2346-
```
2347-
2348-
还可以使用 info 命令查看 io 插件的信息
2349-
2350-
```
2351-
kcl-plugin info io
2352-
```
2353-
2354-
```
2355-
{
2356-
"name": "io",
2357-
"describe": "my io plugin description test",
2358-
"long_describe": "my io plugin long description test",
2359-
"version": "0.0.1",
2360-
"method": {
2361-
"read_file": "Read string from file"
2362-
}
2363-
}
2364-
```
2365-
2366-
最后将编写测试完成的插件在 `kcl_plugins` 仓库提 MR 合并即可
2287+
查看[这里](https://www.kcl-lang.io/docs/reference/plugin/overview)获得更多信息。
23672288

23682289
## 50. 如何在 KCL 中进行基本类型转换
23692290

versioned_docs/version-0.10/user_docs/support/faq-kcl.md

+1-80
Original file line numberDiff line numberDiff line change
@@ -2272,86 +2272,7 @@ data_type_list:
22722272

22732273
## 49. How to develop a KCL plugin?
22742274

2275-
KCL plugins are installed in the plugins subdirectory of KCL (usually installed in the `$HOME/.kcl/plugins` directory), or set through the `$KCL_PLUGINS_ROOT` environment variable. Besides, the `plugins` directory could also be placed at the `pwd` path. For plugin developers, plugins are managed in the [Git repository](https://github.com/kcl-lang/kcl-plugin), and the plugin repository can be cloned to this directory for development.
2276-
2277-
KCL has built-in kcl-plugin scaffolding command to assist users to write KCL plug-ins in Python language, so that the corresponding plug-ins can be called in the KCL file to enhance the KCL language itself, such as accessing the network, reading and writing IO, CMDB query and encryption and decryption functions.
2278-
2279-
```
2280-
usage: kcl-plugin [-h] {list,init,info,gendoc,test} ...
2281-
2282-
positional arguments:
2283-
{list,init,info,gendoc,test}
2284-
kcl plugin sub commands
2285-
list list all plugins
2286-
init init a new plugin
2287-
info show plugin document
2288-
gendoc gen all plugins document
2289-
test test plugin
2290-
2291-
optional arguments:
2292-
-h, --help show this help message and exit
2293-
```
2294-
2295-
For example, if you want to develop a plugin named io, you can use the following command to successfully create a new io plugin
2296-
2297-
```
2298-
kcl-plugin init io
2299-
```
2300-
2301-
Then you can use the following command to get the root path of the plugin and cd to the corresponding io plugin directory for development
2302-
2303-
```
2304-
kcl-plugin info
2305-
```
2306-
2307-
For example, if you want to develop a function read_file to read a file, you can write python code in `plugin.py` of `$plugin_root/io`:
2308-
2309-
```python
2310-
# Copyright 2020 The KCL Authors. All rights reserved.
2311-
2312-
import pathlib
2313-
2314-
INFO = {
2315-
'name': 'io',
2316-
'describe': 'my io plugin description test',
2317-
'long_describe': 'my io plugin long description test',
2318-
'version': '0.0.1',
2319-
}
2320-
2321-
2322-
def read_file(file: str) -> str:
2323-
"""Read string from file"""
2324-
return pathlib.Path(file).read_text()
2325-
2326-
```
2327-
2328-
In addition, you can write the corresponding test function in `plugin_test.py`, or you can directly write the following KCL file for testing:
2329-
2330-
```python
2331-
import kcl_plugin.io
2332-
2333-
text = io.read_file('test.txt')
2334-
```
2335-
2336-
You can also use the info command to view information about the io plugin
2337-
2338-
```
2339-
kcl-plugin info io
2340-
```
2341-
2342-
```
2343-
{
2344-
"name": "io",
2345-
"describe": "my io plugin description test",
2346-
"long_describe": "my io plugin long description test",
2347-
"version": "0.0.1",
2348-
"method": {
2349-
"read_file": "Read string from file"
2350-
}
2351-
}
2352-
```
2353-
2354-
Finally, the plugin that has written the test can be merged with MR in the `kcl_plugins` repository.
2275+
See [here](https://www.kcl-lang.io/docs/reference/plugin/overview) for more information.
23552276

23562277
## 50. How to do basic type conversion in KCL
23572278

0 commit comments

Comments
 (0)