I'm new to both Cassandra and Python.
I've downloaded and installed Cassandra as described in this article.
So, I have it in my PATH and I have also added it to my PYTHONPATH (not sure if I need this).
When I run test.py which contains:
import sys
print sys.path
from cassandra import cluster
It prints out PATH which contains
/Users/[username]/Downloads/apache-cassandra-1.0.9/bin
which is where my cassandra bin directory is located. Is there something else I'm supposed to do?