Skip to main content

Official Python SDK for Hoopoe IAM Service - Identity and Access Management made simple

Project description

Hoopoe IAM SDK

PyPI version Python Support License Documentation

Official Python SDK for Hoopoe IAM Service - Identity and Access Management made simple.

Features

  • 🔐 Complete IAM Integration: Full support for authentication, authorization, and user management
  • 🚀 Async/Await Support: Built with modern Python async/await patterns
  • 🔧 Admin Operations: Comprehensive admin client for managing organizations, applications, and users
  • 🌐 FastAPI Integration: Built-in middleware for FastAPI applications
  • 📊 Type Safety: Full type hints and Pydantic models for better development experience
  • 🛡️ Security First: Secure token handling and validation
  • 📖 Well Documented: Comprehensive documentation and examples

Installation

Basic Installation

pip install hoopoe-iam-sdk

With FastAPI Support

pip install hoopoe-iam-sdk[fastapi]

Development Installation

pip install hoopoe-iam-sdk[dev]

Quick Start

Basic Client Usage

import asyncio
from sdk import IAMClient


async def main():
    # Initialize the client
    client = IAMClient(
        base_url="https://your-iam-service.com",
        api_key="your-api-key",
        secret_key="your-secret-key",
        app_id="your-app-slug"
    )

    # Authenticate a user
    token_info = await client.authenticate("username", "password")
    print(f"Access token: {token_info.access_token}")

    # Validate a token
    user_info = await client.validate_token(token_info.access_token)
    print(f"User: {user_info.username}")

    # Check permissions
    has_permission = await client.check_permission(
        token_info.access_token,
        "users:read"
    )
    print(f"Has permission: {has_permission}")


if __name__ == "__main__":
    asyncio.run(main())

Admin Client Usage

import asyncio
from sdk import IAMAdminClient
from sdk.admin import OrganizationCreateRequest, ApplicationCreateRequest


async def main():
    # Initialize admin client
    admin_client = IAMAdminClient(
        base_url="https://your-iam-service.com",
        admin_api_key="your-admin-api-key"
    )

    # Create an organization
    org_request = OrganizationCreateRequest(
        name="My Company",
        slug="my-company",
        external_id="company-001",
        attributes={"website": "https://mycompany.com"},
        is_active=True
    )

    organization = await admin_client.create_organization(org_request)
    print(f"Created organization: {organization.name}")

    # Create an application
    app_request = ApplicationCreateRequest(
        org_id=organization.id,
        name="My App",
        slug="my-app",
        description="My application",
        api_url="https://myapp.com",
        is_active=True
    )

    application = await admin_client.create_application(app_request)
    print(f"Created application: {application.name}")


if __name__ == "__main__":
    asyncio.run(main())

FastAPI Integration

from fastapi import FastAPI, Depends
from sdk import IAMClient, create_iam_dependency
from sdk.middleware import IAMMiddleware
from sdk.models import UserInfo

app = FastAPI()

# Initialize IAM client
iam_client = IAMClient(
    base_url="https://your-iam-service.com",
    api_key="your-api-key",
    secret_key="your-secret-key",
    app_id="your-app-slug"
)

# Add IAM middleware
app.add_middleware(IAMMiddleware, iam_client=iam_client)

# Create dependency for authenticated users
get_current_user = create_iam_dependency(iam_client)


@app.get("/protected")
async def protected_endpoint(current_user: UserInfo = Depends(get_current_user)):
    return {"message": f"Hello {current_user.username}!"}


@app.get("/admin-only")
async def admin_endpoint(
        current_user: UserInfo = Depends(get_current_user.require_permission("admin:access"))
):
    return {"message": "Admin access granted"}

Configuration

Environment Variables

The SDK supports configuration via environment variables:

# Basic configuration
IAM_SERVICE_URL=https://your-iam-service.com
IAM_API_KEY=your-api-key
IAM_SECRET_KEY=your-secret-key
IAM_APP_ID=your-app-slug

# Admin configuration
IAM_ADMIN_API_KEY=your-admin-api-key

