This file is indexed.

/usr/lib/python3/dist-packages/pyparallel-0.2.2.egg-info/PKG-INFO is in python3-parallel 0.2.2-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 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
Metadata-Version: 1.1
Name: pyparallel
Version: 0.2.2
Summary: Python Parallel Port Extension
Home-page: https://github.com/pyserial/pyparallel
Author: Chris Liechti
Author-email: cliechti@gmx.net
License: BSD
Description: pyParallel [in development]
        ============================
        
        Overview
        --------
        This module encapsulates the access for the parallel port. It provides
        backends for Python running on Windows and Linux. Other platforms are
        possible too but not yet integrated.
        
        This module is still under development. But it may be useful for
        developers.
        The Windows version needs a compiled extension and the giveio.sys driver
        for Windows NT/2k/XP. It uses ctypes to access functions in a prebuilt DLL.
        
        It is released under a free software license, see LICENSE.txt for more
        details.
        
        Copyright (C) 2001-2016 Chris Liechti cliechti@gmx.net
        
        Homepage: https://github.com/pyserial/pyparallel
        
        
        Features
        --------
        * same class based interface on all supported platforms
        * port numbering starts at zero, no need to know the port name in the
          user program
        * port string (device name) can be specified if access through numbering
          is inappropriate
        
        
        Requirements
        ------------
        * Python 2.2 or newer
        * "Java Communications" (JavaComm) extension for Java/Jython
        
        
        Installation
        ------------
        Extract files from the archive, open a shell/console in that directory and
        let Distutils do the rest:
        
        .. code-block:: bash
        
            $ python setup.py install
        
        
        Short introduction
        ------------------
        
        .. code-block:: python
        
            >>> import parallel
            >>> p = parallel.Parallel()  # open LPT1 or /dev/parport0
            >>> p.setData(0x55)
        
        
        Examples
        --------
        Please look in the GIT Repository. There is an example directory where you
        can find a simple terminal and more.
        https://github.com/pyserial/pyparallel/tree/master/examples
        
        
        References
        ----------
        * Python: http://www.python.org
        * Jython: http://www.jython.org
        * Java@IBM http://www-106.ibm.com/developerworks/java/jdk/ (JavaComm
          links are on the download page for the respective platform jdk)
        * Java@SUN http://java.sun.com/products/
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Operating System :: POSIX
Classifier: Operating System :: Microsoft :: Windows
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Communications
Classifier: Topic :: Software Development :: Libraries