How to Use scikit-learn Methods with statsmodels Estimators

Sometimes you want to use estimators from one package but methods from another. Maybe, like me, you want to use scikit-learn's grid searching cross validation function with an estimator from statsmodels. These two don't work together straight out of the box, but by writing a quick wrapper, you can make a statsmodels estimator play nice with scikit-learn. »