/python-api-template

Pythonで作成したAPIのテンプレート

Primary LanguagePythonMIT LicenseMIT

python-starter

Pythonのプロジェクトテンプレート

プロジェクトインストール

poetry install

credentialファイル作成

cp python_api_template/.env.sample python_api_template/.env

プログラム実行

poetry run python python_api_template/main.py

or

make main

フォーマット

make format

テスト実行

make test

型チェック

make type-check

全てまとめてチェック

make format test type-check