summaryrefslogtreecommitdiff
path: root/src/leap/common/__init__.py
blob: a5ea1971123a76be586d4c0f0cb8d29c711ca3e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import logging

from leap.common import certs
from leap.common import check
from leap.common import files
from leap.common import events

logger = logging.getLogger(__name__)

try:
    import pygeoip
    HAS_GEOIP = True
except ImportError:
    #logger.debug('PyGeoIP not found. Disabled Geo support.')
    HAS_GEOIP = False

__all__ = ["certs", "check", "files", "events"]

__version__ = "0.2.1-dev2"