CLI library to automate the API Reference generation
Project description
# ibm-apidocs-cli

[](https://pypi.python.org/pypi/ibm-apidocs-cli)
This tool allows users to generate the api documentation.
## Installation
To install, use `pip` or `easy_install`:
```bash
pip install -U ibm-apidocs-cli
```
or
```bash
easy_install -U ibm-apidocs-cli
```
Install the [Frontmatter generator](https://github.ibm.com/cloud-doc-build/frontmatter-generator)
```
The front-matter generator repository should be accessible to enable the call to app.js.
The repository should be cloned or downloaded to the machine where the ibm-apidocs-cli command will be run.
The command uses an argument "--frontmatter" where you will need to specify the full path to the apps.js file.
```
Install the [SDK generator](https://github.ibm.com/CloudEngineering/openapi-sdkgen/releases)
```
The OpenAPI SDK Code Generator should be accessible to enable the call to openapi-sdkgen.jar.
You do not need to clone or download the full repository and build the project.
It is much easier to use the pre-built installer under releases and install it on the machine where
the ibm-apidocs-cli command will be run. The command uses an argument "--sdk-generator" where you will
need to specify the full path to the openapi-sdkgen.jar file. Instructions for installing the pre-built
installer are in the openapi-sdkgen README.md file under the section Using a pre-built installer.
```
Clone or create a [cloud-api-docs](https://github.ibm.com/cloud-api-docs) repo
```
The build process requires access to the directory containing the `apiref-index.json` file and the
front matter configuration file (typically `<openapi>-config.json`) for the cloud-api-docs repo
used to publish the API documentation.
```
## Usage
```
ibm-apidocs-cli --help
```
```
usage: ibm-apidocs-cli [-h] -i <openapi_file> -a <apidocs_path> -c <config_file>
[--frontmatter <frontmatter_path>]
[--sdk-generator <sdk_generator_path>]
[--output_folder <output_path>] [--verbose] [--version]
Generate the apidocs files.
Required arguments:
-i <openapi_file>, --openapi <openapi_file>
The input OpenAPI specification file path or url.
-a <apidocs_path>, --apidocs <apidocs_path>
The path to the cloud-api-docs repository or other directory
containing `apiref-index.json` and front matter config file.
-c <config_file>, --config <config_file>
File name of front matter config file (e.g.
`assistant-v1-config.json`). You can optionally specify
the full path to the config file; if you do not include
the path, the file is assumed to be in the `apidocs`
directory.
optional arguments:
-h, --help show this help message and exit
--frontmatter <frontmatter_path>
Path to the directory containing the frontmatter generator
`app.js` file.
--sdk_generator <sdk_generator_path>
Path to the directory containing the SDK generator JAR file.
--output_folder output_folder
The target directory for generated files.
--verbose verbose flag
--version show program's version number and exit
```
```
Example command: (At this time full pathnames are necessary to execute the command)
All the generated apidocs and artifacts from the command will be written to the target output folder
ibm-apidocs-cli --openapi '/Users/my_user/Documents/GitHub/api-apidocs-cli/test/resources/config/assistant-openapi3-v1.json' \
--config '/Users/my_user/Documents/GitHub/api-apidocs-cli/test/resources/config/test-input-config.yaml' \
--output_folder '/Users/my_user/Documents/GitHub/api-apidocs-cli/test/target' \
--frontmatter '/Users/my_user/Documents/GitHub/frontmatter-generator' \
--sdk_generator '/Users/my_user/Documents/Release/openapi-sdkgen/lib'
```
## Python version
✅ Tested on Python 2.7, 3.4, 3.5, and 3.6.
## Contributing
See [CONTRIBUTING.md][CONTRIBUTING].
## License
MIT
[ibm_cloud]: https://cloud.ibm.com
[responses]: https://github.com/getsentry/responses
[requests]: http://docs.python-requests.org/en/latest/
[CONTRIBUTING]: ./CONTRIBUTING.md

[](https://pypi.python.org/pypi/ibm-apidocs-cli)
This tool allows users to generate the api documentation.
## Installation
To install, use `pip` or `easy_install`:
```bash
pip install -U ibm-apidocs-cli
```
or
```bash
easy_install -U ibm-apidocs-cli
```
Install the [Frontmatter generator](https://github.ibm.com/cloud-doc-build/frontmatter-generator)
```
The front-matter generator repository should be accessible to enable the call to app.js.
The repository should be cloned or downloaded to the machine where the ibm-apidocs-cli command will be run.
The command uses an argument "--frontmatter" where you will need to specify the full path to the apps.js file.
```
Install the [SDK generator](https://github.ibm.com/CloudEngineering/openapi-sdkgen/releases)
```
The OpenAPI SDK Code Generator should be accessible to enable the call to openapi-sdkgen.jar.
You do not need to clone or download the full repository and build the project.
It is much easier to use the pre-built installer under releases and install it on the machine where
the ibm-apidocs-cli command will be run. The command uses an argument "--sdk-generator" where you will
need to specify the full path to the openapi-sdkgen.jar file. Instructions for installing the pre-built
installer are in the openapi-sdkgen README.md file under the section Using a pre-built installer.
```
Clone or create a [cloud-api-docs](https://github.ibm.com/cloud-api-docs) repo
```
The build process requires access to the directory containing the `apiref-index.json` file and the
front matter configuration file (typically `<openapi>-config.json`) for the cloud-api-docs repo
used to publish the API documentation.
```
## Usage
```
ibm-apidocs-cli --help
```
```
usage: ibm-apidocs-cli [-h] -i <openapi_file> -a <apidocs_path> -c <config_file>
[--frontmatter <frontmatter_path>]
[--sdk-generator <sdk_generator_path>]
[--output_folder <output_path>] [--verbose] [--version]
Generate the apidocs files.
Required arguments:
-i <openapi_file>, --openapi <openapi_file>
The input OpenAPI specification file path or url.
-a <apidocs_path>, --apidocs <apidocs_path>
The path to the cloud-api-docs repository or other directory
containing `apiref-index.json` and front matter config file.
-c <config_file>, --config <config_file>
File name of front matter config file (e.g.
`assistant-v1-config.json`). You can optionally specify
the full path to the config file; if you do not include
the path, the file is assumed to be in the `apidocs`
directory.
optional arguments:
-h, --help show this help message and exit
--frontmatter <frontmatter_path>
Path to the directory containing the frontmatter generator
`app.js` file.
--sdk_generator <sdk_generator_path>
Path to the directory containing the SDK generator JAR file.
--output_folder output_folder
The target directory for generated files.
--verbose verbose flag
--version show program's version number and exit
```
```
Example command: (At this time full pathnames are necessary to execute the command)
All the generated apidocs and artifacts from the command will be written to the target output folder
ibm-apidocs-cli --openapi '/Users/my_user/Documents/GitHub/api-apidocs-cli/test/resources/config/assistant-openapi3-v1.json' \
--config '/Users/my_user/Documents/GitHub/api-apidocs-cli/test/resources/config/test-input-config.yaml' \
--output_folder '/Users/my_user/Documents/GitHub/api-apidocs-cli/test/target' \
--frontmatter '/Users/my_user/Documents/GitHub/frontmatter-generator' \
--sdk_generator '/Users/my_user/Documents/Release/openapi-sdkgen/lib'
```
## Python version
✅ Tested on Python 2.7, 3.4, 3.5, and 3.6.
## Contributing
See [CONTRIBUTING.md][CONTRIBUTING].
## License
MIT
[ibm_cloud]: https://cloud.ibm.com
[responses]: https://github.com/getsentry/responses
[requests]: http://docs.python-requests.org/en/latest/
[CONTRIBUTING]: ./CONTRIBUTING.md
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
ibm-apidocs-cli-0.0.2.tar.gz
(8.6 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file ibm-apidocs-cli-0.0.2.tar.gz.
File metadata
- Download URL: ibm-apidocs-cli-0.0.2.tar.gz
- Upload date:
- Size: 8.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/18.2 requests-toolbelt/0.9.1 tqdm/4.28.1 CPython/3.5.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cb9290e73d5015929ed07dd6a3e6810e9431473a18a93c92a7e55b0fce08adaa
|
|
| MD5 |
596579cc9e377d14085a9a64a23dc425
|
|
| BLAKE2b-256 |
2b4a2340174519e5312c60eaf4e40389a67b7fae16190df4fd86169aa5e4f573
|
File details
Details for the file ibm_apidocs_cli-0.0.2-py3-none-any.whl.
File metadata
- Download URL: ibm_apidocs_cli-0.0.2-py3-none-any.whl
- Upload date:
- Size: 7.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/18.2 requests-toolbelt/0.9.1 tqdm/4.28.1 CPython/3.5.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3122efd8081b7a3a6dd47112d17b4fcd22af480298aa0a45a20f530514e40c26
|
|
| MD5 |
e2c5305615376f118e08a3c432c70044
|
|
| BLAKE2b-256 |
b5b86ced763bc5e57d5f6bcae8a27a049852120a70f5729b24fdf91704070e40
|