emcd-appcoreΒΆ
ποΈ 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
AsyncExitStackfor 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
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
tomlifor TOML parsing with accretive data structures that can grow but never shrink.Platform Integration: Leverages
platformdirsfor cross-platform directory discovery andaiofilesfor async file operations.Logging Enhancement: Optional integration with Rich for enhanced console output with graceful fallbacks.
Distribution Management: Uses
importlib-metadataandimportlib-resourcesfor 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.