Hwrapper
Hwrapper is a python framework for hbase rest api
...Creating a table
hwrapper=Hwrapper()
hwrapper.connectionParameters("host","port", False) // third argument set to false if you are not using https
hwrapper.setAcceptType("json")
columnFamilies={"cf","cf1"}
hwrapper.create_table("table_name",columnFamilies)
get Row data by ID (decoded base64 values)
hwrapper.get_RowBy_ID("0000000-120529115546748") // outputs list of dicts, dicts contain column names and values
Dropping a table
hwrapper.drop_table("table_name")
Displaying table schema
hwrapper.table_schema("table_name")
Listing all tables from hbase
hwrapper.list_tables()