This archive contains four files:

README   - this file
queue.py - python module
put.py   - program to put files into a specified directory
get.py   - program that waits for files to appear in a directory.  This
	   blocks until files are found, and removes the files as are
	   returned.  This program does not exit.


Example:

1)  Create two directories:

	mkdir tempdir tempdir2

2) Open two shell windows.

3) In the first window, execute the get.py program:
	python get.py tempdir2

4) Put a file into the tempdir directory

	echo  >tempdir/file1

5) Execute the put.py program:


	python put.py tempdir/file1 tempdir2

