Metadata-Version: 2.1
Name: qrzlib
Version: 0.1.1
Summary: Random Length Antenna Calculator
Home-page: https://github.com/0x9900/qrzlib/
Author: Fred C. (W6BSD)
Author-email: w6bsd@bsdworld.org
License: BSD
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Telecommunications Industry
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Communications :: Ham Radio
Description-Content-Type: text/markdown

# qrzlib

Python interface to qrz.com

```python
import qrzlib

qrz = qrzlib.QRZ()
qrz.authenticate('qrz-id', 'xmldata-key')
try:
	qrz.get_call('W6BSD')
	print(qrz.fullname, qrz.zip, qrz.latlon, qrz.grid, qrz.email)
except QRZ.NotFound as err:
	print(err)
```

On the first request the class QRZ get the data from the qrz web
service. Then, by default, the information will be cached forever.
