deprecated

$ pip3 install Deprecated
1from deprecated import deprecated
2
3@deprecated(version="バージョン", reason="廃止理由。代替手順など")
4def read_data(...):
5    pass

@deprecatedデコレーターで、特定の関数が廃止予定であることを通知できます。

リファレンス