File: __init__.py

package info (click to toggle)
electrum 4.0.9-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 35,248 kB
  • sloc: python: 222,785; sh: 165; java: 73; javascript: 10; makefile: 9
file content (839 lines) | stat: -rw-r--r-- 25,843 bytes parent folder | download | duplicates (4)
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
#!/usr/bin/env python
# -*- coding: utf-8 -*-

"""HelpDev - Extracts information about the Python environment easily.

Authors:
    - Daniel Cosmo Pizetta <daniel.pizetta@usp.br>

Since:
    2019/04/16

License:
    MIT

"""

__version__ = "0.7.1"

import copy
import os
import platform
import re
import socket
import subprocess
import sys
import time
import warnings

if sys.version_info >= (3, 8):
    from importlib import metadata as importlib_metadata
else:
    import importlib_metadata  # pylint: disable=import-error

if sys.version_info >= (3, 4):
    import importlib.util

try:
    from urllib.request import urlopen
    from urllib.parse import urlparse
except ImportError:
    from urlparse import urlparse
    from urllib2 import urlopen

# To make FileNotFoundError works on Python 2 and 3
try:
    FileNotFoundError2and3 = FileNotFoundError
except NameError:
    FileNotFoundError2and3 = OSError


QT_BINDINGS = ['PyQt4', 'PyQt5', 'PySide', 'PySide2']
"""list: values of all Qt bindings to import."""

QT_ABSTRACTIONS = ['qtpy', 'pyqtgraph', 'Qt']
"""list: values of all Qt abstraction layers to import."""

URLS = {
    'PyPI': 'https://pypi.python.org/pypi/pip',
    'Conda': 'https://repo.continuum.io/pkgs/free/',
    'GitLab': 'https://gitlab.com',
    'GitHub': 'https://github.com',
    'Google': 'https://google.com'
}


def _run_subprocess_split(command):
    """Run command in subprocess and return the splited output.

    Returns:
        str: Splited output from command execution.
    """

    output = subprocess.check_output(command, shell=False)

    if sys.version_info >= (3, 0):
        output = str(output, 'utf-8').strip()
    else:
        output = unicode(output, 'utf-8').strip()  # noqa, pylint: disable=undefined-variable

    return output


def print_output(info_dict):
    """Print output in a nested list format."""
    for key, sub_dict in info_dict.items():
        print('* {:-<79}'.format(key))
        for sub_key, sub_value in sub_dict.items():
            print('    - {:.<30} {}'.format(sub_key, sub_value))


def filter_packages(dict_packages, expression):
    """Filter the dict_packages with expression regex.

    In the expression, each item separated by comma is splitted and then
    surrounded parenthesis (i.e. group), then joined with OR (``|``).
    The expressions are finally started to match the begin until the
    end ignoring case (``i``). See the example below ::

        expression = "sphinx.*,qtpy,PYQT5"


    Then it will be processed resulting in ::

        expression = "(?i:^((sphinx.*)|(qtpy)|(PYQT5))$)"


    If the expression of all of them not match with the package name,
    this package is removed from the dict (a copy of it).

    Args:
        dict_packages (dict): Dictionary with package_name:version_number.
        expression (str): Regular expression separated by commas.

    Returns:
        dict(rst): Filtered dict with that matches the expression.
    """

    expression_list = ['(' + item + ')' for item in expression.split(',')]
    expression_str = '|'.join(expression_list)
    compiled_exp = re.compile('(?i:^(' + expression_str + ')$)')
    cp_dict_packages = copy.deepcopy(dict_packages)

    for key in dict_packages.keys():
        match = re.search(compiled_exp, key)
        if not match:
            del cp_dict_packages[key]

    return cp_dict_packages


