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
|
|
|
|
|
|
|
|
# this file is imported as part of the bundling process to ensure certain
|
|
|
|
# modules are included in the distribution
|
|
|
|
|
2019-03-04 08:25:19 +01:00
|
|
|
# pylint: disable=import-error,unused-import
|
2019-03-04 02:22:40 +01:00
|
|
|
|
2019-12-20 10:19:03 +01:00
|
|
|
# included implicitly in the past, and relied upon by some add-ons
|
|
|
|
import cgi
|
|
|
|
import decimal
|
2019-12-23 01:31:47 +01:00
|
|
|
|
2019-12-20 10:19:03 +01:00
|
|
|
# useful for add-ons
|
|
|
|
import logging
|
|
|
|
import logging.config
|
|
|
|
import logging.handlers
|
2019-12-23 01:31:47 +01:00
|
|
|
|
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
|
|
|
|
|
|
|
|
import PyQt5.QtSvg
|
2020-05-08 09:29:09 +02:00
|
|
|
import socks
|
2018-12-14 11:32:53 +01:00
|
|
|
|
2020-02-19 10:14:14 +01:00
|
|
|
from anki.utils import isLin, isWin
|
2018-12-14 11:32:53 +01:00
|
|
|
|
|
|
|
# external module access in Windows
|
|
|
|
if isWin:
|
|
|
|
import pythoncom
|
|
|
|
import win32com
|
|
|
|
import pywintypes
|
2020-02-19 10:14:14 +01:00
|
|
|
|
|
|
|
if isLin:
|
|
|
|
import fcntl
|