1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
#!/usr/bin/env python import sys class ShapeFileSerializer(object): pass class KMLSerialzier(object): pass def usage(): print('python kismet-gps-tools.py <input>') print('\n') exit() if __name__ == '__main__': if len(sys.argv) < 2: usage()