--- id: sktime version: "1.1.0" license: BSD 3-Clause License Copyright (c) 2019 - present, The sktime developers. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided… (full text in the JSON record) license_treatment: permissive maintenance: active --- # sktime — A unified framework for machine learning with time series License: permissive · Maintenance: active · Downloads: 1.2M/mo ## What it is and what it does sktime is a Python library that unifies multiple time series machine learning tasks under a single, scikit-learn compatible API. It provides dedicated algorithms for forecasting, time series classification, clustering, anomaly and changepoint detection, regression, and transformations, along with tools for pipelining, ensembling, and hyperparameter tuning. The library also provides interfaces to related libraries. The package is designed for data scientists and researchers working with temporal data who want a consistent interface across different time series problems. It supports Python 3.10 through 3.14 and has seven runtime dependencies, all standard scientific Python libraries. Active development and a large community (9920 GitHub stars) suggest ongoing maintenance and feature expansion. Use it for: - Build and compare multiple forecasting models using a unified API without learning different library conventions - Apply time series classification algorithms to multivariate sensor or financial data with scikit-learn compatible pipelines - Detect anomalies or changepoints in streaming or batch time series data using dedicated detection algorithms - Cluster time series data using distance-based or feature-based methods with consistent model interfaces - Combine forecasting or classification with feature transformations and hyperparameter tuning in a single pipeline ## Worth the install? AI-flagged interpretation of the facts above — verify before relying. sktime provides a unified interface for time series machine learning tasks including forecasting, classification, clustering, anomaly detection, and regression, with scikit-learn compatible tools for model building and validation. Yes. sktime is actively maintained, has no known vulnerabilities, low install friction, and a permissive BSD 3-Clause License. It fills a genuine gap by providing a unified interface for diverse time series tasks that would otherwise require learning multiple library APIs. Suitable for production use in forecasting, classification, and detection workflows. ## Install pip install sktime uv add sktime poetry add sktime ## Installing sktime Before you install: Low install friction with a pure Python wheel distribution. Active maintenance with a release 17 days old and 9920 repository stars. Depends on well-established libraries: joblib, numpy, pandas, scikit-learn, and scipy. License in practice: BSD 3-Clause License permits commercial and private use with minimal restrictions—you may use, modify, and distribute the software provided you retain copyright notices and disclaimers. Quickstart: pip install sktime from sktime.forecasting.naive import NaiveForecaster forecaster = NaiveForecaster() forecaster.fit(y_train) y_pred = forecaster.predict(fh=[1, 2, 3]) Verify before relying: - Whether all time series tasks (forecasting, classification, clustering, detection, regression) are equally mature or if some remain experimental - Performance characteristics and scalability limits for large time series datasets - Compatibility details with specific versions of scikit-learn and other major dependencies ## Package facts - License: BSD 3-Clause License Copyright (c) 2019 - present, The sktime developers. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided… (full text in the JSON record) (permissive) - Python support: supports_current - Install friction: low - Maintenance: active - Downloads: 1.2M/month (top 5,000 on PyPI) - Known vulnerabilities: none known ## Tags time series forecasting, time series classification, time series machine learning, unified time series interface, time series anomaly detection, time series clustering, time series regression, time-series, forecasting, scikit-learn-compatible [View on SkillFed](https://skillfed.io/packages/sktime) · [View on PyPI](https://pypi.org/project/sktime/)