CT_SCHOOLS

    A python library for getting profile data on ct schools from fuzzy
    school names

FUNCTIONS

    All functions below return a DataFrame or None. See demo/*.py to see
    them in action.  

    * schools.closest(SCHOOL_NAME_STRING, lim=n) - return the closest n
      matches (defaults to 1 match) for the given school name.

    * schools.exact(SCHOOL_NAME_STRING) - return schools with the exact
      (case-insensitive) school anep

    * schools.contains(SCHOOL_NAME_STRING) - return schools whose name
      contains the given string

    * schools.fuzz(SCHOOL_NAME, ratio=75) - return schools with names above
      the given fuzzywuzzy ratio (defaults to 75)

