[user@localhost dumpmon]$ python dumpmon.py
Traceback (most recent call last):
File "dumpmon.py", line 12, in <module>
from lib.Pastebin import Pastebin, PastebinPaste
File "/data/apps/dumpmon/lib/Pastebin.py", line 1, in <module>
from .Site import Site
File "/data/apps/dumpmon/lib/Site.py", line 1, in <module>
from Queue import Queue
ImportError: No module named 'Queue'
I'm very confused about whether dumpmon requires Py3 or Py2 since the Twitter library doesn't seem to work properly in Py2 but does in Py3.
Python 3.3.2
Twitter 1.10.0
beautifulsoup4 4.2.1
requests 1.2.3
pymongo 2.5.2
I found this: https://code.google.com/p/python-llfuse/issues/detail?id=19 saying that Queue has been renamed to queue in Python 3.
I'm very confused about whether dumpmon requires Py3 or Py2 since the Twitter library doesn't seem to work properly in Py2 but does in Py3.