# Optional settings
IAM_TIMEOUT=30.0
IAM_CACHE_TTL=300

Using .env Files

from dotenv import load_dotenv
from sdk import IAMClient

load_dotenv()  # Load environment variables from .env file

# Client will automatically use environment variables
client = IAMClient()

API Reference

IAMClient

The main client for application-level operations:

  • authenticate(username, password) - Authenticate user credentials
  • validate_token(token) - Validate and decode access token
  • refresh_token(refresh_token) - Refresh access token
  • check_permission(token, permission) - Check user permission
  • get_user_info(token) - Get user information
  • logout(token) - Logout and invalidate token

IAMAdminClient

Admin client for management operations:

  • create_organization(request) - Create new organization
  • create_application(request) - Create new application
  • create_user(request) - Create new user
  • create_api_key(request) - Create API key
  • get_organization_by_slug(slug) - Get organization by slug
  • get_application_by_slug(slug) - Get application by slug

Models

All API responses use Pydantic models for type safety:

  • TokenInfo - Token information and metadata
  • UserInfo - User profile and account details
  • OrganizationInfo - Organization details
  • ApplicationInfo - Application configuration
  • PermissionInfo - Permission details
  • RoleInfo - Role configuration
  • APIKeyInfo - API key information

Error Handling

The SDK provides specific exception types:

from sdk import IAMClient, IAMError, AuthenticationError, AuthorizationError

try:
    client = IAMClient(base_url="https://iam.example.com")
    result = await client.authenticate("user", "pass")
except AuthenticationError:
    print("Invalid credentials")
except AuthorizationError:
    print("Access denied")
except IAMError as e:
    print(f"IAM error: {e}")

Testing

Run the test suite:

# Install development dependencies
pip install -e .[dev]

# Run tests
pytest

# Run with coverage
pytest --cov=sdk --cov-report=html

Contributing

  1. Fork the repository
  2. Create a feature branch (git checkout -b feature/amazing-feature)
  3. Commit your changes (git commit -m 'Add amazing feature')
  4. Push to the branch (git push origin feature/amazing-feature)
  5. Open a Pull Request

Development Setup

# Clone the repository
git clone https://github.com/eliff-tech/hoopoe-iam-sdk.git
cd hoopoe-iam-sdk

# Install in development mode
pip install -e .[dev]

# Install pre-commit hooks
pre-commit install

# Run tests
pytest

License

This project is licensed under the MIT License - see the LICENSE file for details.

Support

Changelog

See CHANGELOG.md for a detailed history of changes.


Made with ❤️ by Eliff Technology Solutions

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

hoopoe_iam_sdk-1.0.16.tar.gz (38.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

hoopoe_iam_sdk-1.0.16-py3-none-any.whl (19.2 kB view details)

Uploaded Python 3

File details

Details for the file hoopoe_iam_sdk-1.0.16.tar.gz.

File metadata

  • Download URL: hoopoe_iam_sdk-1.0.16.tar.gz
  • Upload date:
  • Size: 38.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for hoopoe_iam_sdk-1.0.16.tar.gz
Algorithm Hash digest
SHA256 8d4d3bceb78f39be07627aaff79d204552bf248d5500f0e597025ef114d7705d
MD5 0568bd113c60a17d644969afdfdd3bd0
BLAKE2b-256 a687bcaae71a250651a0e0f924319788241c89faae1fa90284db2b1665aea270

See more details on using hashes here.

File details

Details for the file hoopoe_iam_sdk-1.0.16-py3-none-any.whl.

File metadata

File hashes

Hashes for hoopoe_iam_sdk-1.0.16-py3-none-any.whl
Algorithm Hash digest
SHA256 1cefedf060605ec6193064300a162cfbee7c1874fb991ce58350d619dfbc0a27
MD5 a7397112ce90465985d050dac9c40ce9
BLAKE2b-256 08e80ac621d7daf0c646424ea0d913ee7ce7045a857d914856f4074cad70c7c2

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page