Python Table engine binding for Tokyo Cabinet - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T19:38:56Z http://stackoverflow.com/feeds/question/601865 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/601865/python-table-engine-binding-for-tokyo-cabinet 5 Python Table engine binding for Tokyo Cabinet Bharani 2009-03-02T10:18:23Z 2009-10-06T15:46:35Z <p>I am looking for python bindings for Table engine of Tokyo cabinet. I tried <a href="http://pypi.python.org/pypi/pytc" rel="nofollow">Pytc</a> but can only find Hash and B-tree engine support. Is there any other bindings available?</p> http://stackoverflow.com/questions/601865/python-table-engine-binding-for-tokyo-cabinet/601920#601920 1 Answer by Van Gale for Python Table engine binding for Tokyo Cabinet Van Gale 2009-03-02T10:49:03Z 2009-03-02T10:49:03Z <p>The only other one I know of is a fork of pytc but it looks like they have only done some refactoring and documentation work, so probably still only hash and b-tree support:</p> <p><a href="http://github.com/rsms/tc/tree/master" rel="nofollow">tc</a></p> <p>If this doesn't work you are probably out of luck. I think all the tyrant bindings only use the hash engine.</p> http://stackoverflow.com/questions/601865/python-table-engine-binding-for-tokyo-cabinet/732178#732178 4 Answer by Parand for Python Table engine binding for Tokyo Cabinet Parand 2009-04-08T22:41:45Z 2009-04-08T22:41:45Z <p>I was in contact with the author of tc and he told me the following:</p> <blockquote> <p>Currently, the table (tdb) driver exist in the <a href="http://github.com/rsms/tc/blob/master/src/TDB.c" rel="nofollow">master branch</a> (<a href="http://github.com/rsms/tc/blob/master/lib/tc/test/tdb.py" rel="nofollow">unit tests</a>) and the <a href="http://github.com/rsms/tc/tree/fdb%5Frewrite" rel="nofollow">fdb driver</a> is being developed in a separate branch.</p> </blockquote> <p>I tried the table driver for a small test with success, am planning on trying it on larger tables soon.</p> http://stackoverflow.com/questions/601865/python-table-engine-binding-for-tokyo-cabinet/897843#897843 6 Answer by uggedal for Python Table engine binding for Tokyo Cabinet uggedal 2009-05-22T13:25:52Z 2009-05-24T21:38:04Z <p>Here is an implementation of search of table engine using PyTyrant:</p> <p><a href="http://github.com/ericflo/pytyrant/tree/master" rel="nofollow">http://github.com/ericflo/pytyrant/tree/master</a></p> http://stackoverflow.com/questions/601865/python-table-engine-binding-for-tokyo-cabinet/1312908#1312908 1 Answer by Andy Mikhailenko for Python Table engine binding for Tokyo Cabinet Andy Mikhailenko 2009-08-21T16:18:21Z 2009-08-21T16:18:21Z <p>There's also a decent Tokyo Tyrant API called <a href="http://code.google.com/p/pyrant" rel="nofollow">Pyrant</a>. It is actually a rewrite of PyTyrant (including <a href="http://github.com/ericflo/pytyrant/tree/master" rel="nofollow">Eric Florenzano's fork</a>), if I understand correctly.</p> http://stackoverflow.com/questions/601865/python-table-engine-binding-for-tokyo-cabinet/1526460#1526460 1 Answer by rsms for Python Table engine binding for Tokyo Cabinet rsms 2009-10-06T15:46:35Z 2009-10-06T15:46:35Z <p>My branch of pytc called "tc" do have support for tables (TDB) <a href="http://github.com/rsms/tc" rel="nofollow">http://github.com/rsms/tc</a></p> <p>Basic example:</p> <pre><code>&gt;&gt;&gt; import tc &gt;&gt;&gt; db = tc.TDB("slab.tdb", tc.TDBOWRITER | tc.TDBOCREAT) &gt;&gt;&gt; db.put('some key', {'name': 'John Doe', 'age': '45', 'city': u'Internets'}) &gt;&gt;&gt; rec = db.get('some key') &gt;&gt;&gt; print rec['name'] John Doe </code></pre> <p>Performing queries:</p> <pre><code>&gt;&gt;&gt; import tc &gt;&gt;&gt; db = tc.TDB("slab.tdb", tc.TDBOWRITER | tc.TDBOCREAT) &gt;&gt;&gt; db.put('torgny', {'name': 'Torgny Korv', 'age': '31', 'colors': 'red,blue,green'}) &gt;&gt;&gt; db.put('rosa', {'name': 'Rosa Flying', 'age': '29', 'colors': 'pink,blue,green'}) &gt;&gt;&gt; db.put('jdoe', {'name': 'John Doe', 'age': '45', 'colors': 'red,green,orange'}) &gt;&gt;&gt; q = db.query() &gt;&gt;&gt; q.keys() ['torgny', 'rosa', 'jdoe'] &gt;&gt;&gt; q.filter('age', tc.TDBQCNUMGE, '30') &gt;&gt;&gt; q.keys() ['torgny', 'jdoe'] &gt;&gt;&gt; q.filter('colors', tc.TDBQCSTROR, 'blue') &gt;&gt;&gt; q.keys() ['torgny'] &gt;&gt;&gt; # new query: &gt;&gt;&gt; q = db.query() &gt;&gt;&gt; q.order('name') # Ascending order by default &gt;&gt;&gt; q.keys() ['jdoe', 'rosa', 'torgny'] &gt;&gt;&gt; q.order(type=tc.TDBQONUMASC, column='age') &gt;&gt;&gt; q.keys() ['jdoe', 'torgny', 'rosa'] </code></pre> <p>More examples in the TDB unit test: <a href="http://github.com/rsms/tc/blob/master/lib/tc/test/tdb.py" rel="nofollow">http://github.com/rsms/tc/blob/master/lib/tc/test/tdb.py</a></p>