Source code for gisutils.utils



[docs]def is_sequence(object): try: iter(object) return True except TypeError as te: return False