anki/qt/aqt/pinnedmodules.py

54 lines
1.1 KiB
Python
Raw Normal View History

2019-02-05 04:59:03 +01:00
# Copyright: Ankitects Pty Ltd and contributors
2018-12-14 11:32:53 +01:00
# License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
2020-12-18 10:55:52 +01:00
# pylint: disable=import-error,unused-import
"""
2018-12-14 11:32:53 +01:00
# this file is imported as part of the bundling process to ensure certain
# modules are included in the distribution
2020-12-18 10:55:52 +01:00
isort:skip_file
"""
2019-12-20 10:19:03 +01:00
# included implicitly in the past, and relied upon by some add-ons
import cgi
import decimal
2020-11-18 04:22:51 +01:00
import gettext
2019-12-20 10:19:03 +01:00
# useful for add-ons
import logging
import logging.config
import logging.handlers
2018-12-14 11:32:53 +01:00
# required by requests library
import queue
2019-12-20 10:19:03 +01:00
import typing
import uuid
2020-12-18 10:55:52 +01:00
# other modules we require that may not be automatically included
try:
import PyQt6.QtSvg # type: ignore
import PyQt6.QtMultimedia # type: ignore
except:
import PyQt5.QtSvg # type: ignore
import PyQt5.QtMultimedia # type: ignore
2020-05-08 09:29:09 +02:00
import socks
2018-12-14 11:32:53 +01:00
# legacy compat
import anki.storage
import anki.sync
2021-02-07 23:48:42 +01:00
import anki.rsbackend
2020-12-18 10:55:52 +01:00
# platform-specifics
from anki.utils import is_lin, is_mac, is_win
2018-12-14 11:32:53 +01:00
if is_win:
2020-11-06 03:01:37 +01:00
# external module access
2018-12-14 11:32:53 +01:00
import pythoncom
import pywintypes
import win32com
if is_lin:
2020-11-06 03:01:37 +01:00
# file locking
import fcntl