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.7.tar.gz (38.1 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.7-py3-none-any.whl (18.6 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: hoopoe_iam_sdk-1.0.7.tar.gz
  • Upload date:
  • Size: 38.1 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.7.tar.gz
Algorithm Hash digest
SHA256 4e667a1044cd828fbba7d98f4a9b30413ee18b8259f7aecf15c1af146b0b8d16
MD5 55b1ba952b1627acebe1c6e31830bd77
BLAKE2b-256 8a1e79b8fa471edd74f8627b5604c77743844fbebab22cd92557cf2208d12a18

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hoopoe_iam_sdk-1.0.7-py3-none-any.whl
  • Upload date:
  • Size: 18.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for hoopoe_iam_sdk-1.0.7-py3-none-any.whl
Algorithm Hash digest
SHA256 fb15adb3290b7e2ac0acc47ddc5c7a6ee41d1af249fdd96fb76419d0b6c6f33f
MD5 af74e6cacafce90a8bf357a3b7ff077d
BLAKE2b-256 07a2b68d6bb8dae2ff8514478064331c61ca4991bd184832a162b3cce80e263f

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