{ "info": { "author": "IBM Corp", "author_email": "germanatt@us.ibm.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Intended Audience :: Developers", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 3", "Topic :: Software Development :: Libraries :: Application Frameworks", "Topic :: Software Development :: Libraries :: Python Modules" ], "description": "ibm-apidocs-cli\n===============\n\n|Status| |Latest Stable Version|\n\nThis tool allows users to generate the api documentation.\n\nInstallation\n------------\n\n- Install the CLI with ``pip`` or ``easy_install``:\n\n .. code:: bash\n\n pip install -U ibm-apidocs-cli\n\n or\n\n .. code:: bash\n\n easy_install -U ibm-apidocs-cli\n\n- Clone a `cloud-api-docs `__\n repo to a local directory. Make sure the repo contains the required\n ``apiref-index.json`` file and the front-matter configuration file\n (typically ``-config.json``).\n\n- Configure your GitHub Enterprise access token. You can skip this step\n if you do not want the CLI to automatically download the latest\n front-matter and SDK generator code.\n\nFollow these steps:\n\n1. Get an access token from `GitHub\n Enterprise `__. For more\n information, see the `GitHub\n help `__.\n\n2. Set the ``GITHUB_TOKEN`` environment variable:\n\n ::\n\n export GITHUB_TOKEN=\n\n- **Optional:** Configure a public GitHub access token. The CLI uses\n the GitHub API to retrieve the latest SDK versions. If you encounter\n errors caused by exceeding the GitHub API rate limit on anonymous\n requests, try configuring the public GitHub access token.\n\nFollow these steps:\n\n1. Get an access token from\n `GitHub `__. For more\n information, see the `GitHub\n help `__.\n\n2. Set the ``GITHUB_PUBLIC_TOKEN`` environment variable:\n\n ::\n\n export GITHUB_PUBLIC_TOKEN=\n\n- **Optional:** Clone the `frontmatter\n generator `__\n to a local directory. If you do not have a local clone of the\n front-matter generator repo, the CLI will automatically clone it to a\n temporary directory.\n\n- **Optional:** Install the `SDK\n generator `__\n to a local directory. If you do not have a local copy of the SDK\n generator, the CLI will automatically download the latest version to\n a temporary directory.\n\nTo install the SDK generator, you do not need to clone or download the\nfull repository or build the project. Instead, use the\n`installer `__.\nFor more information, see `the generator\nREADME `__.\n\n**Note:** The SDK generator .jar file must be named\n``openapi-sdkgen.jar``. If you have downloaded or built a version of the\nfile with a different name (e.g.``openapi-sdkgen-.jar``), you\nmust rename it.\n\nUsage\n-----\n\nThere are two distinct modes of usage:\n\n- **Manual mode** is used to process a single API definition, using a\n local clone of the ``cloud-api-docs`` repo for the service. This mode\n offers fine-grained control, with command-line arguments to specify\n the front-matter config file and templates, the output location, and\n other options that are specific to the file being processed. Any\n required information that is not specified (other than the input API\n definition) is looked up from the ``generate-apidocs.json`` map file.\n Manual mode is the default.\n\n- **Batch mode** is used to process one or more API definitions,\n specified either individually or using wildcards. With batch mode,\n processing is largely driven by the map file, which determines the\n file-specific options for each API definition. You can use optional\n command-line arguments to specify global options such as the SDK\n generator to use or the target directory where ``cloud-api-docs``\n repos are located. Batch mode is specified using the ``--batch`` or\n ``-b`` argument.\n\nSyntax\n------\n\n.. code:: text\n\n usage: ibm-apidocs-cli [-h | --help]\n [--batch | -b]\n -i | --openapi \n [--config ]\n [--mapfile ]\n [--apidocs ]\n [--templates ]\n [--examples ]\n [--output_folder ]\n [--target ]\n [--frontmatter ]\n [--sdk_generator ]\n [--sdkgen_release ]\n [--commit_msg ]\n [--skip_sdkgen] [--push] [--keep_sdk] [--keep_temp]\n [--no_update] [--verbose] [--version]\n\nRequired arguments:\n\n- ``-i, --openapi ``: The path to the input OpenAPI\n definition file(s) to process:\n\n- In manual mode, this must be exactly one file (for example,\n ``assistant-v1.json``).\n\n- In batch mode, this can be one or more file names or patterns,\n separated by spaces. Any pattern containing wildcards will be\n expanded. For example,\n ``./apis-public/*.json ./apis-private/*data*.json`` would process all\n files in the ``apis-public`` subdirectory and all files matching the\n pattern ``*data*.json`` in the ``apis-private`` subdirectory.\n\n **Note:** If you specify a path that contains wildcards, do not\n surround it with quotation marks. Use a backslash (``\\``) to escape\n spaces in the path.\n\nOnly files that are defined in the mapping file are processed. Any file\nnot in the mapping file is skipped, and processing continues.\n\nOptional arguments:\n\n- ``-h, --help``: Display usage information.\n\n- ``-b, --batch``: Batch mode switch. Use batch mode to process\n multiple files at once, using the map file to automatically look up\n required values on a per-file basis. The default is manual mode,\n which offers more fine-grained control over options but can process\n only one file at a time.\n\n**Note:** The handling of some command-line arguments, as well as which\narguments are valid, differ between batch mode and manual mode, as\ndescribed in this document.\n\n- ``--config `` *(Manual mode only)*: The front-matter\n config file (e.g. ``assistant-v1-config.json``). You can optionally\n specify the full path to the config file; if you do not include the\n path, the file is assumed to be in the ``apidocs`` directory. If you\n do not specify the config file, the file name is looked up from the\n map file, and the file is assumed to be in the ``apidocs`` directory.\n\nIn batch mode, the config file name is always looked up from the map\nfile and retrieved from the downloaded ``cloud-api-docs`` repo for the\nservice.\n\n- ``--apidocs `` *(Manual mode only)*: The path to the\n ``cloud-api-docs`` repository or other directory containing\n ``apiref-index.json`` and front matter config file. If you do not\n specify this argument, the current directory is used. In batch mode,\n you can use the ``--target`` argument to use local ``cloud-api-docs``\n repos.\n\n- ``--templates `` *(Manual mode only)*: Path to the\n directory containing the front-matter templates to use. You can\n specify either an absolute path or just the directory name (for\n example, ``templates-data``); if you specify just the directory name,\n it is assumed to be a subdirectory of the front-matter generator\n location. If you do not specify a templates directory, the CLI will\n use the templates directory specified in the map file.\n\nIn batch mode, the templates directory for each API definition is looked\nup from the map file.\n\n- ``--examples `` Path to the directory containing the\n example files associated with the input OpenAPI definition(s). This\n is typically the ``examples`` directory of a local clone of the\n ``developer-cloud--api-definitions`` repo). If you do not specify an\n examples directory, the CLI will download the example files from the\n ``developer-cloud--api-definitions`` GHE repo. In batch mode, the\n same examples directory is used for all API definitions.\n\nThe specific example files to be copied to the output directory for a\ngiven OpenAPI file are listed in the map file. If the ``examples`` array\nis empty or absent for the input API definition, no example files are\ncopied.\n\n- ``--output_folder `` *(Manual mode only)*: The output\n directory for generated files. If you do not specify this argument,\n output files are written to the current directory. In batch mode, you\n can use the ``--target`` argument to control the location for\n generated files.\n\n- ``--target `` *(Batch mode only)*: The parent directory of\n the local ``cloud-api-docs`` repos you want to use for config files\n and output. The CLI will look for subdirectories of this directory\n named according to the service names listed in the map file, which\n correspond to the ``cloud-api-docs`` repo names (for example,\n ``watson-assistant`` or ``discovery``). If the expected subdirectory\n is not present, the CLI will clone it from GHE.\n\n**Important:** If the ``cloud-api-docs`` directory for an affected\nservice already exists as a subdirectory of the ``target`` location, the\nCLI uses it as-is. The config file might be modified, and the generated\nfiles will overwrite previous versions that are already present. Keep in\nmind that if this directory is not current, you might not be able to\npush the changes to GHE without conflicts. It is your responsibility to\nmake sure any existing ``cloud-api-docs`` directories are current, or\nthat they contain only changes you want. (You can also delete any\nexisting ``cloud-api-docs`` directory and allow the CLI to clone the\ncurrent version from GHE.)\n\nIf you omit the ``--target`` argument in batch mode, the\n``cloud-api-docs`` directories for the affected services are cloned to a\ntemporary location. This means that the output is discarded after\nprocessing completes (unless you specify the ``--keep_temp`` argument).\nThis can still be useful if you want to run a test build to check for\nbuild errors, but do not need to see the generated output.\n\n- ``--mapfile ``: The path to a local map file, including\n file name (for example, ``generate-apidocs.json``). If you do not\n specify a local map file, the current map file is downloaded from the\n ``developer-cloud--api-definitions`` repo as needed.\n\n- ``--frontmatter ``: Path to the directory\n containing the front-matter generator ``app.js`` file. Use this\n option if you need to use a specific version or branch of the\n front-matter generator code, or if you do not have a GitHub access\n token configured. If you do not specify a location, the CLI will\n automatically clone the latest version of the front-matter generator\n repo to a temporary directory and use that clone.\n\n- ``--sdk_generator ``: Path to the directory\n containing the SDK generator JAR file, optionally including the file\n name. If you specify a directory but not a file name, the JAR file is\n assumed to be ``openapi-sdkgen.jar``. Use this option if you need to\n use local copy of the SDK generator. If you do not specify this\n parameter, the CLI will automatically download the the\n ``openapi-sdkgen.jar`` file to a temporary directory and use that\n copy.\n\n- ``--sdkgen_release ``: Release of the SDK generator\n to download, if you are allowing the CLI to download the generator\n automatically. Specify the GitHub release tag (for example,\n ``1.0.0.1``). If you do not specify a release, the CLI uses the most\n recent maintenance release for the major release specified in the map\n file. This argument is ignored if ``--sdk_generator`` is specified.\n\n- ``--commit_msg ``: *(Batch mode only)* Custom commit\n message to use when pushing generated files to the ``cloud-api-docs``\n repo for the service. (Ignored if ``--push`` is not also specified.)\n If you do not specify a custom commit message, the default commit\n message is ``Commit by ibm-apidocs-cli: build ``.\n\n- ``--skip_sdkgen``: Skips the generation of SDK-specific JSON files\n using the SDK generator. Use this option to speed processing if you\n only want to update the front matter or example files. For example,\n you might use this option if the API definition has not changed, but\n you want to update the front matter or examples. **Important:** The\n input API definition file is always copied to the output or target\n directory, even if you specify ``--skip_sdkgen``. If the API\n definition has changed, this could cause mismatches with any existing\n SDK-specific files.\n\n- ``--push``: *(Batch mode only)* Commit and push generated files to\n the ``master`` branch of the remote GitHub ``cloud-api-docs`` repo\n for the service.\n\n**Important:** This feature uses the ``git add``, ``git commit``, and\n``git push`` commands to push the local target directory (where files\nare generated) to GitHub. If you are using the ``--target`` argument to\ngenerate files in an existing local directory, that directory *must* be\nan up-to-date valid local clone of a remote api-docs repo, with the\n``master`` branch checked out.\n\nThe safest way to use the ``--push`` option is to omit the ``--target``\nargument. This ensures that the generated files are written to a freshly\ncloned local repo, which is guaranteed to be even with the remote.\n\n- ``--keep_sdk``: Preserve the ``_sdktemp`` directory containing\n generated SDK artifacts. Useful for debugging purposes.\n\n- ``--keep_temp``: Preserve the temporary directory containing the\n downloaded front-matter and SDK generators, as well as any\n ``cloud-api-docs`` repos downloaded during batch processing. Useful\n for debugging purposes.\n\n- ``--no_update``: Use front-matter config file as-is without updating\n SDK versions. If you do not specify this argument, the config file is\n updated with the latest GitHub release for each supported SDK\n language.\n\n- ``-h``, ``--help``: Show usage information and exit.\n\n- ``--verbose``: Verbose flag.\n\n- ``--version``: Show program's version number and exit.\n\nExample commands: manual mode\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\nThis example assumes that the command is being run from the ``apidocs``\nrepo directory containing the API Reference files, and that the CLI is\nautomatically downloading and using the latest code for the front-matter\nand SDK generators. All output files are written to the current\ndirectory:\n\n.. code:: bash\n\n ibm-apidocs-cli -i assistant-v1.json\n\nThis example uses different locations for the input and output files,\nand also specifies local copies of the SDK generator and front-matter\ngenerator code:\n\n::\n\n ibm-apidocs-cli -i '/Users/my_user/Documents/GitHub/api-apidocs-cli/test/resources/config/assistant-openapi3-v1.json' \\\n -c '/Users/my_user/Documents/GitHub/api-apidocs-cli/test/resources/config/test-input-config.yaml' \\\n --output_folder '/Users/my_user/Documents/GitHub/api-apidocs-cli/test/target' \\\n --frontmatter '/Users/my_user/Documents/GitHub/frontmatter-generator' \\\n --sdk_generator '/Users/my_user/Documents/Release/openapi-sdkgen/lib'\n\nExample commands: batch mode\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\nThis example builds two API definitions from the current directory. All\nother required files, including the map file, the ``cloud-api-docs``\nrepo, the front-matter generator, and the SDK generator, are downloaded\nautomatically. Output is written to the temporary ``cloud-api-docs``\ndirectory and is not kept.\n\n::\n\n ibm-apidocs-cli -b -i assistant-v1.json assistant-v2.json\n\nThis example builds all API definitions from the ``public`` and\n``private`` subdirectories, using local copies of the ``cloud-api-docs``\nsubdirectories for the affected services. Generated files will be\nwritten to these same subdirectories.\n\n::\n\n ibm-apidocs-cli -b ./apis-public/*.json ./apis-private/*.json --target ~/github/cloud-api-docs\n\nMapping file\n------------\n\nThe ``generate-apidocs.json`` mapping file is a configuration file that\nis used by ``ibm-apidocs-cli`` to determine various default values for\neach API definition.\n\nThe canonical version of this file is located in the root of the\n`developer-cloud--api-definitions `__\nrepo. By default, the CLI downloads and uses the current mapping file\nfrom GitHub, but you can use the ``--mapfile`` argument to specify a\nlocal mapping file.\n\nThe format of the mapping file is as follows:\n\n::\n\n {\n \"name\": \"api-mapping\",\n \"version\": \"0.1.0\",\n \"sdkgen_major_release\": \"2\",\n \"description\": \"api document mapping used by ibm-apidocs-cli tool\",\n \"public\": [\n {\n \"service\": \"watson-assistant\",\n \"openapi\": \"assistant-v1.json\",\n \"config\": \"assistant-v1-config.json\",\n \"frontmatter\": \"templates\",\n \"examples\": [\n \"assistant-v1-curl-examples.json\",\n \"assistant-v1-dotnet-standard-examples.json\",\n \"assistant-v1-go-examples.json\",\n \"assistant-v1-java-examples.json\",\n \"assistant-v1-node-examples.json\",\n \"assistant-v1-python-examples.json\",\n \"assistant-v1-ruby-examples.json\",\n \"assistant-v1-swift-examples.json\",\n \"assistant-v1-unity-examples.json\"\n ]\n },\n ...\n ],\n \"private\": [\n {\n \"service\": \"watson-assistant\",\n \"openapi\": \"assistant-data-v1.json\",\n \"config\": \"assistant-v1-config.json\",\n \"frontmatter\": \"templates-data\",\n \"examples\": [\n \"assistant-v1-curl-examples.json\",\n \"assistant-v1-dotnet-standard-examples.json\",\n \"assistant-v1-go-examples.json\",\n \"assistant-v1-java-examples.json\",\n \"assistant-v1-node-examples.json\",\n \"assistant-v1-python-examples.json\",\n \"assistant-v1-ruby-examples.json\",\n \"assistant-v1-swift-examples.json\",\n \"assistant-v1-unity-examples.json\"\n ]\n },\n ...\n ]\n }\n\nwhere:\n\n- ``name``: An identifier for the mapping file. This value is not used\n by the CLI.\n\n- ``version``: The mapping file version. This value is not used by the\n CLI.\n\n- ``sdkgen_major_release``: A global configuration value identifying\n the major version of the `SDK\n generator `__\n that was used to generate the currently available SDKs. The\n ``ibm-apidocs-cli`` script uses this value to determine which\n ``sdkgen`` version to use for generating language-specific files. (By\n default, the most recent maintenance release for the configured major\n release is used.)\n\n- ``description``: Description of the mapping file. This value is not\n used by the CLI.\n\n- ``public``: An array of JSON objects describing OAS3 API definitions\n for public Watson services. These are the OAS3 files in the\n ``apis-public`` directory of the\n `developer-cloud--api-definitions `__\n repo.\n\n- ``private``: An array of JSON objects describing OAS3 API definitions\n for private (ICP and ICP4D) Watson services. These are the OAS3 files\n in the ``apis-private`` directory of the\n `developer-cloud--api-definitions `__\n repo.\n\nWithin the ``public`` and ``private`` arrays, each object maps an API\ndefinition to the default values used by ``ibm-apidocs-cli``:\n\n- ``service``: An identifier for the Watson service described by the\n OAS3 file. This identifier is the same as the name of the\n ```cloud-api-docs`` `__ repo\n for the service, and is used to clone repos and push generated files\n to GHE.\n\n- ``openapi``: The name of the OAS3 file in the ``apis-public`` or\n ``apis-private`` directory.\n\n- ``config``: The name of the front-matter configuration file to use\n when building the API Reference for the OAS3 file. The specified\n configuration file is assumed to exist in the ``cloud-api-docs`` repo\n for the service.\n\n- ``frontmatter``: The name of the directory containing the\n front-matter templates to use when building the API Reference for the\n OAS3 files. The specified directory must exist in the\n `frontmatter-generator `__\n repo.\n\n- ``examples``: An array listing the names of the JSON files containing\n request examples to be merged with the OpenAPI definition at build\n time. The listed example files will be copied to the output directory\n along with the input OpenAPI file.\n\nPython version\n--------------\n\n\u2705 Tested on Python 3.5, 3.6, and 3.7.\n\nContributing\n------------\n\nSee `CONTRIBUTING.md <./CONTRIBUTING.md>`__.\n\nLicense\n-------\n\nMIT\n\n.. |Status| image:: https://img.shields.io/badge/status-beta-yellow.svg\n.. |Latest Stable Version| image:: https://img.shields.io/pypi/v/ibm-apidocs-cli.svg\n :target: https://pypi.python.org/pypi/ibm-apidocs-cli", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://cloud.ibm.com/apidocs", "keywords": "api-reference,ibm-watson,ibm-cloud", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "ibm-apidocs-cli", "package_url": "https://pypi.org/project/ibm-apidocs-cli/", "platform": "", "project_url": "https://pypi.org/project/ibm-apidocs-cli/", "project_urls": { "Homepage": "https://cloud.ibm.com/apidocs" }, "release_url": "https://pypi.org/project/ibm-apidocs-cli/0.17.0/", "requires_dist": null, "requires_python": "", "summary": "CLI library to automate the API Reference generation", "version": "0.17.0", "yanked": false, "yanked_reason": null }, "last_serial": 7327520, "releases": { "0.0.1": [ { "comment_text": "", "digests": { "md5": "2eb3a5c0bfca9580c2c66b6e69a4bd32", "sha256": "10eded2f08dc343f2d2df6847793a9844ec070a06fd0e4372931108ce7fd2d65" }, "downloads": -1, "filename": "ibm_apidocs_cli-0.0.1-py3-none-any.whl", "has_sig": false, "md5_digest": "2eb3a5c0bfca9580c2c66b6e69a4bd32", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 7672, "upload_time": "2019-04-02T18:57:20", "upload_time_iso_8601": "2019-04-02T18:57:20.211172Z", "url": "https://files.pythonhosted.org/packages/e6/ae/87337874bd287a75ad493ab4ef642932de7cd7e8d0c32661e6b9b5269ddf/ibm_apidocs_cli-0.0.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "383ff115625d68be0919275c646d61d9", "sha256": "b9168e74d375bc903c242c8971a773beb68dddd137588edefe2d93b9ed4401da" }, "downloads": -1, "filename": "ibm-apidocs-cli-0.0.1.tar.gz", "has_sig": false, "md5_digest": "383ff115625d68be0919275c646d61d9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8570, "upload_time": "2019-04-02T18:57:23", "upload_time_iso_8601": "2019-04-02T18:57:23.322936Z", "url": "https://files.pythonhosted.org/packages/e6/cd/dd6e5641a3751fba4d01c5578e14c36d9e1b8da7de24a15ea549542a0d6c/ibm-apidocs-cli-0.0.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.0.2": [ { "comment_text": "", "digests": { "md5": "e2c5305615376f118e08a3c432c70044", "sha256": "3122efd8081b7a3a6dd47112d17b4fcd22af480298aa0a45a20f530514e40c26" }, "downloads": -1, "filename": "ibm_apidocs_cli-0.0.2-py3-none-any.whl", "has_sig": false, "md5_digest": "e2c5305615376f118e08a3c432c70044", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 7671, "upload_time": "2019-04-02T18:57:22", "upload_time_iso_8601": "2019-04-02T18:57:22.107749Z", "url": "https://files.pythonhosted.org/packages/b5/b8/6ced763bc5e57d5f6bcae8a27a049852120a70f5729b24fdf91704070e40/ibm_apidocs_cli-0.0.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "596579cc9e377d14085a9a64a23dc425", "sha256": "cb9290e73d5015929ed07dd6a3e6810e9431473a18a93c92a7e55b0fce08adaa" }, "downloads": -1, "filename": "ibm-apidocs-cli-0.0.2.tar.gz", "has_sig": false, "md5_digest": "596579cc9e377d14085a9a64a23dc425", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8556, "upload_time": "2019-04-02T18:57:24", "upload_time_iso_8601": "2019-04-02T18:57:24.525726Z", "url": "https://files.pythonhosted.org/packages/2b/4a/2340174519e5312c60eaf4e40389a67b7fae16190df4fd86169aa5e4f573/ibm-apidocs-cli-0.0.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.0.3": [ { "comment_text": "", "digests": { "md5": "1aa8c9be4680a0ee86200d8d9cda7502", "sha256": "0ff521624d7541472d9889f3246571647c6cb37d95bcebb63a79a754d99c07ce" }, "downloads": -1, "filename": "ibm_apidocs_cli-0.0.3-py3-none-any.whl", "has_sig": false, "md5_digest": "1aa8c9be4680a0ee86200d8d9cda7502", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 7663, "upload_time": "2019-04-18T20:48:16", "upload_time_iso_8601": "2019-04-18T20:48:16.994972Z", "url": "https://files.pythonhosted.org/packages/07/bb/4eed82c2711bf805c7b4bea60a8606ac1739bad31b2f6fd4cb9d29352516/ibm_apidocs_cli-0.0.3-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0246ed351c8284475eb28410cd024aeb", "sha256": "e82cddf4eb7ed227160f6b6190bee858cf25d00eeaf079738eba4b92ee82d23d" }, "downloads": -1, "filename": "ibm-apidocs-cli-0.0.3.tar.gz", "has_sig": false, "md5_digest": "0246ed351c8284475eb28410cd024aeb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8304, "upload_time": "2019-04-18T20:48:18", "upload_time_iso_8601": "2019-04-18T20:48:18.236409Z", "url": "https://files.pythonhosted.org/packages/e8/d6/960a2cb5a047c0c78de1ac2c91f963c1ae19c98f491a89903603c1fa2fdf/ibm-apidocs-cli-0.0.3.tar.gz", "yanked": false, "yanked_reason": null } ], "0.0.4": [ { "comment_text": "", "digests": { "md5": "a9cd816875358181a43061635feacac8", "sha256": "4c11f7581b7858bb70d125674d9f8bd0b0d3c53469ad61743b2a114a8dd00c78" }, "downloads": -1, "filename": "ibm_apidocs_cli-0.0.4-py3-none-any.whl", "has_sig": false, "md5_digest": "a9cd816875358181a43061635feacac8", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 7670, "upload_time": "2019-04-18T20:53:41", "upload_time_iso_8601": "2019-04-18T20:53:41.171026Z", "url": "https://files.pythonhosted.org/packages/e8/f7/dc1c1e8bb2a412b12d5159d922ecd608beeca4cb6f62e8910d2cd883ad0f/ibm_apidocs_cli-0.0.4-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "60c7f1d029025d21bfe60d389504b152", "sha256": "c572ce0d878bcd3c92ae7a81985f1087fd5e7b1cfcf68fbec5e15056b629859d" }, "downloads": -1, "filename": "ibm-apidocs-cli-0.0.4.tar.gz", "has_sig": false, "md5_digest": "60c7f1d029025d21bfe60d389504b152", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8311, "upload_time": "2019-04-18T20:53:42", "upload_time_iso_8601": "2019-04-18T20:53:42.427211Z", "url": "https://files.pythonhosted.org/packages/89/0b/ebf5b27d56574e8cc8e8e18d5dfa27330372bf221e8c69dcd64cec97ccb9/ibm-apidocs-cli-0.0.4.tar.gz", "yanked": false, "yanked_reason": null } ], "0.1.0": [ { "comment_text": "", "digests": { "md5": "5b4ed75f5ad75d06413b5a331aafceb0", "sha256": "262e90d4b2666bc7f4a0f48b694625385a3dc89f26b4bf11b7775a6b076cc0da" }, "downloads": -1, "filename": "ibm_apidocs_cli-0.1.0-py3-none-any.whl", "has_sig": false, "md5_digest": "5b4ed75f5ad75d06413b5a331aafceb0", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 7543, "upload_time": "2019-05-06T16:48:45", "upload_time_iso_8601": "2019-05-06T16:48:45.922460Z", "url": "https://files.pythonhosted.org/packages/6e/ac/306ad3e7733c0c81ebd488fa20dc16056bc4cb294ad593b68d72b6cbb5a1/ibm_apidocs_cli-0.1.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7415e017b80cb73a811778746fb82644", "sha256": "427cd1ffbdea7027fd6ad855a978bb884ba21753a23a31009aad3da22cf90835" }, "downloads": -1, "filename": "ibm-apidocs-cli-0.1.0.tar.gz", "has_sig": false, "md5_digest": "7415e017b80cb73a811778746fb82644", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7973, "upload_time": "2019-05-06T16:48:47", "upload_time_iso_8601": "2019-05-06T16:48:47.259071Z", "url": "https://files.pythonhosted.org/packages/1e/a6/f54ea6c9768f93d6ce6d527560234faeecdcfd688a5cf702533afcadc6fe/ibm-apidocs-cli-0.1.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.10.0": [ { "comment_text": "", "digests": { "md5": "22031d633894279274fedcfecfe619eb", "sha256": "0b9af7c7aaf912e3bb0323e0db6293465a0893ede70dac25be4dbefbda91d983" }, "downloads": -1, "filename": "ibm-apidocs-cli-0.10.0.tar.gz", "has_sig": false, "md5_digest": "22031d633894279274fedcfecfe619eb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12376, "upload_time": "2019-09-03T15:49:02", "upload_time_iso_8601": "2019-09-03T15:49:02.735666Z", "url": "https://files.pythonhosted.org/packages/22/e7/07621caf9e0702fcf950cdcf21f963b14072df08735691ce44021ee11b1a/ibm-apidocs-cli-0.10.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.10.1": [ { "comment_text": "", "digests": { "md5": "f4fbd017523793b12e226fb6e0401090", "sha256": "e9f1cbf7a7db66b81122a227aa64a51dc0d9907a1b3676f2e8d13a975d626f01" }, "downloads": -1, "filename": "ibm-apidocs-cli-0.10.1.tar.gz", "has_sig": false, "md5_digest": "f4fbd017523793b12e226fb6e0401090", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12620, "upload_time": "2019-09-04T17:15:21", "upload_time_iso_8601": "2019-09-04T17:15:21.075965Z", "url": "https://files.pythonhosted.org/packages/cb/a7/beaab8ca7b8b9f03bd56ec085aa7a82e533f4013323c81e16ea442a5e7c8/ibm-apidocs-cli-0.10.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.11.0": [ { "comment_text": "", "digests": { "md5": "8bc7ce216b23df2356b13d44957144a3", "sha256": "030161897f5dffdb27dc50f01f418176072ad7707f6da3d00cb6b121240f08f3" }, "downloads": -1, "filename": "ibm-apidocs-cli-0.11.0.tar.gz", "has_sig": false, "md5_digest": "8bc7ce216b23df2356b13d44957144a3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16414, "upload_time": "2019-09-16T15:37:39", "upload_time_iso_8601": "2019-09-16T15:37:39.285061Z", "url": "https://files.pythonhosted.org/packages/b0/f5/407cc97bab942c8720452dbd5bfc2e5153cd37f7d92eb253dade431b8f45/ibm-apidocs-cli-0.11.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.11.1": [ { "comment_text": "", "digests": { "md5": "b52a5ca9adc96f49d5066f1b944c3be4", "sha256": "837312c35de17207b3c200042f2a8cfccffad22505531edce97ce4d19ea6883c" }, "downloads": -1, "filename": "ibm-apidocs-cli-0.11.1.tar.gz", "has_sig": false, "md5_digest": "b52a5ca9adc96f49d5066f1b944c3be4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16424, "upload_time": "2019-09-16T18:01:00", "upload_time_iso_8601": "2019-09-16T18:01:00.134855Z", "url": "https://files.pythonhosted.org/packages/0c/bb/2c556c6f8394690f4ae254fb8758456fa1696d32b70d417aba49990a4ae2/ibm-apidocs-cli-0.11.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.12.0": [ { "comment_text": "", "digests": { "md5": "aac3aef59ae2fa4f47ebe76b5ecfd0bf", "sha256": "514d6e9cff89ab4c54c77ecb28ca8006c9bf0fce502bdc245ad28f047a267dd6" }, "downloads": -1, "filename": "ibm-apidocs-cli-0.12.0.tar.gz", "has_sig": false, "md5_digest": "aac3aef59ae2fa4f47ebe76b5ecfd0bf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18626, "upload_time": "2019-10-18T22:24:36", "upload_time_iso_8601": "2019-10-18T22:24:36.450491Z", "url": "https://files.pythonhosted.org/packages/75/d9/bfc8b830ce316cec0389d29e35de5fb339a4bf39153d9311fd51abea18d0/ibm-apidocs-cli-0.12.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.13.0": [ { "comment_text": "", "digests": { "md5": "89b51a0eb7a10cd9cf624d99af11f768", "sha256": "52a72aaedadbbdc8c028c48e1afad771188d30f8a6c76d27c552aac0e5a04a34" }, "downloads": -1, "filename": "ibm-apidocs-cli-0.13.0.tar.gz", "has_sig": false, "md5_digest": "89b51a0eb7a10cd9cf624d99af11f768", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18638, "upload_time": "2019-10-21T13:02:52", "upload_time_iso_8601": "2019-10-21T13:02:52.842496Z", "url": "https://files.pythonhosted.org/packages/5d/56/ba5876ef39fdd9ddea2e305de4fc73cbffab0d9c2b8b29f68ea1a6cb3d7f/ibm-apidocs-cli-0.13.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.14.0": [ { "comment_text": "", "digests": { "md5": "03e7b260d6f783eb0f1080247ac80943", "sha256": "eb44e962fd59da4901757c30f05d7d30870dfcaee6b6924054f4152c58dfd4cf" }, "downloads": -1, "filename": "ibm-apidocs-cli-0.14.0.tar.gz", "has_sig": false, "md5_digest": "03e7b260d6f783eb0f1080247ac80943", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19704, "upload_time": "2019-10-29T18:50:56", "upload_time_iso_8601": "2019-10-29T18:50:56.725774Z", "url": "https://files.pythonhosted.org/packages/18/16/fdb4469b92973cec404000ea8a299ba903df2e7d29a6f64e65b12a7a7667/ibm-apidocs-cli-0.14.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.14.1": [ { "comment_text": "", "digests": { "md5": "333a5cb2fd6662326c68bb097d1c1537", "sha256": "de11e37fd6476d6f7eb6cf13b71fdd67415d7f0051e5f05ffde35c076f9f3868" }, "downloads": -1, "filename": "ibm-apidocs-cli-0.14.1.tar.gz", "has_sig": false, "md5_digest": "333a5cb2fd6662326c68bb097d1c1537", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22184, "upload_time": "2019-11-20T23:55:08", "upload_time_iso_8601": "2019-11-20T23:55:08.577500Z", "url": "https://files.pythonhosted.org/packages/6d/d1/80fc6e2de2228828ce35f3985777e92845a59b4fa45081aae9fec18f5c42/ibm-apidocs-cli-0.14.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.14.2": [ { "comment_text": "", "digests": { "md5": "f2d4acc5f59ba7b077490cb712032383", "sha256": "b708183418fe4f77f478f951dd0f3f5938fa0738169978d9b05b4e448be6a55f" }, "downloads": -1, "filename": "ibm-apidocs-cli-0.14.2.tar.gz", "has_sig": false, "md5_digest": "f2d4acc5f59ba7b077490cb712032383", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22184, "upload_time": "2019-12-02T14:58:15", "upload_time_iso_8601": "2019-12-02T14:58:15.263820Z", "url": "https://files.pythonhosted.org/packages/6b/d1/b87d795b37823e3a72846ec0995f4106a4f8f68e8282cec25a85d8515ce4/ibm-apidocs-cli-0.14.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.14.3": [ { "comment_text": "", "digests": { "md5": "4bbe05e788fa5ac0a851343cfdf29f7b", "sha256": "bc8a440429c2b0ffe1250f5fb8c41af09dbcc435d93b79127ddeaaa6f12ca7dc" }, "downloads": -1, "filename": "ibm-apidocs-cli-0.14.3.tar.gz", "has_sig": false, "md5_digest": "4bbe05e788fa5ac0a851343cfdf29f7b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22092, "upload_time": "2019-12-05T14:48:10", "upload_time_iso_8601": "2019-12-05T14:48:10.495830Z", "url": "https://files.pythonhosted.org/packages/6f/f4/6a5e3d6bbc0e0c809a03778303bf05a85136644b7f2f07549ccc998a5b63/ibm-apidocs-cli-0.14.3.tar.gz", "yanked": false, "yanked_reason": null } ], "0.15.0": [ { "comment_text": "", "digests": { "md5": "c7a3ef75740c8e4ef70c84234fe46799", "sha256": "6a963cf16ef5ef6d786180b240359a1cc426fd11dad8c82043fa5933096386db" }, "downloads": -1, "filename": "ibm-apidocs-cli-0.15.0.tar.gz", "has_sig": false, "md5_digest": "c7a3ef75740c8e4ef70c84234fe46799", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22611, "upload_time": "2020-02-18T14:36:31", "upload_time_iso_8601": "2020-02-18T14:36:31.125510Z", "url": "https://files.pythonhosted.org/packages/7c/3f/4e86a55216607c400aba962aa77dca546b1f30701e46d452aaa4c9d2a717/ibm-apidocs-cli-0.15.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.16.0": [ { "comment_text": "", "digests": { "md5": "d2d4a864ef1fd868abc8582403e572b7", "sha256": "d39e2ea696d03b70ea6800174d7ad4c7983baaba49d71aa6699b8f27e90ed796" }, "downloads": -1, "filename": "ibm-apidocs-cli-0.16.0.tar.gz", "has_sig": false, "md5_digest": "d2d4a864ef1fd868abc8582403e572b7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24696, "upload_time": "2020-04-02T12:32:15", "upload_time_iso_8601": "2020-04-02T12:32:15.359844Z", "url": "https://files.pythonhosted.org/packages/94/2f/fba61a2a47413a7ccff6f6437eb46ce202e1ef369d47f35a90660a42e091/ibm-apidocs-cli-0.16.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.17.0": [ { "comment_text": "", "digests": { "md5": "08191c79fa6199e78fe3417ec6d5006d", "sha256": "12852733a400d18b2bce1be99b53bffba0fcd8e0bbc626cc670466df3e2e1784" }, "downloads": -1, "filename": "ibm-apidocs-cli-0.17.0.tar.gz", "has_sig": false, "md5_digest": "08191c79fa6199e78fe3417ec6d5006d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25148, "upload_time": "2020-05-26T15:21:26", "upload_time_iso_8601": "2020-05-26T15:21:26.116488Z", "url": "https://files.pythonhosted.org/packages/85/8f/c667f9fabb54c8e931a728427c73818254a44e5a8510721a6ca23f4d06dc/ibm-apidocs-cli-0.17.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "834086ef03af76c96b08729ae18a54bc", "sha256": "8272a5782f2d8264d5d0469a128ce0f08fa6bf44e235ee1641ceb1ba028963ca" }, "downloads": -1, "filename": "ibm-apidocs-cli-0.2.1.tar.gz", "has_sig": false, "md5_digest": "834086ef03af76c96b08729ae18a54bc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8208, "upload_time": "2019-05-10T18:17:38", "upload_time_iso_8601": "2019-05-10T18:17:38.310240Z", "url": "https://files.pythonhosted.org/packages/81/f1/3b73b10bcd9d3e1fcf6efe4c628b1d348caaa6b73d993609aa562ab1214b/ibm-apidocs-cli-0.2.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "d530f24c55d20579765aa0642f356a62", "sha256": "33dfba151083bd43296a56490363e848df55159e38ba2cec3fd1df3ef237167f" }, "downloads": -1, "filename": "ibm-apidocs-cli-0.3.0.tar.gz", "has_sig": false, "md5_digest": "d530f24c55d20579765aa0642f356a62", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8365, "upload_time": "2019-05-10T18:37:25", "upload_time_iso_8601": "2019-05-10T18:37:25.131340Z", "url": "https://files.pythonhosted.org/packages/e6/17/130311063d96e224dc3229d153653e7f3d345256b841196ddfd58fbc29af/ibm-apidocs-cli-0.3.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.1": [ { "comment_text": "", "digests": { "md5": "681efebc043f87892a68114669d3dca0", "sha256": "4b1f48b1ecdd55db949d771ad8fba6d0aa122583f563317b7bb7002e9f7004ef" }, "downloads": -1, "filename": "ibm-apidocs-cli-0.4.1.tar.gz", "has_sig": false, "md5_digest": "681efebc043f87892a68114669d3dca0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8488, "upload_time": "2019-05-15T17:26:07", "upload_time_iso_8601": "2019-05-15T17:26:07.332889Z", "url": "https://files.pythonhosted.org/packages/c1/ca/b47f24b9f69ba5776f5bf482f1099475906e93d7e790a3005d661e748ce2/ibm-apidocs-cli-0.4.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.3": [ { "comment_text": "", "digests": { "md5": "a6cf0969ffbf4734e4afa13d426cd8dc", "sha256": "0e87ac37b92d6adfa47a46d4861007d6433b46fe4eb3510b72aa35b79fe898d2" }, "downloads": -1, "filename": "ibm_apidocs_cli-0.4.3-py3-none-any.whl", "has_sig": false, "md5_digest": "a6cf0969ffbf4734e4afa13d426cd8dc", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 8290, "upload_time": "2019-05-20T18:53:42", "upload_time_iso_8601": "2019-05-20T18:53:42.688539Z", "url": "https://files.pythonhosted.org/packages/b1/b8/85e5f8d600321abc6725ce95d966053c0725f78181583c88324aa711225f/ibm_apidocs_cli-0.4.3-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "31694eab8cbb4827696b246b64397a35", "sha256": "18bfcae4cd4edaf56334904a148c45979148a2769a4a96390cdebe4fde79082d" }, "downloads": -1, "filename": "ibm-apidocs-cli-0.4.3.tar.gz", "has_sig": false, "md5_digest": "31694eab8cbb4827696b246b64397a35", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9529, "upload_time": "2019-05-20T18:53:44", "upload_time_iso_8601": "2019-05-20T18:53:44.498787Z", "url": "https://files.pythonhosted.org/packages/4c/4e/d8aa103f915ce401290619e45b646812fbc1db31b7193eedd6b912c6f197/ibm-apidocs-cli-0.4.3.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.4": [ { "comment_text": "", "digests": { "md5": "d1d1655e75012d8da1e5e38af5764938", "sha256": "df0bff8f62f12927cbc1be213c82548077a7226eb152e494cb02ff9ab99cabd2" }, "downloads": -1, "filename": "ibm-apidocs-cli-0.4.4.tar.gz", "has_sig": false, "md5_digest": "d1d1655e75012d8da1e5e38af5764938", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8948, "upload_time": "2019-05-20T19:02:01", "upload_time_iso_8601": "2019-05-20T19:02:01.596646Z", "url": "https://files.pythonhosted.org/packages/21/ab/f35429925325f18a16a982ac17194403be7481e4e5d333de37ad945e1408/ibm-apidocs-cli-0.4.4.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.5": [ { "comment_text": "", "digests": { "md5": "0ad12447851ab9e1d4fa08d21d577e91", "sha256": "452c7c399fab49ac1a79382db4ad71756410e7eb62074a80313fa99108fb3d3a" }, "downloads": -1, "filename": "ibm-apidocs-cli-0.4.5.tar.gz", "has_sig": false, "md5_digest": "0ad12447851ab9e1d4fa08d21d577e91", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10185, "upload_time": "2019-06-10T15:48:14", "upload_time_iso_8601": "2019-06-10T15:48:14.392225Z", "url": "https://files.pythonhosted.org/packages/fc/b4/e7990a00c9622979e2a300cb217570e31eaf9b6c6d558de5e9e3e182041f/ibm-apidocs-cli-0.4.5.tar.gz", "yanked": false, "yanked_reason": null } ], "0.5.0": [ { "comment_text": "", "digests": { "md5": "2128767bce53fcb4e1bad677e13a22fe", "sha256": "4c849aeb21969ae405d5b3cb58807cbf05f373ce690989008148c6f0294d11ce" }, "downloads": -1, "filename": "ibm-apidocs-cli-0.5.0.tar.gz", "has_sig": false, "md5_digest": "2128767bce53fcb4e1bad677e13a22fe", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10065, "upload_time": "2019-06-24T15:33:46", "upload_time_iso_8601": "2019-06-24T15:33:46.016164Z", "url": "https://files.pythonhosted.org/packages/25/1f/6db3f230ac3dfa6edef1ae0a76a25497c4587f6c4d2ca38932cdb1e7481d/ibm-apidocs-cli-0.5.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.6.0": [ { "comment_text": "", "digests": { "md5": "5b13f97d868d1a07e089539831a948b4", "sha256": "9e69cdbd57cb5f41c55f9c14840fbc2d1272411c3adddedf675a8e331d8c8fb0" }, "downloads": -1, "filename": "ibm-apidocs-cli-0.6.0.tar.gz", "has_sig": false, "md5_digest": "5b13f97d868d1a07e089539831a948b4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10092, "upload_time": "2019-06-25T22:50:28", "upload_time_iso_8601": "2019-06-25T22:50:28.165899Z", "url": "https://files.pythonhosted.org/packages/ff/02/2c158b43900d3ffa4f66e7dd1a8ebf28e635dfc8bb8793658387b486de73/ibm-apidocs-cli-0.6.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.6.1": [ { "comment_text": "", "digests": { "md5": "691a82e702e614c146ed8536fd12ebcc", "sha256": "7ca8d7738edc1077355f90cc853a5461139d0e0b4df3bb7f758a17ca199dddf2" }, "downloads": -1, "filename": "ibm-apidocs-cli-0.6.1.tar.gz", "has_sig": false, "md5_digest": "691a82e702e614c146ed8536fd12ebcc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10234, "upload_time": "2019-06-26T17:09:53", "upload_time_iso_8601": "2019-06-26T17:09:53.357499Z", "url": "https://files.pythonhosted.org/packages/a4/a2/84b8b1a23ff055837c32665f3cc376f467d42517058581f8874fc3281abf/ibm-apidocs-cli-0.6.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.7.0": [ { "comment_text": "", "digests": { "md5": "fbd2d62d26363871d7e1f716d72d0f2c", "sha256": "88f59ef47b2f16f064592e0aab4b8b8917e032fc824c370429c74c92ef04478a" }, "downloads": -1, "filename": "ibm-apidocs-cli-0.7.0.tar.gz", "has_sig": false, "md5_digest": "fbd2d62d26363871d7e1f716d72d0f2c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12000, "upload_time": "2019-06-26T18:56:22", "upload_time_iso_8601": "2019-06-26T18:56:22.255520Z", "url": "https://files.pythonhosted.org/packages/90/71/da1a9ed6d590a66c94743ff7ec48f850e567e7e1d315add3ea83c4fb27df/ibm-apidocs-cli-0.7.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.8.0": [ { "comment_text": "", "digests": { "md5": "e55dec5af0ee897718dd6d95a6b8070b", "sha256": "7e0afd4ffb7f7040a69c3bf52904b90db3432e8ae1fa3cc5d42678c5f38fa38c" }, "downloads": -1, "filename": "ibm-apidocs-cli-0.8.0.tar.gz", "has_sig": false, "md5_digest": "e55dec5af0ee897718dd6d95a6b8070b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11425, "upload_time": "2019-07-22T16:24:18", "upload_time_iso_8601": "2019-07-22T16:24:18.384719Z", "url": "https://files.pythonhosted.org/packages/0f/21/366dc8c11b680fe220de8ccaf55a9ba0c1ec799b8a758fd1aa74f1ed2275/ibm-apidocs-cli-0.8.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.9.0": [ { "comment_text": "", "digests": { "md5": "50bf30929384292b04933900a7afa64d", "sha256": "d9e125789453e34665e77df021146489708ba24c01375bd537d1100cb888743b" }, "downloads": -1, "filename": "ibm-apidocs-cli-0.9.0.tar.gz", "has_sig": false, "md5_digest": "50bf30929384292b04933900a7afa64d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11495, "upload_time": "2019-08-05T16:02:30", "upload_time_iso_8601": "2019-08-05T16:02:30.566683Z", "url": "https://files.pythonhosted.org/packages/08/aa/1141641a3f1d3b49f44dcdc5cdce951c738d27d4b90a9ac96200a58c4b7d/ibm-apidocs-cli-0.9.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.9.1": [ { "comment_text": "", "digests": { "md5": "4387a9eabe86e4711fd5918d50da8a75", "sha256": "3b44c9ef2f1a9253bb5aaca647f21ad7ea7e48829acdd33a81ceabdf0f701d4d" }, "downloads": -1, "filename": "ibm-apidocs-cli-0.9.1.tar.gz", "has_sig": false, "md5_digest": "4387a9eabe86e4711fd5918d50da8a75", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12052, "upload_time": "2019-08-30T15:37:20", "upload_time_iso_8601": "2019-08-30T15:37:20.337646Z", "url": "https://files.pythonhosted.org/packages/ca/99/75ca5e5531067a75200683047d73f496d5fd3f2c3e3a54cc0fea1ef28a58/ibm-apidocs-cli-0.9.1.tar.gz", "yanked": false, "yanked_reason": null } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "08191c79fa6199e78fe3417ec6d5006d", "sha256": "12852733a400d18b2bce1be99b53bffba0fcd8e0bbc626cc670466df3e2e1784" }, "downloads": -1, "filename": "ibm-apidocs-cli-0.17.0.tar.gz", "has_sig": false, "md5_digest": "08191c79fa6199e78fe3417ec6d5006d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25148, "upload_time": "2020-05-26T15:21:26", "upload_time_iso_8601": "2020-05-26T15:21:26.116488Z", "url": "https://files.pythonhosted.org/packages/85/8f/c667f9fabb54c8e931a728427c73818254a44e5a8510721a6ca23f4d06dc/ibm-apidocs-cli-0.17.0.tar.gz", "yanked": false, "yanked_reason": null } ], "vulnerabilities": [] }