是否可以阅读以前版本的文档?尝试过,寻找答案,但至今没有成功。
http://botocore.readthedocs.io/en/latest/
发布于 2017-08-16 23:09:50
以前的版本没有托管文档,没有。但是,您可以自己生成文档,如果愿意,可以在本地查看它们。下面是这样做的步骤,我建议在临时虚拟环境中这样做。
$ 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您可以很容易地找到发行版提交这里。
发布于 2018-10-04 09:01:31
截至2018-10-04年,问题中提到的链接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版本。
https://stackoverflow.com/questions/45713450
复制相似问题