Skip to main content

Core Python package for building Apache Superset backend extensions and integrations

Project description

apache-superset-core

PyPI version License Python 3.10+

The official core package for building Apache Superset backend extensions and integrations. This package provides essential building blocks including base classes, API utilities, type definitions, and decorators for both the host application and extensions.

📦 Installation

pip install apache-superset-core

🏗️ Architecture

The package is organized into logical modules, each providing specific functionality:

  • api - REST API base classes, models access, query utilities, and registration
  • api.models - Access to Superset's database models (datasets, databases, etc.)
  • api.query - Database query utilities and SQL dialect handling
  • api.rest_api - Extension API registration and management
  • api.types.rest_api - REST API base classes and type definitions

🚀 Quick Start

Basic Extension Structure

from flask import request, Response
from flask_appbuilder.api import expose, permission_name, protect, safe
from superset_core.api import models, query, rest_api
from superset_core.api.types.rest_api import RestApi

class DatasetReferencesAPI(RestApi):
    """Example extension API demonstrating core functionality."""

    resource_name = "dataset_references"
    openapi_spec_tag = "Dataset references"
    class_permission_name = "dataset_references"

    @expose("/metadata", methods=("POST",))
    @protect()
    @safe
    @permission_name("read")
    def metadata(self) -> Response:
        """Get dataset metadata for tables referenced in SQL."""
        sql: str = request.json.get("sql")
        database_id: int = request.json.get("databaseId")

        # Access Superset's models using core APIs
        databases = models.get_databases(id=database_id)
        if not databases:
            return self.response_404()

        database = databases[0]
        dialect = query.get_sqlglot_dialect(database)

        # Access datasets to get owner information
        datasets = models.get_datasets()
        owners_map = {
            dataset.table_name: [
                f"{owner.first_name} {owner.last_name}"
                for owner in dataset.owners
            ]
            for dataset in datasets
        }

        # Process SQL and return dataset metadata
        return self.response(200, result=owners_map)

# Register the extension API
rest_api.add_extension_api(DatasetReferencesAPI)

🤝 Contributing

We welcome contributions! Please see the Contributing Guide for details.

📄 License

Licensed under the Apache License, Version 2.0. See LICENSE for details.

🔗 Links


Note: This package is currently in release candidate status. APIs may change before the 1.0.0 release. Please check the changelog for breaking changes between versions.

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

apache_superset_core-0.0.1rc2.tar.gz (14.5 kB view details)

Uploaded Source

Built Distribution

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

apache_superset_core-0.0.1rc2-py3-none-any.whl (18.2 kB view details)

Uploaded Python 3

File details

Details for the file apache_superset_core-0.0.1rc2.tar.gz.

File metadata

  • Download URL: apache_superset_core-0.0.1rc2.tar.gz
  • Upload date:
  • Size: 14.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.12

File hashes

Hashes for apache_superset_core-0.0.1rc2.tar.gz
Algorithm Hash digest
SHA256 f229f0f7f2785bfa2558cf8c6a069601801b3b5c1c61eb774357918890e006b7
MD5 d991f26b4a512a56324d16976f08e7a7
BLAKE2b-256 5c1059ea565af7fc3bae57572501c23c2592956a7d22176e5504652f1a2d10f9

See more details on using hashes here.

File details

Details for the file apache_superset_core-0.0.1rc2-py3-none-any.whl.

File metadata

File hashes

Hashes for apache_superset_core-0.0.1rc2-py3-none-any.whl
Algorithm Hash digest
SHA256 32cc2296d6aeeeb4ec847d0269ec183faf34072630cd3c53862533e003b79208
MD5 107e54ab7d0e9d07171fc1ce3932d84d
BLAKE2b-256 917d0e237245e096051cf79b623841b86b83576e36fa3d707fc60ddc52ac42b9

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