https://github.com/microprediction/timemachines
Predict time-series with one line of code.
https://github.com/microprediction/timemachines
prediction prediction-algorithm predictions predictive-modeling time-series time-series-analysis timeseries timeseries-analysis timeseries-data timeseries-forecasting
Last synced: 15 days ago
JSON representation
Predict time-series with one line of code.
- Host: GitHub
- URL: https://github.com/microprediction/timemachines
- Owner: microprediction
- License: mit
- Created: 2021-01-04T15:38:41.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2026-03-21T16:40:53.000Z (4 months ago)
- Last Synced: 2026-06-14T20:00:14.720Z (27 days ago)
- Topics: prediction, prediction-algorithm, predictions, predictive-modeling, time-series, time-series-analysis, timeseries, timeseries-analysis, timeseries-data, timeseries-forecasting
- Language: Python
- Homepage: https://www.microprediction.com/blog/popular-timeseries-packages
- Size: 6.08 MB
- Stars: 436
- Watchers: 11
- Forks: 54
- Open Issues: 78
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome_time_series_in_python - timemachines
- awesome-time-series - timemachines - series forecasting. (📦 Packages / Python)
- StarryDivineSky - microprediction/timemachines
README
# timemachines ⚠️ DEPRECATED
**`timemachines` is deprecated and has been replaced by [`skaters`](https://github.com/microprediction/skaters).**
`skaters` is a faster, lighter univariate forecasting package that runs in Pyodide. It completely supersedes `timemachines`.

## Migrate
```bash
pip install skaters
```
```python
from skaters import laplace
```
## Compatibility shim
For now, `timemachines` is just a thin shim over `skaters`. It re-exports `laplace` so existing imports keep working, and emits a `DeprecationWarning`:
```python
from timemachines import laplace # still works, but please switch to skaters
```
Everything else that used to live in `timemachines` (the `skaters`/`skatertools` subpackages, the per-package model adapters, evaluation tooling, etc.) has been removed. If you depend on any of it, pin an old release (`timemachines<0.21`) or, better, move to [`skaters`](https://github.com/microprediction/skaters).
## Links
- New package: https://github.com/microprediction/skaters
- Docs: https://skaters.microprediction.org/
MIT licensed.