You can edit almost every page by Creating an account and confirming your email.

Kept on Wikipedia:pycassa

From EverybodyWiki Bios & Wiki


pycassa is a client library for Apache Cassandra.[1]

It is a Python client library having following features:

Like Apache Cassandra, pycassa is open-source.[1]

Code example

The following code adds the user name with the corresponding password to the column families (pycassa.ColumnFamily) USER and USERNAME:[2]

username = "jericevans"
password = "**********"
useruuid = str(uuid())
columns = {"id": useruuid, "username": username, "password": password}
USER.insert(useruuid, columns)
USERNAME.insert(username, {"id": useruuid})

References

  1. 1.0 1.1 "pycassa". github. Retrieved 2011-03-18.
  2. "Cassandra By Example: Tying it all together". Rackspace. Archived from the original on 2011-02-21. Retrieved 2011-03-18. Unknown parameter |url-status= ignored (help)


External links



This article "Pycassa" is from Wikipedia. The list of its authors can be seen in its historical and/or the page Edithistory:Pycassa. Articles copied from Draft Namespace on Wikipedia could be seen on the Draft Namespace of Wikipedia and not main one.