Metadata-Version: 2.4
Name: libcore-hng
Version: 2.0.10
Summary: A core library for scalable Python applications
Author-email: kaioman <kajin0318@gmail.com>
Project-URL: Homepage, https://github.com/kaioman/libcore-hng
Project-URL: Repository, https://github.com/kaioman/libcore-hng
Project-URL: Issues, https://github.com/kaioman/libcore-hng/issues
Description-Content-Type: text/markdown

# libcore-hng

A lightweight Python core package designed to unify access to diverse AI APIs and libraries. It provides a consistent, scalable foundation for building modular applications with clarity and flexibility.

## アプリ初期処理サンプル

このプロジェクトでは、`AppInitializer` を用いてアプリケーションの初期化処理を行います。  
初期化は一度だけ実行し、以降はグローバルインスタンス `app_core` を参照してください。

---

### 初期化方法

```python
import libcore_hng.utils.app_core as uwc

# アプリ初期化（最初の一度だけ呼び出す）
uwc.init_app(__file__, "logger.json")

# 以降はグローバルインスタンスを参照
print(uwc.ins.config.project_root_path)
