プログラミングしたい
argparse
datetime
@decorator
__dunder__
try...except...finally
raise
python-gitlab
particle
pathlib
pendulum
platform
platformdirs
random
numpy.random
re
requests
httpx
subprocess
tomllib
tqdm
typer
urllib.parse
webbrowser
pexpect
Loguru
black
ruff
pytest
coverage
unittest.mock
mypy
pyright
tox
文書作成したい
未分類
用語集
$ pip3 install Deprecated
1from deprecated import deprecated 2 3@deprecated(version="バージョン", reason="廃止理由。代替手順など") 4def read_data(...): 5 pass
@deprecatedデコレーターで、特定の関数が廃止予定であることを通知できます。
@deprecated
deprecated
tantale/deprecated