Python utility library.
Project description
Copyright 2026 UsamaAliceWhite All Rights Reserved
Overview
- Purpose
- Python用ユーティリティライブラリ
- Language
- Python
- Third Party Library
- None
- Platform
- Windows
- Linux
- Mac
Function
Core
- SingletonPattern
- Purpose
- スレッドセーフなシングルトンパターンのメタクラス
- SampleCode
from UsamaAliceWhite.Core import SingletonPattern class SeaOtter(metaclass= SingletonPattern): def __init__(self) -> None: pass a = SeaOtter() b = SeaOtter() assert a is b
- Purpose
System
- is_remote_debug_port_active
- Purpose
- リモートデバッグポートの使用状況を確認
- SampleCode
from UsamaAliceWhite.System import is_remote_debug_port_active if is_remote_debug_port_active(port= 5368): print("Port is in use.") else: print("Port is available.")
- Purpose
- launch_browser_with_remote_debug
- Purpose
- Chromium系ブラウザをリモートデバッグモードで起動
- SampleCode
from UsamaAliceWhite.System import launch_browser_with_remote_debug from subprocess import Popen process: Popen = launch_browser_with_remote_debug( browser_path= "C:/Program Files/Google/Chrome/Application/chrome.exe", profile_path= "C:/UsamaAliceWhite/Profile/", debug_port= 5368, add_cmdline_args= ["--no-first-run", "--start-maximized"] )
- Purpose
DirectoryStructure
UsamaAliceWhite-PyPI/
├── UsamaAliceWhite/
│ ├── Core/
│ │ ├── __init__.py
│ │ └── MetaClass.py
│ ├── System/
│ │ ├── __init__.py
│ │ └── Process.py
│ ├── __init__.py
│ └── py.typed
├── LICENSE
└── README.md
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 Distribution
usamaalicewhite-6.0.0.tar.gz
(4.4 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file usamaalicewhite-6.0.0.tar.gz.
File metadata
- Download URL: usamaalicewhite-6.0.0.tar.gz
- Upload date:
- Size: 4.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
48283f90d2e5244d3419ef33fcec60ddc3f6df99874bb34613a5efcf5d6a5616
|
|
| MD5 |
85245ac98a1261d8c46d29207d34fb9a
|
|
| BLAKE2b-256 |
ea182ff18ea72611f15509ff7cc334250dfe1747360fd9c15e0c58521e953ee0
|
File details
Details for the file usamaalicewhite-6.0.0-py3-none-any.whl.
File metadata
- Download URL: usamaalicewhite-6.0.0-py3-none-any.whl
- Upload date:
- Size: 6.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1fefee0d56ad97badb982cd1252961b4f9c476dc2dd670a2fa79cbb9476ba53a
|
|
| MD5 |
5dc0acc470b2fce919489172a94ccbdc
|
|
| BLAKE2b-256 |
398bfdb4a541f662a64ddfb024872dbad120ea8abae6ce302fc4beeda95293a9
|