From e8ba7654263c1f3cddfe63dea3d282a739c9778f Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Wed, 23 Mar 2011 00:03:33 -0400 Subject: [PATCH] tablib.helpers is not longer needed :cake: --- tablib/helpers.py | 38 -------------------------------------- 1 file changed, 38 deletions(-) delete mode 100644 tablib/helpers.py diff --git a/tablib/helpers.py b/tablib/helpers.py deleted file mode 100644 index f8a5351..0000000 --- a/tablib/helpers.py +++ /dev/null @@ -1,38 +0,0 @@ -# -*- coding: utf-8 -*- - -""" Tablib - General Helpers. -""" -from __future__ import with_statement - -import sys - - -class Struct(object): - """Your attributes are belong to us.""" - - def __init__(self, **entries): - self.__dict__.update(entries) - - def __getitem__(self, key): - return getattr(self, key, None) - - def dictionary(self): - """Returns dictionary representation of object.""" - return self.__dict__ - - def items(self): - """Returns items within object.""" - return self.__dict__.items() - - def keys(self): - """Returns keys within object.""" - return self.__dict__.keys() - - - -def piped(): - """Returns piped input via stdin, else False.""" - with sys.stdin as stdin: - # TTY is only way to detect if stdin contains data - return stdin.read() if not stdin.isatty() else None -