summaryrefslogtreecommitdiffstats
path: root/testing/mozbase/mozprofile/mozprofile/__init__.py
blob: 96bf1020bc0239baf3c2404bf9fa0f6e47ddb648 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# flake8: noqa
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this file,
# You can obtain one at http://mozilla.org/MPL/2.0/.

"""
To use mozprofile as an API you can import mozprofile.profile_ and/or the AddonManager_.

``mozprofile.profile`` features a generic ``Profile`` class.  In addition,
subclasses ``FirefoxProfile`` and ``ThundebirdProfile`` are available
with preset preferences for those applications.
"""

from addons import *
from cli import *
from diff import *
from permissions import *
from prefs import *
from profile import *
from view import *
from webapps import *