Skip to main content

BOSA Core Library

Project description

BOSA Core

BOSA Core is a flexible plugin-based architecture that allows you to build modular and extensible applications. It provides a robust framework for managing plugins, handling dependencies, and injecting services.

Key Features

  • 🔌 Plugin-based Architecture
  • 💉 Dependency Injection
  • 🔄 Service Registry
  • 🛠️ Flexible Plugin Handlers
  • 🌐 HTTP Interface Support
  • 📊 OpenTelemetry Integration
  • 🛡️ Sentry Error Tracking
  • 📜 Logging

Installation

Prerequisites

1. Installation from Pypi

Choose one of the following methods to install the package:

Using pip

pip install bosa-core-binary

Using Poetry

poetry add bosa-core-binary

2. Development Installation (Git)

For development purposes, you can install directly from the Git repository:

poetry add "git+ssh://git@github.com/GDP-ADMIN/bosa-sdk.git#subdirectory=python/bosa-core"

Plugin Architecture Overview

Plugin Architecture

How It Works

  1. Plugin Manager: The central piece that orchestrates everything

    • Manages plugin lifecycle
    • Handles service registration
    • Initializes plugins with required dependencies
  2. Service Registry: A container for all services

    • Stores service instances
    • Handles dependency injection
    • Maps service types to their implementations
    • Note: You don't need to create your own Service Registry - it's integrated into the Manager!
  3. Plugin Handler: Interface for providing services to plugins

    • Creates service injections through create_injections
    • Initializes plugin-specific resources
    • Can be extended for different types of plugins (e.g., HTTP handlers)
  4. Plugin: Base class for all plugins

    • Has basic metadata (name, description, version)
    • Receives injected services automatically
    • Can be extended with specific functionality
  5. Open Telemetry: Initializer class to use open telemetry

    • Integrates with OpenTelemetry for tracing and metrics
    • Provides observability for plugins and services
    • Can be configured to export data to various backends (e.g., Jaeger, Prometheus)
  6. Sentry: Initializer class to use sentry

    • Integrates with Sentry for error tracking and performance monitoring
    • Captures exceptions and sends them to Sentry
    • Provides insights into application performance and errors

Authentication

BOSA Core provides a robust, multi-tenancy authentication system, allowing secure client and user management.

  1. Client Management:

    • Clients are created using a Master Key (BOSA_WHITELISTED_KEYS).
    • Each client has a unique API key used for authentication.
    • API Key Format: sk-client-<base64-client-id>.<base64-client-name>.<client-secret>.
    • Clients can manage their users and authentication settings.
  2. User Authentication:

    • Clients create users by providing an identifier.
    • Each user receives a secret, which is displayed only once.
    • Users authenticate using their identifier and secret.
    • User API Key Format: sk-user-<base64-user-id>.<base64-user-identifier>.<user-secret>.
  3. Token-Based Access:

    • Upon authentication, users receive JWT tokens for secure access.
    • Tokens are verified for subsequent requests.
    • Tokens expire after 30 days (default: 43,200 minutes).
    • Tokens can be revoked when necessary.
  4. Third-Party Integrations:

    • Users can create integrations with third-party services.
    • Authentication credentials are securely stored.
    • Each integration can be assigned scoped access.

For detailed implementation, refer to the Authentication README.

Implementation Details

The plugin system works through these key components:

1. Plugin Manager

from fastapi_interface import FastApiHttpInterface

# Create FastAPI handler
fastapi_handler = FastApiHttpInterface()

# Initialize manager with the handler
manager = PluginManager(handlers=[fastapi_handler])
manager.register_plugin(MyPlugin)
  • Initializes the plugin system
  • Manages plugin lifecycle
  • Handles service registration

2. Plugin Handler

from bosa_core.plugin import PluginHandler

class MyHandler(PluginHandler):
    @classmethod
    def create_injections(cls, instance):
        # Tell the manager what services this handler provides
        return {MyService: instance}

    @classmethod
    def initialize_plugin(cls, instance, plugin):
        # Initialize plugin resources
        pass
  • Creates service mappings via create_injections
  • Initializes plugin resources
  • Can be customized for different plugin types

3. Plugin

from bosa_core.plugin import Plugin
from fastapi_interface import FastApiService

class MyPlugin(Plugin):
    # Services will be injected automatically
    fastapi_service: FastApiService

    def __init__(self, name, description, version):
        super().__init__(name, description, version)
  • Base class for all plugins
  • Receives injected services
  • Can be extended with custom functionality

