Metadata-Version: 2.1
Name: wait4localstack
Version: 0.2.2
Summary: Python utilities for ensuring that localstack has fully started.
Home-page: https://github.com/locp/wait4localstack
Author: League of Crafty Programmers Ltd.
Author-email: info@locp.co.uk
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/locp/wait4localstack/issues
Keywords: localstack
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# wait4localstack
A Python package for ensuring that localstack has fully started.

## Application Programming Interface (API) Documentation

To see the documentation for the API (auto-generated) please see
https://github.com/locp/wait4localstack/blob/main/docs/index.md

## Command Line Interface (CLI) Interface

A script called `wait4localstack` is provided the synopsis of the
command is:

```
usage: wait4localstack [-h] [-d] [-e LOCALSTACK_ENDPOINT] [-m MAXIMUM_RETRIES] [-t TEST_INTERVAL] [-v] [-x]

Wait for Localstack to be ready.

optional arguments:
  -h, --help            show this help message and exit
  -d, --debug           Should log level be DEBUG.
  -e LOCALSTACK_ENDPOINT, --endpoint LOCALSTACK_ENDPOINT
                        The endpoint for the Localstack healthcheck (default http://localhost:4566/health).
  -m MAXIMUM_RETRIES, --maximum-retries MAXIMUM_RETRIES
                        The maximum retries. If zero, try infinitely (default is zero).
  -t TEST_INTERVAL, --test-interval TEST_INTERVAL
                        The time in seconds to wait between retries (default is 2).
  -v, --verbose         Should log level be INFO.
  -x, --exponential_backoff
                        Should the time between retries by doubled at each attempt.
```




