Revision: d6d0fc0cdab7
Branch: default
Author:
djc.o...@gmail.com
Date: Tue Jul 15 20:39:26 2014 UTC
Log: Deleted wiki page GettingStarted through web user interface.
http://code.google.com/p/couchdb-python/source/detail?r=d6d0fc0cdab7&repo=wiki
Deleted:
/GettingStarted.wiki
=======================================
--- /GettingStarted.wiki Wed Dec 9 17:55:34 2009 UTC
+++ /dev/null
@@ -1,18 +0,0 @@
-#summary Introduction to using couchdb-python.
-#labels Featured
-
-= Introduction =
-
-{{{
->>> import couchdb
->>> couch = couchdb.Server()
->>> db = couch.create('test')
->>> db
-<Database 'test'>
->>> db['foo'] = {'bar': 'test'}
->>> db['foo']
-<Document 'foo'@'1-1d1b1ba13d97badec02a57adb942cd42' {'bar': 'test'}>
->>> doc = db['foo']
->>> db.delete(doc)
->>> couch.delete('test')
-}}}