Added beanstalk sink

This commit is contained in:
Matt Hill
2014-06-03 16:53:31 -04:00
parent 9a026a27e4
commit f3a38c59b9

13
src/plate_push.py Normal file
View File

@@ -0,0 +1,13 @@
#!/usr/bin/python
import beanstalkc
beanstalk = beanstalkc.Connection(host='localhost', port=11300)
beanstalk.watch('alpr')
job = beanstalk.reserve()
print job.body
job.delete()