Skip to content

Instantly share code, notes, and snippets.

@zachwill
Created August 25, 2011 07:24
Show Gist options
  • Save zachwill/1170158 to your computer and use it in GitHub Desktop.
Save zachwill/1170158 to your computer and use it in GitHub Desktop.
#!/usr/bin/env python
"""Looking up environment variables through `vars`."""
def ohai():
"""A simple function."""
print 'ohai'
class Foo(object):
"""A simple class."""
def __init__(self):
print 'Foo'
def find_it(name):
"""Find the environment variable."""
environment = vars()
try:
environment[name]
except KeyError:
print 'Nothing found.'
def main():
find_it('ohai')
find_it('Foo')
find_it('ctbarna')
if __name__ == '__main__':
main()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment