Skip to main content
Package Version PyPI - Status Tests Status Code Coverage Percentage Project License Python Versions

🏗️ A Python library package which provides application foundation components - streamlined async initialization, configuration management, platform directories, logging setup, and environment handling for Python applications.

Key Features ⭐

  • 🚀 Async Application Initialization: Single prepare() function that sets up your entire application foundation with sensible defaults.

  • 📁 Platform Directory Management: Automatic discovery and creation of platform-specific directories for configuration, data, and cache.

  • ⚙️ TOML Configuration System: Hierarchical configuration loading with includes, template variables, and overrides. Can bring your own configuration system too.

  • 🎯 Distribution Detection: Automatic detection of development vs production deployment modes with package introspection.

  • 📝 Logging Configuration: Logging setup with plain and rich modes and environment variable overrides.

  • 🔄 Resource Management: Integration with AsyncExitStack for proper cleanup of async resources.

  • 🏷️ Safety: Full type annotations with immutable data structures for thread safety.

Installation 📦

Method: Install Python Package

Install via uv pip command:

uv pip install emcd-appcore

Or, install via pip:

pip install emcd-appcore

Optional Dependencies ⚙️

For CLI applications, install the cli extra which includes Tyro and Rich:

pip install emcd-appcore[cli]

For enhanced console output without CLI framework:

pip install emcd-appcore[rich]

Examples 💡

Quick Start 🚀

The simplest way to initialize your application:

>>> import asyncio
>>> import contextlib
>>> import appcore
>>> async def main( ):
...     async with contextlib.AsyncExitStack( ) as exits:
...         auxdata = await appcore.prepare( exits )
...         print( f"App: {auxdata.application.name}" )
...         return auxdata.configuration
>>> # asyncio.run( main( ) )  # Returns configuration dictionary

Platform Directories 📁

Access platform-specific directories for your application:

>>> async def display_directories( ):
...     async with contextlib.AsyncExitStack( ) as exits:
...         application = appcore.ApplicationInformation(
...             name = 'my-app', publisher = 'MyCompany' )
...         auxdata = await appcore.prepare( exits, application = application )
...         dirs = auxdata.directories
...         print( f"Config: {dirs.user_config_path}" )
...         print( f"Data: {dirs.user_data_path}" )
...         print( f"Cache: {dirs.user_cache_path}" )
>>> # asyncio.run( display_directories( ) )

Building CLI Applications 🔧

Build command-line applications using the appcore.cli module:

>>> import asyncio
>>> from appcore import cli, state
>>> class HelloCommand( cli.Command ):
...     async def execute( self, auxdata: state.Globals ) -> None:
...         print( f"Hello from {auxdata.application.name}!" )
>>> class MyApplication( cli.Application ):
...     async def execute( self, auxdata: state.Globals ) -> None:
...         command = HelloCommand( )
...         await command( auxdata )
>>> # asyncio.run( MyApplication( )( ) )

The appcore CLI tool demonstrates these capabilities in action - inspect configuration, environment variables, and platform directories:

$ python -m appcore configuration --display.presentation json
$ python -m appcore environment
$ python -m appcore directories --display.target-file dirs.txt

For a comprehensive implementation example, see sources/appcore/introspection.py which shows advanced patterns including subcommands, display options, and presentation formats.

Dependencies & Architecture 🏛️

Appcore is built on a foundation of proven, lightweight dependencies:

  • Configuration: Uses standard library tomli for TOML parsing with accretive data structures that can grow but never shrink.

  • Platform Integration: Leverages platformdirs for cross-platform directory discovery and aiofiles for async file operations.

  • Logging Enhancement: Optional integration with Rich for enhanced console output with graceful fallbacks.

  • Distribution Management: Uses importlib-metadata and importlib-resources for package introspection and resource handling.

The architecture emphasizes:

  • Immutability: All configuration and state objects are immutable after creation, preventing accidental modifications.

  • Async-First: Built from the ground up for async/await patterns with proper resource management.

  • Dependency Injection: Configurable components that can be replaced or extended without modifying core functionality.

  • Type Safety: Comprehensive type annotations for excellent IDE support and static analysis.

Contribution 🤝

Contribution to this project is welcome! However, it must follow the code of conduct for the project.

Please file bug reports and feature requests in the issue tracker or submit pull requests to improve the source code or documentation.

For development guidance and standards, please see the development guide.

Additional Indicia

GitHub last commit Copier Hatch pre-commit Pyright Ruff PyPI - Implementation PyPI - Wheel

Other Projects by This Author 🌟

  • python-absence (absence on PyPI)

    🕳️ A Python library package which provides a sentinel for absent values - a falsey, immutable singleton that represents the absence of a value in contexts where None or False may be valid values.

  • python-accretive (accretive on PyPI)

    🌌 A Python library package which provides accretive data structures - collections which can grow but never shrink.

  • python-classcore (classcore on PyPI)

    🏭 A Python library package which provides foundational class factories and decorators for providing classes with attributes immutability and concealment and other custom behaviors.

  • python-detextive (detextive on PyPI)

    🕵️ A Python library which provides consolidated text detection capabilities for reliable content analysis. Offers MIME type detection, character set detection, and line separator processing.

  • python-dynadoc (dynadoc on PyPI)

    📝 A Python library package which bridges the gap between rich annotations and automatic documentation generation with configurable renderers and support for reusable fragments.

  • python-falsifier (falsifier on PyPI)

    🎭 A very simple Python library package which provides a base class for falsey objects - objects that evaluate to False in boolean contexts.

  • python-frigid (frigid on PyPI)

    🔒 A Python library package which provides immutable data structures - collections which cannot be modified after creation.

  • python-icecream-truck (icecream-truck on PyPI)

    🍦 Flavorful Debugging - A Python library which enhances the powerful and well-known icecream package with flavored traces, configuration hierarchies, customized outputs, ready-made recipes, and more.

  • python-librovore (librovore on PyPI)

    🐲 Documentation Search Engine - An intelligent documentation search and extraction tool that provides both a command-line interface for humans and an MCP (Model Context Protocol) server for AI agents. Search across Sphinx and MkDocs sites with fuzzy matching, extract clean markdown content, and integrate seamlessly with AI development workflows.

  • python-mimeogram (mimeogram on PyPI)

    📨 A command-line tool for exchanging collections of files with Large Language Models - bundle multiple files into a single clipboard-ready document while preserving directory structure and metadata… good for code reviews, project sharing, and LLM interactions.

Download files

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

Source Distribution

emcd_appcore-1.7.tar.gz (32.1 kB view details)

Uploaded Source

Built Distribution

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

emcd_appcore-1.7-py3-none-any.whl (45.8 kB view details)

Uploaded Python 3

File details

Details for the file emcd_appcore-1.7.tar.gz.

File metadata

  • Download URL: emcd_appcore-1.7.tar.gz
  • Upload date:
  • Size: 32.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for emcd_appcore-1.7.tar.gz
Algorithm Hash digest
SHA256 85c49b3ea21c3326ecb3c41ee1d8c8991078d29a19fda0a011ba38c8af662e97
MD5 72a2074008cd3af07d0951a31c18df29
BLAKE2b-256 b81dc7124e02b6b380d237a680a39c3994063c284962137e4d841e7ae0390e55

See more details on using hashes here.

Provenance

The following attestation bundles were made for emcd_appcore-1.7.tar.gz:

Publisher: releaser.yaml on emcd/python-appcore

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

File details

Details for the file emcd_appcore-1.7-py3-none-any.whl.

File metadata

  • Download URL: emcd_appcore-1.7-py3-none-any.whl
  • Upload date:
  • Size: 45.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for emcd_appcore-1.7-py3-none-any.whl
Algorithm Hash digest
SHA256 57d944bc2562e3f1486ef2f4925fb7a1fa98dd54777577591be70f3f31a89709
MD5 df12e94cc3173d3e9ac9d8d5d5180ecd
BLAKE2b-256 f9b9ae2a146614140c49e505f07e79019fbe1264274f1df0d4ac7b514943474a

See more details on using hashes here.

Provenance

The following attestation bundles were made for emcd_appcore-1.7-py3-none-any.whl:

Publisher: releaser.yaml on emcd/python-appcore

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 Sentry Error logging StatusPage Status page