def customize(package):
    """Get the custom filter from the package imported.

    This is a way to promote a standard format to get a customized information
    from a specific package. This function try to import the package and
    run the public method ``get_custom_helpdev(help_dev_version='')`` from
    that package which gives a customized filter to provide the results.

    For example, this line ::

        info_dict = helpdev.customize('spyder')

    will try this ::

        from spyder import get_custom_helpdev
        custom_filter = get_custom_helpdev(helpdev.__version__)

    Then, it will apply that filter.

    Args:
        package (str): Import name to check installation.

    Returns:
        dict(str): Customized information from imported packages.
    """

    info = {'REPORT': {}}

    # Only contains installed packages
    installed = check_installed([package])

    if installed:
        sys_path = sys.path
        try:
            mod = importlib.import_module(package)
            custom_filter = mod.custom_helpdev(__version__)
        except AttributeError:
            info['REPORT'] = {'Status': "Unknown, package '{}' does not "
                                        "provide 'custom_helpdev()' "
                                        "function.".format(package)}
        except Exception as err:  # noqa:W0703, pylint: disable=broad-except
            info['REPORT'] = {'Status': "Error, '{}'".format(str(err))}
        else:
            info['REPORT'] = {'Filter': "{}".format(custom_filter)}
            for item in custom_filter:
                if isinstance(item, str):
                    info['REPORT'][item] = 'str'
                elif isinstance(item, tuple):
                    info['REPORT'][item[0]] = 'tuple'
                else:
                    msg = "Unknown, filter has a unknown item/format '{}'."
                    info['REPORT'] = {'Status': msg.format(item)}
                    break

        sys.path = sys_path
    else:
        info['REPORT'] = {'Status': "Not installed, package '{}'.".format(package)}

    return info


def check_installed(import_list):
    """Return a list of installed packages from import_list.

    Note that the strings in the list must match the import name, e.g.
    pyqt5 will not work as the import name is PyQt5.

    Args:
        import_list (list(str)): List of of import names to check installation.

    Returns:
        list(str): Filtered list of installed packages.
    """

    # Disable warnings here
    warnings.filterwarnings("ignore")

    import_list_return = copy.deepcopy(import_list)
    # Using import_list_return var in for, does not work in py2.7
    # when removing the element, it reflects on for list
    # so it skips next element
    for current_import in import_list:
        spec = True
        # Copy the sys path to make sure to not insert anything
        sys_path = sys.path

        # Check import
        if sys.version_info >= (3, 4):
            spec = bool(importlib.util.find_spec(current_import))
        else:
            try:
                __import__(current_import)
            except RuntimeWarning:
                spec = True
            except Exception:  # noqa:W0703, pylint: disable=broad-except
                spec = False
            else:
                spec = True

        if not spec:
            # Remove if not available
            import_list_return.remove(current_import)

        # Restore sys path
        sys.path = sys_path

    # Restore warnings
    warnings.resetwarnings()

    return import_list_return


def check_hardware():
    """Check hardware information.

    It uses subprocess commands for each system along with ``psutil`` library.
    So you need to install psutil library.

    Returns:
        dict(str): Dictionary filled with respective information.
    """

    cpu = ''

    # mac
    if sys.platform.startswith('darwin'):
        all_info = _run_subprocess_split(['sysctl', '-a'])
        for line in all_info.split("\n"):
            if "brand_string" in line:
                cpu = line.split(": ")[1]
                break
    # linux
    elif sys.platform.startswith('linux'):
        all_info = _run_subprocess_split(['lscpu'])
        for line in all_info.split("\n"):
            if "Model name:" in line:
                cpu = line.split(':')[1]
                break
    # windows
    elif sys.platform.startswith('win32'):
        all_info = _run_subprocess_split(['wmic', 'cpu', 'get', 'name'])
        if "Name" in all_info:
            cpu = all_info.replace('Name', '')

    # Get info about memory
    try:
        import psutil  # analysis: ignore, pylint: disable=import-outside-toplevel
    except ImportError:
        mem = 'Unknown, needs psutil library'
        swap = swap_free = mem_free = mem
    else:
        mem = str(int(psutil.virtual_memory().total / 1000000)) + " MB"
        mem_free = str(int(psutil.virtual_memory().free / 1000000)) + " MB"
        swap = str(int(psutil.swap_memory().total / 1000000)) + " MB"
        swap_free = str(int(psutil.swap_memory().free / 1000000)) + " MB"

    info = {'HARDWARE':
            {'Machine': platform.machine(),
             'Processor': cpu.lstrip(),
             'Total Memory': mem,
             'Free Memory': mem_free,
             'Total Swap': swap,
             'Free Swap': swap_free
             }
            }

    return info


