Swam Guru
Swam Guru

Reputation: 473

python ORM for apache cassandra

Which is the best python ORM based on Flask framework for Apache Cassandra 2.x?

The ORM you are sugesting, should have best features, like that of pycassa or even more. It will be most useful, if you share with examples on any URLs.

Upvotes: 5

Views: 6337

Answers (1)

Adam Holmberg
Adam Holmberg

Reputation: 7365

To my knowledge, the best supported object mapper (possibly the only one) is the cqlengine API maintained with the DataStax Python driver:

https://github.com/datastax/python-driver

http://datastax.github.io/python-driver/object_mapper.html

The core driver is always kept in parity with server features. The cqlengine API lacks some more advanced features at this time, but it's slated for more work.

Upvotes: 9

Related Questions