Initial commit
This commit is contained in:
commit
4b64ffcb4c
68
.github/workflows/pytest.yml
vendored
Normal file
68
.github/workflows/pytest.yml
vendored
Normal file
@ -0,0 +1,68 @@
|
||||
name: Python Test
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
- develop
|
||||
paths:
|
||||
- 'src/**'
|
||||
- 'tests/**'
|
||||
- '.github/workflows/pytest.yml'
|
||||
- 'requirements.txt'
|
||||
- 'requirements-dev.txt'
|
||||
jobs:
|
||||
python-test:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: Set up Python
|
||||
uses: actions/setup-python@v4
|
||||
with:
|
||||
python-version: "3.12"
|
||||
|
||||
- name: Install dependencies
|
||||
id: installDependencies
|
||||
run: |
|
||||
pip install -r requirements.txt
|
||||
pip install -r requirements-dev.txt
|
||||
|
||||
- name: Run Python Test
|
||||
id: runPyTest
|
||||
run: |
|
||||
pytest --junitxml=pytest.xml --cov-report term-missing --cov=src tests/ | tee pytest-coverage.txt
|
||||
|
||||
- name: Coverage Report
|
||||
id: CoverageReport
|
||||
run: |
|
||||
coverage-badge -o coverage.svg
|
||||
python - <<EOF
|
||||
from src.lib.generate_coverage import GenerateCoverage
|
||||
generate_coverage = GenerateCoverage()
|
||||
generate_coverage.save_table()
|
||||
EOF
|
||||
|
||||
- name: Update Readme
|
||||
id: updateReadme
|
||||
run: |
|
||||
echo "# Pytest Report" > README.md
|
||||
echo "" >> README.md
|
||||
echo "" >> README.md
|
||||
echo "" >> README.md
|
||||
cat tests/table.md >> README.md
|
||||
cat README.md
|
||||
|
||||
- name: Check files before upload
|
||||
run: ls -l README.md coverage.svg
|
||||
|
||||
- name: Upload artifact
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: ret-artifact
|
||||
path: |
|
||||
README.md
|
||||
coverage.svg
|
||||
|
||||
171
.gitignore
vendored
Normal file
171
.gitignore
vendored
Normal file
@ -0,0 +1,171 @@
|
||||
# ---> Python
|
||||
# Byte-compiled / optimized / DLL files
|
||||
__pycache__/
|
||||
*.py[cod]
|
||||
*$py.class
|
||||
|
||||
# C extensions
|
||||
*.so
|
||||
|
||||
# Distribution / packaging
|
||||
.Python
|
||||
build/
|
||||
develop-eggs/
|
||||
dist/
|
||||
downloads/
|
||||
eggs/
|
||||
.eggs/
|
||||
lib/
|
||||
lib64/
|
||||
parts/
|
||||
sdist/
|
||||
var/
|
||||
wheels/
|
||||
share/python-wheels/
|
||||
*.egg-info/
|
||||
.installed.cfg
|
||||
*.egg
|
||||
MANIFEST
|
||||
|
||||
# PyInstaller
|
||||
# Usually these files are written by a python script from a template
|
||||
# before PyInstaller builds the exe, so as to inject date/other infos into it.
|
||||
*.manifest
|
||||
*.spec
|
||||
|
||||
# Installer logs
|
||||
pip-log.txt
|
||||
pip-delete-this-directory.txt
|
||||
|
||||
# Unit test / coverage reports
|
||||
htmlcov/
|
||||
.tox/
|
||||
.nox/
|
||||
.coverage
|
||||
.coverage.*
|
||||
.cache
|
||||
.ruff_cache
|
||||
nosetests.xml
|
||||
coverage.xml
|
||||
*.cover
|
||||
*.py,cover
|
||||
.hypothesis/
|
||||
.pytest_cache/
|
||||
cover/
|
||||
|
||||
# Translations
|
||||
*.mo
|
||||
*.pot
|
||||
|
||||
# Django stuff:
|
||||
*.log
|
||||
local_settings.py
|
||||
db.sqlite3
|
||||
db.sqlite3-journal
|
||||
|
||||
# Flask stuff:
|
||||
instance/
|
||||
.webassets-cache
|
||||
|
||||
# Scrapy stuff:
|
||||
.scrapy
|
||||
|
||||
# Sphinx documentation
|
||||
docs/_build/
|
||||
|
||||
# PyBuilder
|
||||
.pybuilder/
|
||||
target/
|
||||
|
||||
# Jupyter Notebook
|
||||
.ipynb_checkpoints
|
||||
|
||||
# IPython
|
||||
profile_default/
|
||||
ipython_config.py
|
||||
|
||||
# pyenv
|
||||
# For a library or package, you might want to ignore these files since the code is
|
||||
# intended to run in multiple environments; otherwise, check them in:
|
||||
# .python-version
|
||||
|
||||
# pipenv
|
||||
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
|
||||
# However, in case of collaboration, if having platform-specific dependencies or dependencies
|
||||
# having no cross-platform support, pipenv may install dependencies that don't work, or not
|
||||
# install all needed dependencies.
|
||||
#Pipfile.lock
|
||||
|
||||
# UV
|
||||
# Similar to Pipfile.lock, it is generally recommended to include uv.lock in version control.
|
||||
# This is especially recommended for binary packages to ensure reproducibility, and is more
|
||||
# commonly ignored for libraries.
|
||||
#uv.lock
|
||||
|
||||
# poetry
|
||||
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
|
||||
# This is especially recommended for binary packages to ensure reproducibility, and is more
|
||||
# commonly ignored for libraries.
|
||||
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
|
||||
#poetry.lock
|
||||
|
||||
# pdm
|
||||
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
|
||||
#pdm.lock
|
||||
# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
|
||||
# in version control.
|
||||
# https://pdm.fming.dev/latest/usage/project/#working-with-version-control
|
||||
.pdm.toml
|
||||
.pdm-python
|
||||
.pdm-build/
|
||||
|
||||
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
|
||||
__pypackages__/
|
||||
|
||||
# Celery stuff
|
||||
celerybeat-schedule
|
||||
celerybeat.pid
|
||||
|
||||
# SageMath parsed files
|
||||
*.sage.py
|
||||
|
||||
# Environments
|
||||
.env
|
||||
.venv
|
||||
env/
|
||||
venv/
|
||||
ENV/
|
||||
env.bak/
|
||||
venv.bak/
|
||||
|
||||
# Spyder project settings
|
||||
.spyderproject
|
||||
.spyproject
|
||||
|
||||
# Rope project settings
|
||||
.ropeproject
|
||||
|
||||
# mkdocs documentation
|
||||
/site
|
||||
|
||||
# mypy
|
||||
.mypy_cache/
|
||||
.dmypy.json
|
||||
dmypy.json
|
||||
|
||||
# Pyre type checker
|
||||
.pyre/
|
||||
|
||||
# pytype static type analyzer
|
||||
.pytype/
|
||||
|
||||
# Cython debug symbols
|
||||
cython_debug/
|
||||
|
||||
# PyCharm
|
||||
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
|
||||
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
|
||||
# and can be added to the global gitignore or merged into this file. For a more nuclear
|
||||
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
|
||||
#.idea/
|
||||
|
||||
1
.python-version
Normal file
1
.python-version
Normal file
@ -0,0 +1 @@
|
||||
3.12
|
||||
6
.vscode/extensions.json
vendored
Normal file
6
.vscode/extensions.json
vendored
Normal file
@ -0,0 +1,6 @@
|
||||
{
|
||||
"recommendations": [
|
||||
"charliermarsh.ruff",
|
||||
"littlefoxteam.vscode-python-test-adapter"
|
||||
]
|
||||
}
|
||||
7
.vscode/settings.json
vendored
Normal file
7
.vscode/settings.json
vendored
Normal file
@ -0,0 +1,7 @@
|
||||
{
|
||||
"python.testing.pytestArgs": [
|
||||
"tests"
|
||||
],
|
||||
"python.testing.unittestEnabled": false,
|
||||
"python.testing.pytestEnabled": true
|
||||
}
|
||||
44
AGENT.md
Normal file
44
AGENT.md
Normal file
@ -0,0 +1,44 @@
|
||||
# AGENT ガイドライン
|
||||
|
||||
このドキュメントは、本リポジトリで動作する **AIエージェント(Cursor, ChatGPT など)向けの指示書**です。
|
||||
コード提案・自動修正・ドキュメント生成を行う際は、必ずこの内容に従ってください。
|
||||
|
||||
---
|
||||
|
||||
## 1. プロジェクト概要
|
||||
|
||||
- プロジェクト名: `TODO: プロジェクト名を書いてください`
|
||||
- 主な用途: `TODO: このプロジェクトの目的を1〜3行で書く`
|
||||
- 想定する利用者:
|
||||
- `例: 自分用のテンプレ / 小規模API / バッチスクリプト など`
|
||||
|
||||
|
||||
## 2. 技術スタック & 環境
|
||||
|
||||
- 言語: Python 3.x(`TODO: 具体バージョンを書く: 例: 3.12`)
|
||||
- 仮想環境: `.venv`(`python -m venv .venv`)
|
||||
- パッケージ管理: `pip`(`requirements.txt` を利用)
|
||||
- Linter / Formatter:
|
||||
- **Ruff**(Lint & Format 両方に使用)
|
||||
- テスト: `pytest`(予定または導入済みなら)
|
||||
|
||||
### 環境のセットアップ
|
||||
|
||||
```bash
|
||||
python -m venv .venv
|
||||
source .venv/bin/activate # Windows: .venv\Scripts\activate
|
||||
pip install -r requirements.txt
|
||||
```
|
||||
|
||||
|
||||
### フォルダ構成
|
||||
|
||||
.
|
||||
├── src/ # メインのアプリケーションコード
|
||||
├── tests/ # テストコード
|
||||
├── requirements.txt
|
||||
├── ruff.toml
|
||||
└── AGENT.md # このファイル
|
||||
|
||||
エージェントは 原則として src/ 以下にコードを追加・修正してください。
|
||||
設定ファイルやCI/CDは、既存の構成に従ってください。
|
||||
9
LICENSE
Normal file
9
LICENSE
Normal file
@ -0,0 +1,9 @@
|
||||
MIT License
|
||||
|
||||
Copyright (c) 2025 templates
|
||||
|
||||
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.
|
||||
53
README.md
Normal file
53
README.md
Normal file
@ -0,0 +1,53 @@
|
||||
# python-template
|
||||
|
||||
Python Template
|
||||
|
||||
## Tool
|
||||
|
||||
### Test
|
||||
|
||||
テスト用のライブラリをインストールしてください。
|
||||
|
||||
```sh
|
||||
pip install -r requirements-dev.txt
|
||||
```
|
||||
|
||||
テストを実行する
|
||||
|
||||
```sh
|
||||
pytest tests/
|
||||
# ログを出力する場合
|
||||
# pytest -s tests/
|
||||
```
|
||||
|
||||
### Lint
|
||||
|
||||
|
||||
```sh
|
||||
pip install -r requirements-dev.txt
|
||||
```
|
||||
|
||||
**lintを実行する方法**
|
||||
|
||||
```sh
|
||||
ruff check .
|
||||
```
|
||||
|
||||
例えば使われていない変数が存在する場合はなどは以下のように表示される
|
||||
|
||||
```log
|
||||
F841 Local variable `x` is assigned to but never used
|
||||
--> src/main.py:7:5
|
||||
|
|
||||
6 | def func_wrong():
|
||||
7 | x = 1
|
||||
| ^
|
||||
|
|
||||
help: Remove assignment to unused variable `x`
|
||||
```
|
||||
|
||||
**自動生成も実行する場合**
|
||||
|
||||
```sh
|
||||
ruff check . --fix
|
||||
```
|
||||
17
examples/example.py
Normal file
17
examples/example.py
Normal file
@ -0,0 +1,17 @@
|
||||
import sys
|
||||
import os
|
||||
|
||||
sys.path.append(os.path.abspath(os.path.join(os.path.dirname(__file__), "..", "src")))
|
||||
|
||||
|
||||
from utils.custom_logger import get_logger
|
||||
|
||||
logger = get_logger(__name__)
|
||||
|
||||
|
||||
def example():
|
||||
logger.info("Application started")
|
||||
print("Hello, World!")
|
||||
|
||||
|
||||
example()
|
||||
7
pyproject.toml
Normal file
7
pyproject.toml
Normal file
@ -0,0 +1,7 @@
|
||||
[project]
|
||||
name = "プロジェクト名を設定してください"
|
||||
version = "0.1.0"
|
||||
description = "プロジェクトの説明"
|
||||
readme = "README.md"
|
||||
requires-python = ">=3.12"
|
||||
dependencies = []
|
||||
54
readme/python_init.md
Normal file
54
readme/python_init.md
Normal file
@ -0,0 +1,54 @@
|
||||
# Python Project
|
||||
|
||||
## 仮想環境を構築する
|
||||
|
||||
### venvで構築する
|
||||
|
||||
```sh
|
||||
python3 -m venv .venv
|
||||
# Linux
|
||||
source .venv/bin/activate
|
||||
# Windows
|
||||
# .venv/Scripts/activate
|
||||
|
||||
pip install -r requirements.txt
|
||||
# For Develop(Tests,Docs)
|
||||
pip install -r requirements-dev.txt
|
||||
```
|
||||
|
||||
### uvで構築する
|
||||
|
||||
プロジェクトを生成する場合
|
||||
|
||||
```bash
|
||||
uv init <ProjectName>
|
||||
# --pythonまたは-pにバージョンを指定できます
|
||||
# uv init <ProjectName> -p 3.10とすると">=3.10,<3.11"となる
|
||||
```
|
||||
|
||||
|
||||
```sh
|
||||
uv sync
|
||||
```
|
||||
|
||||
## Linter
|
||||
|
||||
### ruffライブラリの場合
|
||||
|
||||
RuffFlake8 のルールを多数サポートしています。
|
||||
ruff.tomlで設定できます
|
||||
|
||||
|
||||
```toml
|
||||
select = ["E", "W"]
|
||||
line-length = 88
|
||||
```
|
||||
|
||||
|
||||
| 分類 | コード | 内容 |
|
||||
| ---- | ------ | ----------------------------------- |
|
||||
| W | W291 | 末尾スペース(trailing whitespace) |
|
||||
| | W293 | ファイル末尾の空行の空白 |
|
||||
| E | E303 | 空行が多すぎる |
|
||||
| | E501 | 行が長すぎる |
|
||||
|
||||
7
requirements-dev.txt
Normal file
7
requirements-dev.txt
Normal file
@ -0,0 +1,7 @@
|
||||
# testing tools
|
||||
pytest
|
||||
pytest-cov
|
||||
coverage-badge
|
||||
|
||||
# Linting tool
|
||||
ruff
|
||||
0
requirements.txt
Normal file
0
requirements.txt
Normal file
6
ruff.toml
Normal file
6
ruff.toml
Normal file
@ -0,0 +1,6 @@
|
||||
line-length = 88
|
||||
|
||||
# 末尾スペース・空行まわりをチェックするのは E と W系のルール
|
||||
[lint]
|
||||
select = ["E", "W"]
|
||||
ignore = []
|
||||
12
src/main.py
Normal file
12
src/main.py
Normal file
@ -0,0 +1,12 @@
|
||||
from utils.custom_logger import get_logger
|
||||
|
||||
logger = get_logger(__name__)
|
||||
|
||||
|
||||
def main():
|
||||
logger.info("Application started")
|
||||
print("Hello, World!")
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
||||
57
src/utils/custom_logger.py
Normal file
57
src/utils/custom_logger.py
Normal file
@ -0,0 +1,57 @@
|
||||
import os
|
||||
import logging
|
||||
import functools
|
||||
from .singleton import Singleton
|
||||
|
||||
|
||||
class CustomLogger(Singleton):
|
||||
"""
|
||||
Singleton logger class that initializes a logger with a specified name and log file.
|
||||
It provides a method to log entry and exit of functions.
|
||||
|
||||
"""
|
||||
|
||||
def __init__(self, name="main", log_file=None, level=logging.INFO):
|
||||
if hasattr(self, "_initialized") and self._initialized:
|
||||
return # すでに初期化済みなら何もしない
|
||||
# self.logger.setLevel(level)
|
||||
|
||||
if os.getenv("ENV", "local"):
|
||||
self.logger = logging.getLogger(name)
|
||||
self.logger.setLevel(level)
|
||||
self.logger.propagate = False
|
||||
|
||||
formatter = logging.Formatter(
|
||||
"%(asctime)s %(levelname)s [%(filename)s:%(lineno)3d]: %(message)s"
|
||||
)
|
||||
|
||||
# Console handler
|
||||
ch = logging.StreamHandler()
|
||||
ch.setFormatter(formatter)
|
||||
self.logger.addHandler(ch)
|
||||
|
||||
# File handler
|
||||
if log_file:
|
||||
fh = logging.FileHandler(log_file, encoding="utf-8")
|
||||
fh.setFormatter(formatter)
|
||||
self.logger.addHandler(fh)
|
||||
|
||||
self._initialized = True
|
||||
|
||||
def get_logger(self):
|
||||
return self.logger
|
||||
|
||||
def log_entry_exit(self, func):
|
||||
@functools.wraps(func)
|
||||
def wrapper(*args, **kwargs):
|
||||
self.logger.info(f"Enter: {func.__qualname__}")
|
||||
result = func(*args, **kwargs)
|
||||
self.logger.info(f"Exit: {func.__qualname__}")
|
||||
return result
|
||||
|
||||
return wrapper
|
||||
|
||||
|
||||
def get_logger(name="main", log_file=None, level=logging.INFO):
|
||||
custom_logger = CustomLogger(name, log_file, level)
|
||||
return custom_logger.get_logger()
|
||||
22
src/utils/singleton.py
Normal file
22
src/utils/singleton.py
Normal file
@ -0,0 +1,22 @@
|
||||
"""Singleton pattern implementation in Python.
|
||||
This implementation is thread-safe and
|
||||
ensures that only one instance of the class is created.
|
||||
|
||||
Singleton が提供するのは「同じインスタンスを返す仕組み」
|
||||
* __init__() は毎回呼ばれる(多くの人が意図しない動作)
|
||||
* __init__の2回目は_initialized というフラグは 使う側で管理する必要がある。
|
||||
"""
|
||||
|
||||
import threading
|
||||
|
||||
|
||||
class Singleton(object):
|
||||
_instances = {}
|
||||
_lock = threading.Lock()
|
||||
|
||||
def __new__(cls, *args, **kwargs):
|
||||
if cls not in cls._instances:
|
||||
with cls._lock:
|
||||
if cls not in cls._instances: # ダブルチェック
|
||||
cls._instances[cls] = super(Singleton, cls).__new__(cls)
|
||||
return cls._instances[cls]
|
||||
6
tests/conftest.py
Normal file
6
tests/conftest.py
Normal file
@ -0,0 +1,6 @@
|
||||
import sys
|
||||
from pathlib import Path
|
||||
|
||||
# srcディレクトリをパスに追加
|
||||
src_path = Path(__file__).parent.parent / "src"
|
||||
sys.path.insert(0, str(src_path))
|
||||
27
tests/test_main.py
Normal file
27
tests/test_main.py
Normal file
@ -0,0 +1,27 @@
|
||||
import pytest
|
||||
from utils.custom_logger import get_logger
|
||||
|
||||
from main import main
|
||||
|
||||
|
||||
def test_main(capsys):
|
||||
"""mainが正しく実行されることを確認"""
|
||||
main()
|
||||
captured = capsys.readouterr()
|
||||
assert "Hello, World!" in captured.out
|
||||
|
||||
|
||||
def test_main_no_exception():
|
||||
"""mainが例外を発生させないことを確認"""
|
||||
try:
|
||||
main()
|
||||
except Exception as e:
|
||||
pytest.fail(f"main() raised an exception: {e}")
|
||||
|
||||
|
||||
def test_logger_initialization():
|
||||
"""ロガーが正しく初期化されることを確認"""
|
||||
logger = get_logger()
|
||||
logger.info("This is a test log message.")
|
||||
assert logger is not None
|
||||
assert logger.name == "main"
|
||||
Loading…
x
Reference in New Issue
Block a user