Metadata-Version: 2.1
Name: elibs-epython
Version: 2021.1045
Summary: A set of modules that help with QA
Home-page: https://github.com/elibs/epython
Author: Ray Gomez
Author-email: codenomad@gmail.com
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/elibs/epython/issues
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: paramiko
Requires-Dist: requests
Requires-Dist: scp

# EPython

The purpose of this library is to provide helper abstractions on top of well known libraries.
The idea is to harden existing technologies and build easy-to-use wrappers for incorporation 
in test or production python code.

## Overrides

There are instances when retry logic needs to be tweaked to make tests more performant, or 
more hardened. For this purpose, there are environmental variables that can be set to change 
the retry behavior. 

Below are the current overrides that are available:

Env Variable | Default | Description
------------ | ------- | -------------
EPYTHON_LOG_LEVEL | INFO | Control the epython logging level
EPYTHON_LOG_FILE | None | Set this to have all epython output logging to a file
EPYTHON_REQUEST_ID | "epython-poke" | Set this to control what X-Request-ID is presented using poke
EPYTHON_REQUEST_INTERVAL | 5 | The length of time between subsequent request retries
EPYTHON_REQUEST_RETRIES | 5 | The number of request retries to make
EPYTHON_SSH_KEY | None | Private SSH key to use
EPYTHON_SSH_RETRIES | 3 | The number of times to retry an ssh login operation
EPYTHON_SSH_RETRY_INTERVAL | 5 | The time to wait before a new ssh attempt

## Requests Headers:

EPYTHON_REQUEST_ID defaults to "epython-poke"

POKE_HEADERS = {
    "Content-Type": "application/json",
    "Accept": "application/json",
    "X-Request-ID": EPYTHON_REQUEST_ID
}


