summaryrefslogtreecommitdiff
path: root/kismet-gps-tools.py
blob: 36ca6dd91dabc559626c656c7c4573ecb729ce02 (plain)
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()