Инициализация проекта + выгрузка на гит

This commit is contained in:
2025-04-24 00:42:35 +03:00
commit 80eb5393a9
1098 changed files with 183214 additions and 0 deletions
@@ -0,0 +1,6 @@
__all__ = ["Mapping", "Sequence"]
try:
from collections.abc import Mapping, Sequence
except ImportError:
from collections import Mapping, Sequence