algopy/__init__.py
"""
AlgoPy: A library for many different algorithms and other utilities.
"""
from . import find, log, validate, convert, faker, sort, binary_tree
find = find.Find
log = log.Log
validate = validate.Validate
convert = convert.Convert
faker = faker.Faker
sort = sort.Sort
bt = binary_tree.BinaryTree