Skip to content

Instantly share code, notes, and snippets.

@ardydedase
Created May 31, 2020 04:42
Show Gist options
  • Select an option

  • Save ardydedase/1942a7056463ea964a71fb516d1bc115 to your computer and use it in GitHub Desktop.

Select an option

Save ardydedase/1942a7056463ea964a71fb516d1bc115 to your computer and use it in GitHub Desktop.
import os
def get_env_variable(name) -> str:
try:
return os.environ[name]
except KeyError:
message = "Expected environment variable '{}' not set.".format(name)
raise Exception(message)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment