Botocore 以前的版本文档

Geo*_* B. 3 boto3

是否可以阅读以前版本的文档?尝试过,寻找答案,但到目前为止没有成功。

http://botocore.readthedocs.io/en/latest/

https://github.com/boto/botocore

VCD*_*VCD 8

截至 2018 年 10 月 4 日,问题中提到的链接http://botocore.readthedocs.io/en/latest/正在重定向到https://botocore.amazonaws.com/v1/documentation/api/latest/index .html

{version_number}您可以通过替换以下 URL 中您想要访问的版本来 访问以前版本的文档。https://botocore.amazonaws.com/v1/documentation/api/{version_number}/index.html

例如,请访问https://botocore.amazonaws.com/v1/documentation/api/1.12.19/index.html以获取版本 1.12.19 文档。

请注意,截至 2022 年 10 月 20 日,文档仅适用于 >= 1.10.50的版本


Jor*_*ips 5

没有以前版本的托管文档,没有。但是,如果您愿意,您可以自己生成文档并在本地查看它们。以下是这样做的步骤,我建议在临时虚拟环境中进行。

$ git clone https://github.com/boto/botocore.git
$ cd botocore
$ git checkout $RELEASE_COMMIT
$ pip install -r requirements.txt
$ pip install -r requirements-docs.txt
$ pip install -e .
$ cd docs
$ make html
$ open build/html/index.html
Run Code Online (Sandbox Code Playgroud)

您可以在此处轻松找到发布提交。