This file is indexed.

/usr/lib/python3/dist-packages/structlog-15.2.0.egg-info/PKG-INFO is in python3-structlog 15.2.0-1.

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
Metadata-Version: 1.1
Name: structlog
Version: 15.2.0
Summary: Structured logging for Python.
Home-page: http://www.structlog.org/
Author: Hynek Schlawack
Author-email: hs@ox.cx
License: MIT or Apache License, Version 2.0
Description: ========================================
        structlog: Structured Logging for Python
        ========================================
        
        .. image:: https://pypip.in/version/structlog/badge.svg
           :target: https://pypi.python.org/pypi/structlog/
           :alt: Latest Version
        
        .. image:: https://travis-ci.org/hynek/structlog.svg?branch=master
           :target: https://travis-ci.org/hynek/structlog
        
        .. image:: https://coveralls.io/repos/hynek/structlog/badge.svg?branch=master
            :target: https://coveralls.io/r/hynek/structlog?branch=master
        
        ``structlog`` makes structured logging in Python easy by *augmenting* your *existing* logger.
        It allows you to split your log entries up into key/value pairs and build them incrementally without annoying boilerplate code.
        
        .. code-block:: pycon
        
           >>> from structlog import get_logger
           >>> log = get_logger()
           >>> log = log.bind(user='anonymous', some_key=23)
           >>> log = log.bind(user='hynek', another_key=42)
           >>> log.info('user.logged_in', happy=True)
           some_key=23 user='hynek' another_key=42 happy=True event='user.logged_in'
        
        .. begin
        
        It's dual-licensed under `Apache License, version 2 <http://choosealicense.com/licenses/apache/>`_ and `MIT <http://choosealicense.com/licenses/mit/>`_, available from `PyPI <https://pypi.python.org/pypi/structlog/>`_, the source code can be found on `GitHub <https://github.com/hynek/structlog>`_, the documentation at `http://www.structlog.org/ <http://www.structlog.org>`_.
        
        ``structlog`` targets Python 2.6, 2.7, 3.3, 3.4, and PyPy with no additional dependencies for core functionality.
        
        If you need any help, visit us on ``#structlog`` on `Freenode <https://freenode.net>`_!
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development :: Libraries :: Python Modules