trombi

CouchDB client for Tornado
Download

trombi Ranking & Summary

Advertisement

  • Rating:
  • License:
  • MIT/X Consortium Lic...
  • Publisher Name:
  • Inoi Oy
  • Publisher web site:
  • http://inoi.fi

trombi Tags


trombi Description

CouchDB client for Tornado Trombi is an asynchronous CouchDB client for Tornado.trombi is Finnish for a small tornado, occuring in Europe.Example programimport trombifrom tornado.ioloop import IOLoopdef main(): server = trombi.Server('http://localhost:5984') server.get('my_database', database_created, create=True)def database_created(db): if db.error: print 'Unable to create database!' print db.msg ioloop.stop() else: db.set('my_document', {'testvalue': 'something'}, doc_created)def doc_created(doc): if doc.error: print 'Unable to create document!' print doc.msg else: print 'Doc added!' ioloop.stop()if __name__ == '__main__': ioloop = IOLoop.instance() ioloop.add_callback(main) ioloop.start()More usage examples can be found in tests. Requirements: · Python · Tornado


trombi Related Software