This afternoon I managed to get restkit 4.2.1 and couchdbkit 0.6.4 working with Python 3.2 for at least this to print out my document.
client_opts = {}
client_opts["ca_certs"] = "ca.crt"
client_opts["certfile"] = "client.crt"
client_opts["keyfile"] = "client.key"
server = Server(uri="
https://someserver:6984", **client_opts)
db = server.get_db("a_database")
doc = db.get("a_doc_id")
print(doc)
If it is of interest I can fork the repo on github with my changes. I've not done much Python so I can't say much about the correctness of my code and I'm pretty sure some of it would break compatibility with Python2.x.
Regards,
James