You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 7-8.RSVP
Socket
Socket
Sign inDemoInstall

pgpasslib

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

pgpasslib

Library for getting passwords from PostgreSQL password files


Maintainers
1

Readme

pgpasslib

pgpasslib is a library for retrieving passwords from a PostgreSQL password file, either from a location specified in the PGPASSFILE environment variable or in the .pgpass file in the current user's home directory.

|Version| |Downloads| |Status| |Coverage| |CodeClimate|

Installation

pgpasslib may be installed via the Python package index with the tool of your choice. I prefer pip:

.. code:: bash

pip install pgpasslib

Documentation

https://pgpasslib.readthedocs.org

Requirements

There are no requirements outside of the Python standard library.

Example

The following example will attempt to get the password for PostgreSQL running on localhost:5432 to the postgres database as the postgres user.

.. code:: python

import pgpasslib

password = pgpasslib.getpass('localhost', 5432, 'postgres', 'postgres')
if not password:
    raise ValueError('Did not find a password in the .pgpass file')

Version History

Available at https://pgpasslib.readthedocs.org

.. |Version| image:: https://img.shields.io/pypi/v/pgpasslib.svg? :target: https://pypi.python.org/pypi/pgpasslib

.. |Status| image:: https://img.shields.io/travis/gmr/pgpasslib.svg? :target: https://travis-ci.org/gmr/pgpasslib

.. |Coverage| image:: https://img.shields.io/codecov/c/github/gmr/pgpasslib.svg? :target: https://codecov.io/github/gmr/pgpasslib?branch=master

.. |Downloads| image:: https://img.shields.io/pypi/dm/pgpasslib.svg? :target: https://pypi.python.org/pypi/pgpasslib

.. |CodeClimate| image:: https://codeclimate.com/github/gmr/pgpasslib/badges/gpa.svg :target: https://codeclimate.com/github/gmr/pgpasslib :alt: Code Climate

Keywords

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc