Metadata-Version: 2.4
Name: UsamaAliceWhite
Version: 5.0.0
Summary: A versatile utility library designed to streamline common development tasks.
Author: UsamaAliceWhite
License: MIT License
        
        Copyright (c) 2026 UsamaAliceWhite
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
Project-URL: GitHub, https://github.com/UsamaAliceWhite/UsamaAliceWhite-PyPI
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Utilities
Requires-Python: >=3.13
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: psutil>=7.2.2
Requires-Dist: screeninfo>=0.8.1
Dynamic: license-file

Copyright 2026 UsamaAliceWhite All Rights Reserved


## Functions
### Core
MetaClassやDecoratorなどの基底システムに関するライブラリ。
1. SingletonPattern
    * シングルトンパターン。メタクラスとして使用。
    ```
    from UsamaAliceWhite.Core import SingletonPattern
    class DatabaseManager(metaclass= SingletonPattern):
        def __init__(self) -> None:
            pass
    db1 = DatabaseManager()
    db2 = DatabaseManager()
    assert db1 is db2
    ```


### Device
モニターやマウスなどハードウェアに関するライブラリ。
1. get_monitor_geometry() -> tuple[int, int, int, int]
    * モニターの幾何学情報(x,y,width,height)を取得する。


### System
システムに関するライブラリ。
1. is_localhost_active() -> bool
    * 指定のローカルホスト(port)の使用状況を確認する。
1. is_process_on_localhost_active() -> bool
    * 指定したプロセスがローカルホスト(ポート)での起動状況を確認。
1. launch_browser_on_localhost() -> subprocess.Popen
    * 指定したプロファイルとローカルホスト(port)にてブラウザを起動する。


## DirectoryStructure
```
UsamaAliceWhite-PyPI/
├── UsamaAliceWhite/
│   ├── Core/
│   │   ├── __init__.py
│   │   └── MetaClass.py
│   ├── System/
│   │   ├── __init__.py
│   │   └── Process.py
│   ├── __init__.py
│   └── py.typed
├── LICENSE
├── pyproject.toml
└── README.md
```
