1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Copyright 2011 Facundo Batista
#
# This program is free software: you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 3, as published
# by the Free Software Foundation.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranties of
# MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
# PURPOSE. See the GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License along
# with this program. If not, see <http://www.gnu.org/licenses/>.
#
# For further info, check https://launchpad.net/encuentro
"""The package."""
import sys
IMPORT_MSG = u"""
ERROR! Problema al importar %(module)r
Probablemente falte instalar una dependencia. Se necesita tener instalado
el paquete %(package)r versiĆ³n %(version)s o superior.
"""
class NiceImporter(object):
"""Show nicely successful and errored imports."""
def __init__(self, module, package, version):
self.module = module
self.package = package
self.version = version
def __enter__(self):
pass
def _get_version(self):
"""Get the version of a module."""
mod = sys.modules[self.module]
for attr in ('version', '__version__', 'ver'):
v = getattr(mod, attr, None)
if v is not None:
return v
return "<desconocida>"
def __exit__(self, exc_type, exc_value, traceback):
if exc_type is None:
version = self._get_version()
print "Modulo %r importado ok, version %r" % (self.module, version)
else:
print IMPORT_MSG % dict(module=self.module, package=self.package,
version=self.version)
# test some packages! gtk and twisted are controlled in main.py, as they
# import order is critical because of the reactor
# pylint: disable=W0611
with NiceImporter('xdg', 'python-xdg', '0.15'):
import xdg
with NiceImporter('mechanize', 'python-mechanize', '0.1.11'):
import mechanize
|