def check_os():
    """Check operating system information.

    Returns:
        dict(str): Dictionary filled with respective information.
    """

    info = {'OPERATING SYSTEM':
            {'System': platform.system(),
             'Release': platform.release(),
             'Platform': platform.platform(),
             'Version': platform.version()
             }
            }

    return info


def check_thread():
    """Check threads information.

    Get information from ``sys`` library.

    Returns:
        dict(str): Dictionary filled with respective information.
    """
    info = {'THREADS': {}}

    if sys.version_info >= (3, 3):
        info['THREADS'].update(
            {'Version': sys.thread_info.version,
             'Name': sys.thread_info.name,
             'Lock': sys.thread_info.lock,
             })
    else:
        info['THREADS'].update(
            {'Version': 'Unknown, needs Python>=3.3',
             'Name': 'Unknown, needs Python>=3.3',
             'Lock': 'Unknown, needs Python>=3.3'
             })

    return info


def check_float():
    """Check float limits information.

    Get information from ``sys`` library.

    Returns:
        dict(str): Dictionary filled with respective information.
    """

    info = {'FLOAT':
            {'Epsilon': sys.float_info.epsilon,
             'Digits': sys.float_info.dig,
             'Precision': sys.float_info.mant_dig,
             'Maximum': sys.float_info.max,
             'Maximum Exp.': sys.float_info.max_exp,
             'Max. 10 Exp.': sys.float_info.max_10_exp,
             'Minimum': sys.float_info.min,
             'Miminim Exp.': sys.float_info.min_exp,
             'Min. 10 Exp.': sys.float_info.min_10_exp,
             'Radix': sys.float_info.radix,
             'Rounds': sys.float_info.rounds
             }
            }

    return info


def check_int():
    """Check int limits information.

    Get information from ``sys`` library.

    Returns:
        dict(str): Dictionary filled with respective information.
    """
    info = {'INTEGER': {}}

    if sys.version_info >= (3, 1):
        info['INTEGER'].update(
            {'Bits per Digit': sys.int_info.bits_per_digit,
             'Size of Digit': sys.int_info.sizeof_digit
             }
        )
    else:
        info['INTEGER'].update(
            {'Bits per Digit': 'Unknown, needs Python>=3.1',
             'Size of Digit': 'Unknown, needs Python>=3.1'
             }
        )
    return info


def check_numbers():
    """Check numbers related float and integer information."""
    info = {}
    info.update(check_float())
    info.update(check_int())
    return info


def check_network(timeout):
    """Check network connection for URLS list with timeout.

    Args:
        timeout (int): timout in seconds.

    Returns:
        dict(str): Dictionary filled with respective information.
    """

    info = {'NETWORK':
            {'Timeout': str(timeout) + 's'
             }
            }

    if timeout > 0:
        socket.setdefaulttimeout(timeout)
    else:
        info['NETWORK']['Timeout'] = 'Unknown, must be > 0s'
        return info

    for name, url in URLS.items():
        if url.lower().startswith('http'):
            urlinfo = urlparse(url)
            error = False

            # DNS
            dns_err = ''
            start = time.time()

            try:
                _ = socket.gethostbyname(urlinfo.netloc)
            except Exception as err:  # noqa:W0703 , pylint: disable=broad-except
                dns_err = str(err)
                info['NETWORK'][name] = "DNS ERROR: {}s URL: {}".format(dns_err, url)
                error = True
            dns_elapsed = time.time() - start

            # LOAD
            load_err = ''
            start = time.time()
            try:
                _ = urlopen(url, timeout=timeout)  # nosec: url is tested to skip non http
            except Exception as err:  # noqa:W0703 , pylint: disable=broad-except
                load_err = str(err)
                info['NETWORK'][name] = "LOAD ERROR: {}s URL: {}".format(load_err, url)
                error = True
            load_elapsed = time.time() - start

            if not error:
                info['NETWORK'][name] = "DNS: {:.4f}s LOAD: {:.4f}s URL: {}".format(dns_elapsed,
                                                                                    load_elapsed,
                                                                                    url)

    return info


