├── .gitignore ├── LICENSE ├── README.md ├── getAWSdocs.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | documentation/* 3 | whitepapers/* 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richarvey/getAWSdocs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richarvey/getAWSdocs/HEAD/README.md -------------------------------------------------------------------------------- /getAWSdocs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richarvey/getAWSdocs/HEAD/getAWSdocs.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richarvey/getAWSdocs/HEAD/requirements.txt --------------------------------------------------------------------------------