From e87753361d95de7bf5f9e4b7c33ee584439b8215 Mon Sep 17 00:00:00 2001 From: mehbark <terezi@pyrope.net> Date: Tue, 1 Apr 2025 12:42:11 -0400 Subject: [PATCH] fix: update readme --- readme.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/readme.md b/readme.md index b31dbc5..fd7a3b7 100644 --- a/readme.md +++ b/readme.md @@ -1,9 +1,9 @@ # smogon stats turn <https://smogon.com/stats/> chaos json files into [SQLite](https://sqlite.org) databases -you can find pre-generated dbs at <https://pyrope.net/mon/stats> (currently only 2025-02), and you can [fiddle](https://sqlite.org/fiddle) with them in your browser or on your own computer. +you can find pre-generated dbs at <https://pyrope.net/mon/stats>, and you can [fiddle](https://sqlite.org/fiddle) with them in your browser or on your own computer. -## examples +## examples (2025-02) ```sh smogon-stats gen9ou-1500.json -o gen9ou-1500.sqlite sqlite3 gen9ou-1500.sqlite -markdown "SELECT name, format('%.2f%%', usage * 100) as usage FROM mon WHERE mon.usage > 0.04 ORDER BY mon.usage DESC LIMIT 10"