def check_python():
    """Check Python information.

    It is Python environment dependent. Get information from ``platform``
    and ``sys`` libraries.

    Returns:
        dict(str): Dictionary filled with respective information.
    """

    info = {'PYTHON DISTRIBUTION':
            {'Version': platform.python_version(),
             'C Compiler': platform.python_compiler(),
             'C API Version': sys.api_version
             }}

    if sys.version_info >= (3, 3):
        info['PYTHON DISTRIBUTION'].update(
            {'Implementation': sys.implementation.name,
             'Implementation Version': '{}.{}.{}'.format(sys.implementation.version.major,
                                                         sys.implementation.version.minor,
                                                         sys.implementation.version.micro)
             })
    else:
        info['PYTHON DISTRIBUTION'].update(
            {'Implementation': 'Unknown, needs Python>=3.3',
             'Implementation Version': 'Unknown, needs Python>=3.3'
             })

    return info


def check_python_packages(edit_mode=False, packages=None):
    """Check PIP installed packages filtering for packages.

    Returns:
        dict(str): Dictionary filled with respective information.
    """

    all_packages = ''

    if edit_mode:
        all_packages = _run_subprocess_split(['pip', 'list', '-e'])
    else:
        # list all packages, including in editable mode
        all_packages = _run_subprocess_split(['pip', 'list'])

    # split lines and remove table name
    line_packages = all_packages.split("\n")[2:]

    info = {'PYTHON PACKAGES': {}}

    # clean spaces, create a list and insert in the dictionary
    for line in line_packages:
        splitted = line.split(' ')
        cleaned = ' '.join(splitted).split()
        info['PYTHON PACKAGES'][cleaned[0]] = cleaned[1]

    if packages:
        info['PYTHON PACKAGES'] = filter_packages(info['PYTHON PACKAGES'], packages)

    return info


def check_conda():
    """Check Conda Python distribution information.

    It is Python/Conda environment dependent.

    Returns:
        dict(str): Dictionary filled with respective information.
    """

    info = {'CONDA DISTRIBUTION': {}}

    try:
        all_info = _run_subprocess_split(['conda', 'info'])
    except (subprocess.CalledProcessError, FileNotFoundError2and3):
        info['CONDA DISTRIBUTION']['Status'] = 'Conda not available!'
    else:
        for line in all_info.split("\n"):
            if "conda version : " in line:
                info['CONDA DISTRIBUTION']['Version'] = line.split(" : ")[1]
            elif "conda-build version : " in line:
                info['CONDA DISTRIBUTION']['Build'] = line.split(" : ")[1]

    return info


def check_conda_packages(edit_mode=False, packages=None):
    """Check conda inslalled packages information filtering for packages.

    It is Python/Conda environment dependent.

    Returns:
        dict(str): Dictionary filled with respective information.
    """

    info = {'CONDA PACKAGES': {}}
    all_packages = ''

    try:
        if not edit_mode:
            all_packages = _run_subprocess_split(['conda', 'list', '--no-pip',
                                                  '--export'])
        else:
            all_packages = _run_subprocess_split(['conda', 'list', '--no-pip',
                                                  '--export', '--develop'])
    except (subprocess.CalledProcessError, FileNotFoundError2and3):
        info['CONDA PACKAGES']['Status'] = 'Conda not available!'
    else:
        # split lines and remove head
        line_packages = all_packages.split("\n")[3:]

        # clean spaces, create a list and insert in the dictionary
        for line in line_packages:
            splitted = line.split('=')
            cleaned = ' '.join(splitted).split()
            info['CONDA PACKAGES'][cleaned[0]] = cleaned[1]

    if packages:
        info['CONDA PACKAGES'] = filter_packages(info['CONDA PACKAGES'], packages)

    return info


def check_qt_bindings():
    """Check all Qt bindings related information.

    Returns:
        dict(str): Dictionary filled with respective information.
    """

    info = {'QT BINDINGS': {}}

    for binding in installed_qt_bindings():
        binding_version, qt_version = qt_binding_information(binding)
        info['QT BINDINGS'][binding + ' Version'] = binding_version
        info['QT BINDINGS'][binding + ' Qt Version'] = qt_version

    if not info['QT BINDINGS']:
        info['QT BINDINGS']['Status'] = 'No Qt binding available!'

    return info


def check_qt_abstractions():
    """Check all Qt abstractions related information.

    Returns:
        dict(str): Dictionary filled with respective information.
    """

    info = {'QT ABSTRACTIONS': {}}

    for abstraction in installed_qt_abstractions():
        abs_v, bind, bind_var, imp_name, status = qt_abstraction_information(abstraction)
        info['QT ABSTRACTIONS'][abstraction + ' Version'] = abs_v
        info['QT ABSTRACTIONS'][abstraction + ' Binding'] = bind
        info['QT ABSTRACTIONS'][abstraction + ' Binding Variable'] = bind_var
        info['QT ABSTRACTIONS'][abstraction + ' Import Name'] = imp_name
        info['QT ABSTRACTIONS'][abstraction + ' Status'] = status

    if not info['QT ABSTRACTIONS']:
        info['QT ABSTRACTIONS']['Status'] = 'No Qt abstractions available!'

    return info


def check_qt():
    """Check Qt related bindings and abstractions information."""
    info = {}
    info.update(check_qt_bindings)
    info.update(check_qt_abstractions)
    return info


def installed_qt_bindings():
    """Return a list of qt bindings available.

    Returns:
        list(str): List filled with respective information.
    """
    return check_installed(import_list=QT_BINDINGS)


def installed_qt_abstractions():
    """Return a list of qt abstraction layers available.

    Returns:
        dict(str): Dictionary filled with respective information.
    """
    return check_installed(import_list=QT_ABSTRACTIONS)


def qt_abstraction_information(import_name):  # noqa:R0912
    """Get abstraction layer version and binding (default or current if in use).

    Note:
        - The name of the installed package can differ from the import name.
          This is an weird thing from PIP/CONDA, e.g, the abstraction 'qt.py'
          is imported as 'Qt'.
        - Since each package is build as it is, sometimes we are not able to
          define its information, e.g, Qt.py is installed but no binding is.
          This will cause an error that, for now, it is impossible to us to
          show any other information about it, e.g, version. We need to deal
          with a better way.
        - This function should be called with pre-defined list of installed
          packages passed throuw import_name, do not use it to try import.

    Todo:
        - Add info installed (y/n), imported (y/n), importable/status (error).

    Args:
        import_name (str): Import name of abstraction for Qt.

    Raises:
        ImportError: When the import is not found.

    Returns:
        tuple: (abstraction version,
                environment variable,
                binding variable,
                import name,
                status)
    """

    # Copy the sys path to make sure to not insert anything
    sys_path = sys.path

    api_version = ''
    env_var = ''
    binding_var = ''
    status = 'OK'

    if import_name == 'pyqtgraph':
        try:
            from pyqtgraph import __version__ as api_version  # analysis: ignore, pylint: disable=import-outside-toplevel
        except ImportError:
            raise ImportError('PyQtGraph cannot be imported.')
        except Exception as err:  # noqa:W0703, pylint: disable=broad-except
            api_version = importlib_metadata.version('pyqtgraph')
            status = "ERROR - " + str(err)

        if 'PYQTGRAPH_QT_LIB' not in os.environ:
            env_var = 'Not set or inexistent'
        else:
            env_var = os.environ['PYQTGRAPH_QT_LIB']

        binding_var = "os.environ['PYQTGRAPH_QT_LIB']"

    elif import_name == 'qtpy':
        try:
            from qtpy import __version__ as api_version  # analysis: ignore, pylint: disable=import-outside-toplevel
        except ImportError:
            raise ImportError('QtPy cannot be imported.')
        except RuntimeError as err:
            env_var = 'No Qt binding found'
            api_version = importlib_metadata.version('qtpy')
            status = "ERROR - " + str(err)

        if 'QT_API' not in os.environ:
            env_var = 'Not set or inexistent'
        else:
            env_var = os.environ['QT_API']

        binding_var = "os.environ['QT_API']"

    elif import_name == 'Qt':
        try:
            from Qt import __version__ as api_version  # analysis: ignore, pylint: disable=import-outside-toplevel
            from Qt import __binding__ as env_var  # analysis: ignore, pylint: disable=import-outside-toplevel
        except ImportError as err:
            # this error is the same if a problem with binding appears
            # as this function should be used with already known installed
            # packages, this error will appears when binding problem is found
            # raise ImportError('Qt.py cannot be imported.')
            api_version = 'Not set or inexistent'
            env_var = 'Not set or inexistent'
            status = "ERROR - " + str(err)

        binding_var = "Qt.__binding__"

    else:
        return ('', '', '', '', '')

    # restore sys.path
    sys.path = sys_path

    return (api_version, env_var, binding_var, import_name, status)


def qt_binding_information(import_name):
    """Get binding information of version and Qt version.

    Note:
        The name of the installed package can differ from the import name.
        This is an weird thing from PIP/CONDA, e.g, the binding 'pyqt5'
        in PIP is 'pyqt' in Conda and both are imported as 'PyQt5'.

    Args:
        import_name (str): Import name of binding for Qt.

    Raises:
        ImportError: When the import is not found.

    Returns:
        tuple: (binding version,
                qt version)
    """

    # copy sys.path
    sys_path = sys.path

    if import_name == 'PyQt4':
        try:
            from PyQt4.Qt import PYQT_VERSION_STR as api_version  # analysis: ignore, pylint: disable=import-outside-toplevel
            from PyQt4.Qt import QT_VERSION_STR as qt_version  # analysis: ignore, pylint: disable=import-outside-toplevel
        except ImportError:
            raise ImportError('PyQt4 cannot be imported.')

    elif import_name == 'PyQt5':
        try:
            from PyQt5.QtCore import PYQT_VERSION_STR as api_version  # analysis: ignore, pylint: disable=import-outside-toplevel
            from PyQt5.QtCore import QT_VERSION_STR as qt_version  # analysis: ignore, pylint: disable=import-outside-toplevel
        except ImportError:
            raise ImportError('PyQt5 cannot be imported.')

    elif import_name == 'PySide':
        try:
            from PySide import __version__ as api_version  # analysis: ignore, pylint: disable=import-outside-toplevel
            from PySide.QtCore import __version__ as qt_version  # analysis: ignore, pylint: disable=import-outside-toplevel
        except ImportError:
            raise ImportError('PySide cannot be imported.')

    elif import_name == 'PySide2':
        try:
            from PySide2 import __version__ as api_version  # analysis: ignore, pylint: disable=import-outside-toplevel
            from PySide2.QtCore import __version__ as qt_version  # analysis: ignore, pylint: disable=import-outside-toplevel
        except ImportError:
            raise ImportError('PySide2 cannot be imported.')
    else:
        return ('', '')

    # restore sys.path
    sys.path = sys_path

    return (api_version, qt_version)


def check_path():
    """Check Python path from ``sys`` library.

    Returns:
        dict(str): Dictionary filled with respective information.
    """

    info = {'PATHS': {}}

    info['PATHS']['Python'] = sys.executable
    for num, path in enumerate(sys.path):
        info['PATHS'][num] = path

    return info


def check_scope():
    """Check Python scope or dir().

    Returns:
        dict(str): Dictionary filled with respective information.
    """

    info = {'SCOPE': {}}

    for num, path in enumerate(dir()):
        info['SCOPE'][num] = path

    return info