You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

5x-redshift-auth-manager

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

5x-redshift-auth-manager

A simple Python library for creating an AWS Redshift connection using environment variables.

0.1.0
pipPyPI
Maintainers
1

5X Redshift Auth Manager

A simple Python library for managing AWS Redshift connections using environment variables. This library provides an easy way to authenticate and connect to AWS Redshift clusters with comprehensive error handling and connection management.

🚀 Features

  • Streamlined AWS Redshift authentication with environment variables
  • Automatic credential validation and connection testing
  • Comprehensive error handling for production reliability
  • Built-in connection testing utilities
  • Context manager support for connection management
  • Secure credential handling with environment variables

📦 Installation

pip install 5x-redshift-auth-manager

🔧 Configuration

Set the following environment variables:

export FIVEX_REDSHIFT_HOST="your-redshift-cluster.region.redshift.amazonaws.com"
export FIVEX_REDSHIFT_PORT="5439"  # Optional, defaults to 5439
export FIVEX_REDSHIFT_DATABASE="your_database"
export FIVEX_REDSHIFT_USER="your_username"
export FIVEX_REDSHIFT_PASSWORD="your_password"

💻 Usage

Basic Usage

from redshift_auth import RedshiftConnectionManager

# Create connection manager
manager = RedshiftConnectionManager()

# Get connection
connection = manager.get_connection()

# Execute queries
with manager.get_cursor() as cursor:
    cursor.execute("SELECT * FROM your_table LIMIT 10")
    results = cursor.fetchall()
    print(results)

# Close connection when done
manager.close_connection()

Using Context Manager

from redshift_auth import RedshiftConnectionManager

# Use context manager for automatic connection cleanup
with RedshiftConnectionManager() as manager:
    connection = manager.get_connection()
    
    with manager.get_cursor() as cursor:
        cursor.execute("SELECT version()")
        version = cursor.fetchone()
        print(f"Redshift version: {version[0]}")

Error Handling

from redshift_auth import RedshiftConnectionManager

try:
    manager = RedshiftConnectionManager()
    connection = manager.get_connection()
    print("Successfully connected to Redshift!")
    
except ValueError as e:
    print(f"Configuration error: {e}")
except ConnectionError as e:
    print(f"Connection error: {e}")
except Exception as e:
    print(f"Unexpected error: {e}")

🔒 Environment Variables

VariableRequiredDefaultDescription
FIVEX_REDSHIFT_HOST-Redshift cluster endpoint
FIVEX_REDSHIFT_PORT5439Redshift port number
FIVEX_REDSHIFT_DATABASE-Database name
FIVEX_REDSHIFT_USER-Database username
FIVEX_REDSHIFT_PASSWORD-Database password

🛠️ API Reference

RedshiftConnectionManager

Methods

  • __init__(): Initialize the connection manager
  • get_connection(): Get or create a Redshift connection
  • get_cursor(): Get a database cursor for executing queries
  • close_connection(): Close the connection
  • __enter__() / __exit__(): Context manager support

Error Handling

The library provides specific error handling for:

  • ValueError: Missing or invalid environment variables
  • ConnectionError: Network connectivity issues
  • psycopg2.OperationalError: Database connection issues
  • psycopg2.DatabaseError: Database-specific errors

🔍 Requirements

  • Python 3.8 or higher
  • psycopg2-binary >= 2.9.0

📝 License

This project is licensed under the MIT License.

🤝 Support

  • 🌐 Website: www.5x.co
  • 📧 Email: support@5x.co
  • 🐛 Issues: GitHub Issues

🚀 Developed by 5X | Powering Secure & Scalable Data Platforms

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