Skip to main content

Python Library that builds a complete CLI given one or more functions using introspection

Project description

Freyja

Freyja ⚡

No-dependency, zero-configuration CLI tool to build command-line interfaces purely from your code.

CHECK OUT https://pypi.org/project/freyja/

Transform your Python classes into powerful command-line applications in seconds! Freyja uses introspection and type annotations to automatically generate professional CLIs with zero configuration required.

⚠️ Important: All constructor parameters MUST have default values for CLI generation to work. Parameters without defaults will cause CLI creation to fail.

Table of Contents

🚀 Why Freyja?

Build CLIs in under 5 minutes! No configuration files, no complex setup, no learning curve. Just add type annotations to your class methods and Freyja does the rest.

pip install freyja
# That's it! No dependencies, no configuration needed.

Before Freyja:

python script.py --config-file /path/to/config --database-host localhost --database-port 5432 --username admin --password secret --table-name users --action create --data '{"name": "Alice", "email": "alice@example.com"}'

After Freyja:

python script.py database create-user --name Alice --email alice@example.com
# Global config handled automatically, clean syntax, built-in help

⚡ Quick Start

Step 1: Install Freyja

pip install freyja

Step 2: Create a class with typed methods

from freyja import FreyjaCLI


class Greeter:
    """Simple greeting application."""

    def __init__(self, default_name: str = "World"):
        """Initialize greeter with default name."""
        self.default_name = default_name

    def greet(self, name: str = None, excited: bool = False) -> None:
        """Greet someone by name."""
        actual_name = name or self.default_name
        greeting = f"Hello, {actual_name}!"
        if excited:
            greeting += " 🎉"
        print(greeting)

Step 3: Add 3 lines of Freyja code

if __name__ == '__main__':
    cli = FreyjaCLI(Greeter, title="My CLI")
    cli.run()

Step 4: Use your new CLI!

python script.py greet --name Alice --excited
# Output: Hello, Alice! 🎉

python script.py --help
# Automatic help generation with beautiful formatting

🏗️ Class-based CLI

Freyja transforms your Python classes into powerful CLI applications. Supports two flexible patterns:

Direct Methods Pattern

Simple and clean - each method becomes a command:

# calculator.py
from freyja import FreyjaCLI


class Calculator:
    """Advanced calculator with memory and history."""

    def __init__(self, precision: int = 2, memory_enabled: bool = True):
        """Initialize calculator with global settings."""
        self.precision = precision
        self.memory = 0 if memory_enabled else None

    def add(self, a: float, b: float, store_result: bool = False) -> None:
        """Add two numbers together."""
        result = round(a + b, self.precision)
        print(f"{a} + {b} = {result}")
        
        if store_result and self.memory is not None:
            self.memory = result
            print(f"Result stored in memory: {result}")

    def multiply(self, a: float, b: float) -> None:
        """Multiply two numbers."""
        result = round(a * b, self.precision)
        print(f"{a} × {b} = {result}")


if __name__ == '__main__':
    cli = FreyjaCLI(Calculator, title="Advanced Calculator")
    cli.run()

Usage:

python calculator.py --precision 4 add 3.14159 --b 2.71828 --store-result
# Output: 3.14159 + 2.71828 = 5.8599
#         Result stored in memory: 5.8599

Inner Classes Pattern

Organize complex applications with hierarchical command structure (e.g., group subgroup command):

# project_manager.py
from freyja import FreyjaCLI
from pathlib import Path


class ProjectManager:
    """Complete project management suite with organized command structure."""

    def __init__(self, config_file: str = "config.json", debug: bool = False):
        """Initialize with global settings."""
        self.config_file = config_file
        self.debug = debug

    class Database:
        """Database operations and management."""

        def __init__(self, connection_string: str = "sqlite:///projects.db", timeout: int = 30):
            """Initialize database connection."""
            self.connection_string = connection_string
            self.timeout = timeout

        def migrate(self, version: str = "latest", dry_run: bool = False) -> None:
            """Run database migrations."""
            action = "Would run" if dry_run else "Running"
            print(f"{action} migration to version: {version}")
            print(f"Connection: {self.connection_string}")

        def backup(self, output_path: Path, compress: bool = True) -> None:
            """Create database backup."""
            compression = "compressed" if compress else "uncompressed"
            print(f"Creating {compression} backup at: {output_path}")

    class Projects:
        """Project creation and management operations."""

        def __init__(self, workspace: str = "./projects", auto_save: bool = True):
            """Initialize project operations."""
            self.workspace = workspace
            self.auto_save = auto_save

        def create(self, name: str, template: str = "basic", description: str = "") -> None:
            """Create a new project from template."""
            print(f"Creating project '{name}' using '{template}' template")
            print(f"Workspace: {self.workspace}")
            print(f"Description: {description}")
            print(f"Auto-save: {'enabled' if self.auto_save else 'disabled'}")

        def deploy(self, project_name: str, environment: str = "staging", force: bool = False) -> None:
            """Deploy project to specified environment."""
            action = "Force deploying" if force else "Deploying"
            print(f"{action} {project_name} to {environment}")


if __name__ == '__main__':
    cli = FreyjaCLI(ProjectManager, title="Project Management Suite")
    cli.run()

Usage:

# Global + Sub-global + Command arguments (hierarchical structure)
python project_manager.py --config-file prod.json --debug \
  database migrate --timeout 60 --version 2.1.0 --dry-run

# Create new project with custom workspace
python project_manager.py projects create --workspace /prod/projects --auto-save \
  --name "web-app" --template "react" --description "Production web application"

# Deploy with force flag
python project_manager.py projects deploy --project-name web-app --environment production --force

# Beautiful help shows all commands organized by group
python project_manager.py --help

✨ Key Features

🚀 Zero Configuration - Works out of the box with just type annotations ⚡ Lightning Fast - No runtime dependencies, minimal overhead 🎯 Type Safe - Automatic validation from your type hints 🛡️ Guard Clauses - Built-in parameter validation with declarative guards 📚 Auto Documentation - Help text generated from your docstrings 🎨 Beautiful Output - Professional themes and formatting 🔧 Flexible Architecture - Direct methods or inner class patterns 📦 No Dependencies - Uses only Python standard library 🌈 Shell Completion - Bash, Zsh, Fish, and PowerShell support ✅ Production Ready - Battle-tested in enterprise applications

📚 Documentation

📖 Complete Documentation Hub - Everything you need to master Freyja

Quick Links

🛠️ Development

📖 Development Guide - Comprehensive guide for contributors

Quick Setup

# Clone and setup
git clone https://github.com/terracoil/freyja.git
cd freyja

# Install Poetry and setup environment  
curl -sSL https://install.python-poetry.org | python3 -
./bin/dev-tools setup env

# Run tests and examples
./bin/dev-tools test run
poetry run python examples/cls_example --help

Development Commands

poetry install                    # Install dependencies
./bin/dev-tools test run          # Run tests with coverage
./bin/dev-tools build lint        # Run all linters and formatters
./bin/dev-tools build compile     # Build package
./bin/dev-tools project publish   # Publish to PyPI (maintainers)
./bin/dev-tools project tag       # Tag a release (Bump version to x.y.z)

⚙️ Requirements

  • Python 3.13+ (recommended) — supports Python 3.11+
  • Zero runtime dependencies - uses only Python standard library
  • Type annotations required - for automatic CLI generation
  • Docstrings recommended - for automatic help text generation

Ready to transform your Python code into powerful CLIs?

pip install freyja
# Start building amazing command-line tools in minutes! ⚡

📚 Get Started Now →

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

freyja-2.0.0.tar.gz (64.3 kB view details)

Uploaded Source

Built Distribution

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

freyja-2.0.0-py3-none-any.whl (80.3 kB view details)

Uploaded Python 3

File details

Details for the file freyja-2.0.0.tar.gz.

File metadata

  • Download URL: freyja-2.0.0.tar.gz
  • Upload date:
  • Size: 64.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.4.1 CPython/3.14.4 Darwin/25.5.0

File hashes

Hashes for freyja-2.0.0.tar.gz
Algorithm Hash digest
SHA256 03c6a3e7419285cf6527dbbbc6f90faad8dc941a6ed9d47475fd0c8c53358786
MD5 d4706d4ff70e8b9947aee7d48f70426b
BLAKE2b-256 7c229e4af565212b816204d9b75cc030c10799547556b0fb6ea990eecebe3a4d

See more details on using hashes here.

File details

Details for the file freyja-2.0.0-py3-none-any.whl.

File metadata

  • Download URL: freyja-2.0.0-py3-none-any.whl
  • Upload date:
  • Size: 80.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.4.1 CPython/3.14.4 Darwin/25.5.0

File hashes

Hashes for freyja-2.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 67734d9665140f9febcd48a8283909e79ae4441c5cecb08e7c82427885dc6bc3
MD5 01c66ef9c5194a396b1d8290f5093710
BLAKE2b-256 afc1eec290c390a13ce726097c1728690c1e709eb46d9b66d9227fdd5f3dc330

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