py-elevator is a python client for Elevator, a Key-Value store written in Python and based on levelDB, allows high performance on-disk bulk read/write.
The current API seems to be based on py-leveldb rather than on Elevator. I don't think that's a good idea. If Elevator has a command X, I except the client to have a method Elevator.x.
Also, if we want to follow the PEP8 we shouldn't have Elevator.Get but Evelator.get. It's coherent with Plyvel's API.
The current API seems to be based on py-leveldb rather than on Elevator. I don't think that's a good idea. If Elevator has a command
X
, I except the client to have a methodElevator.x
.Also, if we want to follow the PEP8 we shouldn't have
Elevator.Get
butEvelator.get
. It's coherent with Plyvel's API.