Skip to content
This repository has been archived by the owner on May 3, 2021. It is now read-only.

Commit

Permalink
[python] quanity pip requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
rraval committed May 10, 2015
1 parent e542940 commit 7e223df
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 5 deletions.
12 changes: 7 additions & 5 deletions decode.py
@@ -1,17 +1,17 @@
from __future__ import print_function

import alsaaudio
import numpy as np
import sys
import wave

from cStringIO import StringIO
from reedsolo import RSCodec, ReedSolomonError

import alsaaudio
import colorama
import numpy as np

from reedsolo import RSCodec, ReedSolomonError
from termcolor import cprint
from pyfiglet import figlet_format
import colorama
colorama.init(strip=not sys.stdout.isatty())

HANDSHAKE_START_HZ = 8192
HANDSHAKE_END_HZ = 8192 + 512
Expand Down Expand Up @@ -158,5 +158,7 @@ def listen_linux(frame_rate=44100, interval=0.1):
in_packet = True

if __name__ == '__main__':
colorama.init(strip=not sys.stdout.isatty())

#decode_file(sys.argv[1], float(sys.argv[2]))
listen_linux()
6 changes: 6 additions & 0 deletions requirements.txt
@@ -0,0 +1,6 @@
colorama
numpy
pyalsaaudio
pyfiglet
reedsolo
termcolor

0 comments on commit 7e223df

Please sign in to comment.