Skip to content

Instantly share code, notes, and snippets.

View penggrin12's full-sized avatar
๐Ÿ—
hungry

penggrin12

๐Ÿ—
hungry
View GitHub Profile
@penggrin12
penggrin12 / sqlitestorage.py
Last active April 28, 2026 18:34
aiogram 3 (3.27.0) sqlite fsm storage via aiosqlite and orjson
import asyncio
from typing import Any, Mapping, cast
import aiosqlite
import orjson
from aiogram.fsm.state import State
from aiogram.fsm.storage.base import BaseStorage, StateType, StorageKey
class SQLiteStorage(BaseStorage):