#!/usr/bin/python
# Elecraft K3/K2 Rig Control Python Utilities
# Copyright (C) 2006, 2007, 2008, 2009 Leigh L. Klotz, Jr <Leigh@WA5ZNU.org>
# Licensed under Academic Free License 3.0 (See LICENSE)

import string, serial, time, sys, math, os
from lxml import etree

import k3lib

if len(sys.argv) == 1:
    k3 = k3lib.K3()
    print(k3.qsyq())
    k3.close()
else:
    print "usage: qrg"
