Anki/anki/__init__.py
2017-08-25 16:39:21 +10:00

12 lines
402 B
Python

# -*- coding: utf-8 -*-
# Copyright: Damien Elmes <anki@ichi2.net>
# License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
import sys
if sys.version_info[0] < 3 or sys.version_info[1] < 6:
raise Exception("Anki requires Python 3.6+")
version="2.1.0beta12" # build scripts grep this line, so preserve formatting
from anki.storage import Collection
__all__ = ["Collection"]