In LR Classifier, he probabilities describing the possible outcomes of a single trial are modeled using a logistic function. It is implemented in the linear_model library
from sklearn.linear_model import LogisticRegression
The sklearn LR implementation can fit binary, One-vs- Rest, or multinomia...