This file is indexed.

/usr/lib/python3/dist-packages/pgspecial-1.7.0.egg-info/PKG-INFO is in python3-pgspecial 1.7.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
 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
Metadata-Version: 1.1
Name: pgspecial
Version: 1.7.0
Summary: Meta-commands handler for Postgres Database.
Home-page: http://pgcli.com
Author: Amjith Ramanujam
Author-email: amjith[dot]r[at]gmail.com
License: LICENSE.txt
Description: Meta-commands for Postgres
        --------------------------
        
        |BuildStatus|  |PyPI|
        
        This package provides an API to execute meta-commands (AKA "special", or
        "backslash commands") on PostgreSQL.
        
        Quick Start
        -----------
        
        This is a python package. It can be installed with:
        
        ::
        
            $ pip install pgspecial
        
        
        Usage
        -----
        
        Once this library is included into your project, you will most likely use the
        following imports:
        
        ::
        
            from pgspecial.main import PGSpecial
            from pgspecial.namedqueries import NamedQueries
        
        Then you will create and use an instance of PGSpecial:
        
        ::
        
                pgspecial = PGSpecial()
                for result in pgspecial.execute(cur, sql):
                    # Do something
        
        If you want to import named queries from an existing config file, it is
        convenient to initialize and keep around the class variable in
        ``NamedQueries``:
        
        ::
        
            from configobj import ConfigObj
        
            NamedQueries.instance = NamedQueries.from_config(
                ConfigObj('~/.config_file_name'))
        
        Contributions:
        --------------
        
        If you're interested in contributing to this project, first of all I would like
        to extend my heartfelt gratitude. I've written a small doc to describe how to
        get this running in a development setup.
        
        https://github.com/dbcli/pgspecial/blob/master/DEVELOP.rst
        
        Please feel free to reach out to me if you need help.
        My email: amjith.r@gmail.com, Twitter: `@amjithr <http://twitter.com/amjithr>`_
        
        Projects using it:
        ------------------
        
        This module is being used by pgcli_: A REPL for Postgres.
        
        If you find this module useful and include it in your project, I'll be happy
        to know about it and list it here.
        
        .. |BuildStatus| image:: https://api.travis-ci.org/dbcli/pgspecial.svg?branch=master
            :target: https://travis-ci.org/dbcli/pgspecial
        
        .. |PyPI| image:: https://badge.fury.io/py/pgspecial.svg
            :target: https://pypi.python.org/pypi/pgspecial/
            :alt: Latest Version
        
        .. _pgcli: https://github.com/dbcli/pgcli
        
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: Unix
Classifier: Programming Language :: Python
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 :: SQL
Classifier: Topic :: Database
Classifier: Topic :: Database :: Front-Ends
Classifier: Topic :: Software Development
Classifier: Topic :: Software Development :: Libraries :: Python Modules