Anki/anki/__init__.py
2017-08-12 17:04:53 +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] < 5:
raise Exception("Anki requires Python 3.5+")
version="2.1.0beta11" # build scripts grep this line, so preserve formatting
from anki.storage import Collection
__all__ = ["Collection"]