I've been experimenting with the CQL plugin for Python (http://code.google.com/a/apache-extras.org/p/cassandra-dbapi2/) which has support for parameterized queries. From their documentation:
import cql
connection = cql.connect(host, port, keyspace)
cursor = connection.cursor()
cursor.execute("CQL QUERY", dict(kw='Foo', kw2='Bar', etc...))
My question is whether its possible to parameterize and execute the same query multiple times in a loop, and what the methods look like to accomplish that. Sorry but documentation is scant so I'm searching about for an answer...