汎用ユーティリティ(ファイル操作、ログ出力など)
Project description
playground_common_utils
Pythonで汎用的なファイル操作・ディレクトリ操作・ログ出力を支援するライブラリです。
🚀 インストール
インストールするには:
pip install playground-common-utils
📦 主な機能
確認系
is_exist(path): パスの存在確認is_file(path): ファイルか確認is_dir(path): ディレクトリか確認
作成系
create_file(path): 空ファイル作成create_dir(path): ディレクトリ作成
取得系
read_current_dir(): カレントディレクトリ取得read_file(path): ファイル内容取得read_list_dir(path): ディレクトリ内一覧取得
更新系
overwrite_file(path, content): ファイルに上書きappend_file(path, content): ファイルに追記
削除系
delete_file(path): ファイル削除delete_dir(path): ディレクトリ削除
操作系
copy_file(src_path, dst_path): ファイルコピーmove_file(src_path, dst_path): ファイル移動
ログ出力系
logger.debug("Debug test") : デバッグ ログ出力
logger.info("Debug test") : インフォ ログ出力
logger.worning("Debug test") : ワーニング ログ出力
logger.error("Debug test") : エラー ログ出力
logger.critical("Debug test") : クリティカル ログ出力
logger.set_level(WARNING) : Warning以上のログ出力可能 / DEBUG,INFOログは出力しない
🛠️ 使用例
ファイル作成・書き込み・削除
from playground_common_utils.files import *
# ファイル作成
create_file('sample.txt')
# ファイル上書き
overwrite_file('sample.txt', 'Hello World')
# ファイル削除
delete_file('sample.txt')
ディレクトリ操作
from playground_common_utils.files import *
# ディレクトリ作成
create_dir('new_folder')
# ディレクトリ内一覧取得
items = read_list_dir('new_folder')
# ディレクトリ削除
delete_dir('new_folder')
ログ出力
from playground_common_utils.logger import logger
logger.debug("Debug test")
# 🐞 2025-05-20 21:45:19 [DEBUG] | <stdin> / <module> [1] | Debug test
logger.info("Info test")
# ℹ️ 2025-05-20 21:45:33 [INFO] | <stdin> / <module> [2] | Info test
logger.warning("Warning test")
# ⚠️ 2025-05-20 21:45:40 [WARNING] | <stdin> / <module> [3] | Warning test
logger.error("Error test")
# 🚨 2025-05-20 21:45:51 [ERROR] | <stdin> / <module> [4] | Error test
logger.critical("Critical test")
# 🔥 2025-05-20 21:45:58 [CRITICAL] | <stdin> / <module> [5] | Critical test
HTTP通信
from playground_common_utils.logger import http, HTTP_Method
response = fetch(url="http://example.com", # Endpoint URL
method=HTTP_Method.GET, # GET / POST / PUT / DELETE
request_headers={"Content-Type": "application/json"}, # Default = {"Content-Type": "application/json"}
request_dict={}) # python dict型 ⚠️ 内部的にjsonに変換しリクエスト送信します
⚙️ 対応バージョン
- Python 3.7以上
📄 ライセンス
MITライセンス
👤 作者情報
Author: Hiroki Umatani Project URL: Github
playground-common-utilsは、実業務に直結するファイル管理作業の効率化を目指して開発されました。 営業・開発・レポート作成などのプロジェクトを圧倒的スピードで推進するための基盤ライブラリです。
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
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 playground-common-utils-1.3.0.tar.gz.
File metadata
- Download URL: playground-common-utils-1.3.0.tar.gz
- Upload date:
- Size: 6.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
180de27dd56918f848f05aa05a8ba5c7897aada8249418cb1622f8cd1670d06d
|
|
| MD5 |
5abd425e4544f5cb00b0abb369ec0cd2
|
|
| BLAKE2b-256 |
a477fc78621d22b61fc5e7068f6a262db4446cdca588b6197abcaa9d1a2fce53
|
File details
Details for the file playground_common_utils-1.3.0-py3-none-any.whl.
File metadata
- Download URL: playground_common_utils-1.3.0-py3-none-any.whl
- Upload date:
- Size: 7.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
615d9d415eab2e1470db5499c88eaf1010ee63a745e0b6a5391381a84749862c
|
|
| MD5 |
14c09fe36207558d27c15602852dd4ca
|
|
| BLAKE2b-256 |
62808936de1e5d01fb0ea7afef09152fb0e517095c48d86def1918120a64808e
|