def get()

in sparkey/__init__.py [0:0]


    def get(self, key):
        """Retrieve the value associated with the key

        @param key: type must be bytes or string

        @returns: bytes representing the value associated with the key, or None if the
                  key does not exist.
        """
        return self._iter.get(key)