Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Botocore previous versions documentation

Tags:

boto3

Is it possible to read the documentation of previous versions? Tried it, looked for answers but no success so far.

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

https://github.com/boto/botocore

like image 891
George B. Avatar asked Jul 17 '26 15:07

George B.


1 Answers

As of 2018-10-04, the link http://botocore.readthedocs.io/en/latest/ mentioned in the question is redirecting to https://botocore.amazonaws.com/v1/documentation/api/latest/index.html.

You can access the previous version of documentation by replacing {version_number} with the version you want visit in the following URL. https://botocore.amazonaws.com/v1/documentation/api/{version_number}/index.html

For example, visit https://botocore.amazonaws.com/v1/documentation/api/1.12.19/index.html for version 1.12.19 documentation.

Please note, as of 2022-10-20, documentation is available only for versions >= 1.10.50

like image 184
VCD Avatar answered Jul 23 '26 17:07

VCD