├── .dockerignore ├── .gitignore ├── .idea └── runConfigurations │ └── pytest_in_botostubs.xml ├── Dockerfile ├── LICENCE ├── Pipfile ├── Pipfile.lock ├── README.md ├── config ├── config.yaml └── main │ └── deployment-pipeline.yaml ├── conftest.py ├── deployment-pipeline.yaml ├── docker-compose.yml ├── intro-demo.gif ├── main.py ├── post-release-data.py ├── pythonic.py ├── release.sh ├── setup.py ├── stack.png ├── test-data └── main │ └── main │ ├── append_to_shapes │ ├── 01.json │ └── 02.json │ ├── get_doc_str │ └── 01.json │ ├── get_method_signature │ └── 01.json │ ├── get_paginator_str │ └── 01.json │ ├── get_param_list │ └── 01.json │ ├── get_param_name │ └── 01.json │ ├── get_waiter_str │ └── 01.json │ ├── print_actions │ └── 01.json │ ├── print_resource │ └── 01.json │ ├── print_sub_actions │ └── 01.json │ └── print_sub_waiters │ └── 01.json └── test_pytestcleanup_cases.py /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeshan/botostubs/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Created by .ignore support plugin (hsz.mobi) 2 | -------------------------------------------------------------------------------- /.idea/runConfigurations/pytest_in_botostubs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeshan/botostubs/HEAD/.idea/runConfigurations/pytest_in_botostubs.xml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeshan/botostubs/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeshan/botostubs/HEAD/LICENCE -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeshan/botostubs/HEAD/Pipfile -------------------------------------------------------------------------------- /Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeshan/botostubs/HEAD/Pipfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeshan/botostubs/HEAD/README.md -------------------------------------------------------------------------------- /config/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeshan/botostubs/HEAD/config/config.yaml -------------------------------------------------------------------------------- /config/main/deployment-pipeline.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeshan/botostubs/HEAD/config/main/deployment-pipeline.yaml -------------------------------------------------------------------------------- /conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeshan/botostubs/HEAD/conftest.py -------------------------------------------------------------------------------- /deployment-pipeline.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeshan/botostubs/HEAD/deployment-pipeline.yaml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeshan/botostubs/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /intro-demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeshan/botostubs/HEAD/intro-demo.gif -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeshan/botostubs/HEAD/main.py -------------------------------------------------------------------------------- /post-release-data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeshan/botostubs/HEAD/post-release-data.py -------------------------------------------------------------------------------- /pythonic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeshan/botostubs/HEAD/pythonic.py -------------------------------------------------------------------------------- /release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeshan/botostubs/HEAD/release.sh -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeshan/botostubs/HEAD/setup.py -------------------------------------------------------------------------------- /stack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeshan/botostubs/HEAD/stack.png -------------------------------------------------------------------------------- /test-data/main/main/append_to_shapes/01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeshan/botostubs/HEAD/test-data/main/main/append_to_shapes/01.json -------------------------------------------------------------------------------- /test-data/main/main/append_to_shapes/02.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeshan/botostubs/HEAD/test-data/main/main/append_to_shapes/02.json -------------------------------------------------------------------------------- /test-data/main/main/get_doc_str/01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeshan/botostubs/HEAD/test-data/main/main/get_doc_str/01.json -------------------------------------------------------------------------------- /test-data/main/main/get_method_signature/01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeshan/botostubs/HEAD/test-data/main/main/get_method_signature/01.json -------------------------------------------------------------------------------- /test-data/main/main/get_paginator_str/01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeshan/botostubs/HEAD/test-data/main/main/get_paginator_str/01.json -------------------------------------------------------------------------------- /test-data/main/main/get_param_list/01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeshan/botostubs/HEAD/test-data/main/main/get_param_list/01.json -------------------------------------------------------------------------------- /test-data/main/main/get_param_name/01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeshan/botostubs/HEAD/test-data/main/main/get_param_name/01.json -------------------------------------------------------------------------------- /test-data/main/main/get_waiter_str/01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeshan/botostubs/HEAD/test-data/main/main/get_waiter_str/01.json -------------------------------------------------------------------------------- /test-data/main/main/print_actions/01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeshan/botostubs/HEAD/test-data/main/main/print_actions/01.json -------------------------------------------------------------------------------- /test-data/main/main/print_resource/01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeshan/botostubs/HEAD/test-data/main/main/print_resource/01.json -------------------------------------------------------------------------------- /test-data/main/main/print_sub_actions/01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeshan/botostubs/HEAD/test-data/main/main/print_sub_actions/01.json -------------------------------------------------------------------------------- /test-data/main/main/print_sub_waiters/01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeshan/botostubs/HEAD/test-data/main/main/print_sub_waiters/01.json -------------------------------------------------------------------------------- /test_pytestcleanup_cases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeshan/botostubs/HEAD/test_pytestcleanup_cases.py --------------------------------------------------------------------------------