32 lines
1.2 KiB
Python
32 lines
1.2 KiB
Python
|
#!/usr/bin/env python
|
||
|
#
|
||
|
# This work is licensed under the Creative Attribution-NonCommercial-ShareAlike
|
||
|
# 3.0 Unported License.To view a copy of this license, visit
|
||
|
# http://creativecommons.org/licenses/by-nc-sa/3.0/ or send a letter to
|
||
|
# Creative Commons, 444 Castro Street, Suite 900, Mountain View,
|
||
|
# California, 94041, USA.
|
||
|
|
||
|
from __future__ import print_function
|
||
|
|
||
|
from bitarray import bitarray
|
||
|
import constants
|
||
|
|
||
|
# Does anybody read this stuff? There's a PEP somewhere that says I should do this.
|
||
|
__author__ = 'Cortney T. Buffington, N0MJS'
|
||
|
__copyright__ = 'Copyright (c) 2016 Cortney T. Buffington, N0MJS and the K0USY Group'
|
||
|
__credits__ = 'Jonathan Naylor, G4KLX'
|
||
|
__license__ = 'Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported'
|
||
|
__maintainer__ = 'Cort Buffington, N0MJS'
|
||
|
__email__ = 'n0mjs@me.com'
|
||
|
|
||
|
|
||
|
#------------------------------------------------------------------------------
|
||
|
# Used to execute the module directly to run built-in tests
|
||
|
#------------------------------------------------------------------------------
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
|
||
|
from binascii import b2a_hex as h
|
||
|
from time import time
|
||
|
|
||
|
print(ENC_EMB)
|