Skip to content

Instantly share code, notes, and snippets.

View Kylep342's full-sized avatar

Kyle Pekosh Kylep342

View GitHub Profile
@ddrscott
ddrscott / env.py
Created December 13, 2019 14:57
Simple environment variable helper
"""
All environment variable access should be performed via this module.
- allows tracing of where variables are used
- provide sensible defaults
- reduce string typos
"""
import os
import sys
SIZE = '10'