Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tomconte/samplecassandradc
This is an example showing how to access a distributed Cassandra cluster from a Python app using Flask.
https://github.com/tomconte/samplecassandradc
Last synced: 12 days ago
JSON representation
This is an example showing how to access a distributed Cassandra cluster from a Python app using Flask.
- Host: GitHub
- URL: https://github.com/tomconte/samplecassandradc
- Owner: tomconte
- Created: 2014-06-23T12:17:52.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2014-06-23T14:06:03.000Z (over 10 years ago)
- Last Synced: 2024-10-26T09:47:19.486Z (25 days ago)
- Language: Python
- Size: 141 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
SampleCassandraDC
=================This is an example showing how to access a distributed Cassandra cluster from a Python app using Flask.
To run it you will need Python and some pre-reqs for the Cassandra driver:
```
apt-get install python-pip
apt-get install python-dev
apt-get install libev4 libev-dev
```Then you can use pip to install the [DataStax Python driver](https://github.com/datastax/python-driver) for Cassandra and [Flask](http://flask.pocoo.org/):
```
pip install blist
pip install cassandra-driver
pip install Flask
```