We want to make users of Happybase "just work", so...some ideas: Option 1: A wrapped import module ``` python from gcloud.bigtable import happybase ``` Option 2: Some sort of monkey patching? ``` python from gcloud import bigtable import happybase happybase = bigtable.monkey_patch(happybase) ```