4. Open telemetry external exporter (enable fastapi & langchain instrumentation)

from bosa_core.telemetry import OpenTelemetryConfig, FastAPIConfig, init_telemetry
from fastapi import FastAPI

endpoint = "your-exporter-endpoint"
port = "your-exporter-port"
attributes = {
   "key1":"val1"
}
app = FastAPI()
use_langchain_instrumentation = True
fastapi_config = FastAPIConfig(app=app)
otel_config = OpenTelemetryConfig(endpoint=endpoint, port=port, attributes=attributes, fastapi_config=fastapi_config, use_langchain=use_langchain_instrumentation)
init_telemetry(TelemetryConfig(otel_config=otel_config))

5. Sentry

from bosa_core.telemetry import SentryConfig, init_telemetry

def traces_sampler(sampling_context: dict) -> float:
    """Determine appropriate sampling rate for Sentry transactions.
    Args:
        sampling_context: Context dictionary containing transaction information
    Returns:
        float: Sampling rate between 0 and 1
    """

    ### you can use customization (ex: for certain name sampler will be 0.1) for trace_sampler in this class
    return 1.0


dsn = "your-dsn"
environment = "development/staging/production"
release = "your release tag"
sentry_config = SentryConfig(
        dsn=dsn,
        environment=environment,
        release=release,
        traces_sampler=traces_sampler,
        send_default_pii=True,
    )
init_telemetry(TelemetryConfig(sentry_config=sentry_config))

6. Sentry with Open Telemetry (enable fastapi & langchain instrumentation)

from bosa_core.telemetry import SentryConfig, init_telemetry, FastAPIConfig, OpenTelemetryConfig
from fastapi import FastAPI


def traces_sampler(sampling_context: dict) -> float:
    """Determine appropriate sampling rate for Sentry transactions.
    Args:
        sampling_context: Context dictionary containing transaction information
    Returns:
        float: Sampling rate between 0 and 1
    """

    ### you can use customization (ex: for certain name sampler will be 0.1) for trace_sampler in this class
    return 1.0


dsn = "your-dsn"
environment = "development/staging/production"
release = "your release tag"

attributes = {
   "key1":"val1"
}
app = FastAPI()
use_langchain_instrumentation = True
fastapi_config = FastAPIConfig(app=app)
opentelemetry_init = OpenTelemetryConfig(attributes=attributes, fastapi_config=fastapi_config, use_langchain=use_langchain_instrumentation)

sentry_config = SentryConfig(
        dsn=dsn,
        environment=environment,
        release=release,
        traces_sampler=traces_sampler,
        send_default_pii=True,
        open_telemetry_initiliazer=opentelemetry_init
    )
init_telemetry(sentry_config=sentry_config)

7. Logging Ner API Handler

from bosa_core.logger import init_ner_pii_logging_handler

init_ner_pii_logging_handler(logger_name="logging-name", api_url="https://dev-api-gdplabs-ner-api.obrol.id/anonymize", api_field="text", pii_ner_process_enabled=True)


logger.info("contoh nomor ktp 3525011212941001\ncontoh email john.doe@example.com\ncontoh nomor telepon +628121729819 dan 0812898029384.\ncontoh npwp 01.123.456.7-891.234" ) # if you using gdplabs ner API output will be contoh nomor ktp <ID_KTP_1>\ncontoh email <EMAIL_ADDRESS_1>\ncontoh nomor telepon <PHONE_NUMBER_1> dan <PHONE_NUMBER_2>.\ncontoh npwp <ID_NPWP_1>

[!WARNING] If you are using Logger Ner API handler, the logging process may take some time because it needs to call an API for every log entry synchronously.

8. Logging Regex Handler

from bosa_core.logger import init_regex_pii_logging_handler

init_regex_pii_logging_handler(logger_name="logging-name", pii_regex_process_enabled=True)


logger.info("contoh nomor ktp 3525011212941001\ncontoh email john.doe@example.com\ncontoh nomor telepon +628121729819 dan 0812898029384.\ncontoh npwp 01.123.456.7-891.234" ) # if you using gdplabs ner API output will be contoh nomor ktp <ID_KTP_1>\ncontoh email <EMAIL_ADDRESS_1>\ncontoh nomor telepon <PHONE_NUMBER_1> dan <PHONE_NUMBER_2>.\ncontoh npwp <ID_NPWP_1>

Getting Started

  1. Install dependencies:

    poetry install
    
  2. Create a plugin:

    class MyPlugin(Plugin):
        name = "my-plugin"
        description = "My awesome plugin"
        version = "1.0.0"
    
  3. Register and use:

    # Using FastAPI as an example
    from fastapi import FastAPI
    from fastapi_interface import FastApiHttpInterface
    
    app = FastAPI()
    fastapi_handler = FastApiHttpInterface(app)
    manager = PluginManager(handlers=[fastapi_handler])
    manager.register_plugin(MyPlugin)
    

Development

  • Use Poetry for dependency management
  • Install pre-commit hooks poetry run pre-commit install. This will run checks before each commit.
  • Run ./build.sh to perform all checks:
    • Code formatting and validation (ruff)
    • Documentation style (pydocstyle)
    • Tests (pytest)
    • And more!

References

Product Requirements Documents(PRD):

  • N/A

Architecture Documents:

Design Documents:

Implementation Documents:

Project details


Release history Release notifications | RSS feed

Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

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

bosa_core_binary-0.4.3-cp313-cp313-win_amd64.whl (598.2 kB view details)

Uploaded CPython 3.13Windows x86-64

bosa_core_binary-0.4.3-cp313-cp313-manylinux_2_36_x86_64.whl (907.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.36+ x86-64

bosa_core_binary-0.4.3-cp313-cp313-manylinux_2_31_x86_64.whl (908.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.31+ x86-64

bosa_core_binary-0.4.3-cp313-cp313-macosx_14_0_arm64.whl (634.5 kB view details)

Uploaded CPython 3.13macOS 14.0+ ARM64

bosa_core_binary-0.4.3-cp313-cp313-macosx_13_0_x86_64.whl (713.2 kB view details)

Uploaded CPython 3.13macOS 13.0+ x86-64

bosa_core_binary-0.4.3-cp312-cp312-win_amd64.whl (599.6 kB view details)

Uploaded CPython 3.12Windows x86-64

bosa_core_binary-0.4.3-cp312-cp312-manylinux_2_36_x86_64.whl (905.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.36+ x86-64

bosa_core_binary-0.4.3-cp312-cp312-manylinux_2_31_x86_64.whl (908.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.31+ x86-64

bosa_core_binary-0.4.3-cp312-cp312-macosx_14_0_arm64.whl (633.1 kB view details)

Uploaded CPython 3.12macOS 14.0+ ARM64

bosa_core_binary-0.4.3-cp312-cp312-macosx_13_0_x86_64.whl (708.4 kB view details)

Uploaded CPython 3.12macOS 13.0+ x86-64

bosa_core_binary-0.4.3-cp311-cp311-win_amd64.whl (599.6 kB view details)

Uploaded CPython 3.11Windows x86-64

bosa_core_binary-0.4.3-cp311-cp311-manylinux_2_36_x86_64.whl (807.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.36+ x86-64

bosa_core_binary-0.4.3-cp311-cp311-manylinux_2_31_x86_64.whl (819.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.31+ x86-64

bosa_core_binary-0.4.3-cp311-cp311-macosx_14_0_arm64.whl (625.7 kB view details)

Uploaded CPython 3.11macOS 14.0+ ARM64

bosa_core_binary-0.4.3-cp311-cp311-macosx_13_0_x86_64.whl (699.8 kB view details)

Uploaded CPython 3.11macOS 13.0+ x86-64

File details

Details for the file bosa_core_binary-0.4.3-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for bosa_core_binary-0.4.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 f21a36ea7dec320872106917e1cece7deaf62792e14299787d2a28e81a4fa217
MD5 d1a8cfb6e225256fbaeab6e08e5992b9
BLAKE2b-256 215943b309d1820d66a1062a546b0cd22b535a80f7cec37a42387c778748b03f

See more details on using hashes here.

Provenance

The following attestation bundles were made for bosa_core_binary-0.4.3-cp313-cp313-win_amd64.whl:

Publisher: build-binary.yml on GDP-ADMIN/bosa-sdk

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bosa_core_binary-0.4.3-cp313-cp313-manylinux_2_36_x86_64.whl.

File metadata

File hashes

Hashes for bosa_core_binary-0.4.3-cp313-cp313-manylinux_2_36_x86_64.whl
Algorithm Hash digest
SHA256 3875b1bffdd4fbfae887ecef7a60569e1f0b36324d544ff6d6c8381533441683
MD5 b317a34d527455fbdb96bfebe70c8957
BLAKE2b-256 a8ba4672fec4be2601bc28a6fba06931a62c3b061b42e268863e44e8f9a47a6b

See more details on using hashes here.

File details

Details for the file bosa_core_binary-0.4.3-cp313-cp313-manylinux_2_31_x86_64.whl.

File metadata

File hashes

Hashes for bosa_core_binary-0.4.3-cp313-cp313-manylinux_2_31_x86_64.whl
Algorithm Hash digest
SHA256 345d49a36d5183a0525626bbacbb9f140f30fe5685bce747fbc5dbde0d6b021e
MD5 7674b285fabf4a9ba07f499b3c37f39f
BLAKE2b-256 da21541f4722c1fefc9f2a28dc34b1f7913b53646925e342c20feec855ec64c3

See more details on using hashes here.

File details

Details for the file bosa_core_binary-0.4.3-cp313-cp313-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for bosa_core_binary-0.4.3-cp313-cp313-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 942586c53eb567da63653fdcca5546f69f4289ee895ee6066492fd5fda36438d
MD5 ba915250290be4481e1e2ef368691bad
BLAKE2b-256 4394f2019f8293a4a4b2aa0d4cc6bd2722f8ebf1c722ae618ef85b288a60d008

See more details on using hashes here.

Provenance

The following attestation bundles were made for bosa_core_binary-0.4.3-cp313-cp313-macosx_14_0_arm64.whl:

Publisher: build-binary.yml on GDP-ADMIN/bosa-sdk

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bosa_core_binary-0.4.3-cp313-cp313-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for bosa_core_binary-0.4.3-cp313-cp313-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 fdbd0350081bcfa9d239870e5c6638a415633d464cc43f0cdc04eb8d5c9abaae
MD5 d4bfd497d6e6081d7172a5b3691eb69a
BLAKE2b-256 be0d9409ad16efced1a15f9fe9ab60e88c9d373214fb958f72db9a40f54a03f2

See more details on using hashes here.

Provenance

The following attestation bundles were made for bosa_core_binary-0.4.3-cp313-cp313-macosx_13_0_x86_64.whl:

Publisher: build-binary.yml on GDP-ADMIN/bosa-sdk

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bosa_core_binary-0.4.3-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for bosa_core_binary-0.4.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ea1382601ee3a4b8338b5781c13d4fd5e67ace077bb0bc1e515c3ad98b307188
MD5 e02ccf52631de777affed077de8a70f5
BLAKE2b-256 ed196099816ba8a82a8c28c32b5bd2d7edd735c752a96b6c8a58c2476be60bd2

See more details on using hashes here.

Provenance

The following attestation bundles were made for bosa_core_binary-0.4.3-cp312-cp312-win_amd64.whl:

Publisher: build-binary.yml on GDP-ADMIN/bosa-sdk

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bosa_core_binary-0.4.3-cp312-cp312-manylinux_2_36_x86_64.whl.

File metadata

File hashes

Hashes for bosa_core_binary-0.4.3-cp312-cp312-manylinux_2_36_x86_64.whl
Algorithm Hash digest
SHA256 f9cd69e1f3ab063f8cd6bb9a7c244fc72893a808bb26636303437f390194c80f
MD5 d9070cd2229aabd00990782da209c096
BLAKE2b-256 dc5c427adf8c49be0a1e2553c956ff65bcbefb6bfb359af5ce45e5f01b5ddc8b

See more details on using hashes here.

File details

Details for the file bosa_core_binary-0.4.3-cp312-cp312-manylinux_2_31_x86_64.whl.

File metadata

File hashes

Hashes for bosa_core_binary-0.4.3-cp312-cp312-manylinux_2_31_x86_64.whl
Algorithm Hash digest
SHA256 77d445060087df02755ca4f39574518d8c725c0b98d348de4b86fec912fc83ff
MD5 ac28aa51ecdf4aaf94c4e4c4aebfcc8e
BLAKE2b-256 88ba5447b4f280bb198ef86e27b75272a3bcd7b2eb25950ecb8924ff15635092

See more details on using hashes here.

File details

Details for the file bosa_core_binary-0.4.3-cp312-cp312-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for bosa_core_binary-0.4.3-cp312-cp312-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 3ea06a53f13a8fd6a117deddf2f24fc88864926fe566045ff83a819a2986bccf
MD5 09a46f698551acd322c2f5e5c2de333d
BLAKE2b-256 e0e57f07160537eec57949f122dbf9a14616e23f03396d6111b3461e8bbff2dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for bosa_core_binary-0.4.3-cp312-cp312-macosx_14_0_arm64.whl:

Publisher: build-binary.yml on GDP-ADMIN/bosa-sdk

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bosa_core_binary-0.4.3-cp312-cp312-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for bosa_core_binary-0.4.3-cp312-cp312-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 ca7a1b31a6da623b9373a63ad7cab5ff030dc850a21bbc4dc0475324b7eb23c7
MD5 f0676bde9a96e74f2bf5dbdf728aa61a
BLAKE2b-256 cc3c850e2fffedd0af250042e82d0fc8b949f284275f8ce24a0f5bfcd5c96249

See more details on using hashes here.

Provenance

The following attestation bundles were made for bosa_core_binary-0.4.3-cp312-cp312-macosx_13_0_x86_64.whl:

Publisher: build-binary.yml on GDP-ADMIN/bosa-sdk

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bosa_core_binary-0.4.3-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for bosa_core_binary-0.4.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 0b02ebbf4f9d6db064c40337931b21e655737f6d7332004008c98375bc4b0c5e
MD5 08b646e3e17d0b1d0c32979446f5636a
BLAKE2b-256 af329a9fea7de61db830dfda963e13d1c1c005b4706aefc0bc0c8ea806b12fb3

See more details on using hashes here.

Provenance

The following attestation bundles were made for bosa_core_binary-0.4.3-cp311-cp311-win_amd64.whl:

Publisher: build-binary.yml on GDP-ADMIN/bosa-sdk

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bosa_core_binary-0.4.3-cp311-cp311-manylinux_2_36_x86_64.whl.

File metadata

File hashes

Hashes for bosa_core_binary-0.4.3-cp311-cp311-manylinux_2_36_x86_64.whl
Algorithm Hash digest
SHA256 17c3adb40bc202b3714e433396e78e55020b82d01bd101ccbad150746684cfed
MD5 8b0e49eb10a2cb778c3dd0462f18a029
BLAKE2b-256 7225542a4bdb6a47983e3c8dfa52441e57beafc0d99f48f07fc0131ce35a3d92

See more details on using hashes here.

File details

Details for the file bosa_core_binary-0.4.3-cp311-cp311-manylinux_2_31_x86_64.whl.

File metadata

File hashes

Hashes for bosa_core_binary-0.4.3-cp311-cp311-manylinux_2_31_x86_64.whl
Algorithm Hash digest
SHA256 b9cdcb699461a4885d9b3cda99115f4756cdd2ad5de7568ed08676baca862a50
MD5 e81cfaae8a753313845ac0c4ff519969
BLAKE2b-256 f1c72d5950c9480e26e2513bb4c28dcf21702c3e5c1557494ef1128cb20e256d

See more details on using hashes here.

File details

Details for the file bosa_core_binary-0.4.3-cp311-cp311-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for bosa_core_binary-0.4.3-cp311-cp311-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 f66397f905269e6dc9e03d18a86ed898ee7fb3be67695141002684f6a45f36ae
MD5 ce6b8da4686db93fc27fa9b19744960e
BLAKE2b-256 1884efe6f94dff2e25516be40346bb2568f8d2a16dbaba225f9d9733a92c96d7

See more details on using hashes here.

Provenance

The following attestation bundles were made for bosa_core_binary-0.4.3-cp311-cp311-macosx_14_0_arm64.whl:

Publisher: build-binary.yml on GDP-ADMIN/bosa-sdk

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bosa_core_binary-0.4.3-cp311-cp311-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for bosa_core_binary-0.4.3-cp311-cp311-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 cbd0025b574d06e569f90e58a080253350376588383d7c0a56a0317c412dcba9
MD5 a9e492fb0b195c41f19ef428709c7690
BLAKE2b-256 2e4f7d7f39ac91f54854013ebebfa82f9214bbc45e87cc8d3cfd067f08b52b82

See more details on using hashes here.

Provenance

The following attestation bundles were made for bosa_core_binary-0.4.3-cp311-cp311-macosx_13_0_x86_64.whl:

Publisher: build-binary.yml on GDP-ADMIN/bosa-sdk

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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