├── .gitignore ├── LICENSE ├── README.rst ├── check_ver.sh ├── debian ├── changelog ├── compat ├── control ├── copyright ├── pyversions └── rules ├── examples ├── deferreds │ ├── basic.py │ ├── column.py │ ├── columnfamily.py │ ├── keyspace.py │ ├── sorting.py │ ├── supercolumn.py │ └── supercolumnfamily.py └── inlinecallbacks │ └── basic.py ├── setup.py ├── telephus ├── __init__.py ├── _sasl.py ├── cassandra │ ├── Cassandra.py │ ├── __init__.py │ ├── constants.py │ └── ttypes.py ├── client.py ├── pool.py └── protocol.py └── test ├── __init__.py ├── test_cassandraclient.py └── test_cassandraclusterpool.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | *.sw? 3 | *.cache 4 | _trial_temp 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftx/Telephus/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftx/Telephus/HEAD/README.rst -------------------------------------------------------------------------------- /check_ver.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftx/Telephus/HEAD/check_ver.sh -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftx/Telephus/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftx/Telephus/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftx/Telephus/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/pyversions: -------------------------------------------------------------------------------- 1 | 2.5- 2 | -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftx/Telephus/HEAD/debian/rules -------------------------------------------------------------------------------- /examples/deferreds/basic.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/deferreds/column.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/deferreds/columnfamily.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/deferreds/keyspace.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/deferreds/sorting.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/deferreds/supercolumn.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/deferreds/supercolumnfamily.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/inlinecallbacks/basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftx/Telephus/HEAD/examples/inlinecallbacks/basic.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftx/Telephus/HEAD/setup.py -------------------------------------------------------------------------------- /telephus/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /telephus/_sasl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftx/Telephus/HEAD/telephus/_sasl.py -------------------------------------------------------------------------------- /telephus/cassandra/Cassandra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftx/Telephus/HEAD/telephus/cassandra/Cassandra.py -------------------------------------------------------------------------------- /telephus/cassandra/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftx/Telephus/HEAD/telephus/cassandra/__init__.py -------------------------------------------------------------------------------- /telephus/cassandra/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftx/Telephus/HEAD/telephus/cassandra/constants.py -------------------------------------------------------------------------------- /telephus/cassandra/ttypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftx/Telephus/HEAD/telephus/cassandra/ttypes.py -------------------------------------------------------------------------------- /telephus/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftx/Telephus/HEAD/telephus/client.py -------------------------------------------------------------------------------- /telephus/pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftx/Telephus/HEAD/telephus/pool.py -------------------------------------------------------------------------------- /telephus/protocol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftx/Telephus/HEAD/telephus/protocol.py -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/test_cassandraclient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftx/Telephus/HEAD/test/test_cassandraclient.py -------------------------------------------------------------------------------- /test/test_cassandraclusterpool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftx/Telephus/HEAD/test/test_cassandraclusterpool.py --------------------------------------------------------------------------------