Hotfix: Import Fixes
When the import chain on the library was being worked on, a few ambiguous names slipped through the cracks. This led to some confusing names between the package.module and the module relative itself. Because trakerr.trakerr existed, when initialized it looked for TrakerrHandler in the trakerr module and not in the trakerr package to find the TrakerrHandler class. Thing is, python 2 fell back to general relative imports, which python 3 doesn't support. This is now fixed!
Welcome to the fold python 3.x users!