deprecated

Package — UtilityPython 3.7+Intermediate

Decorator to mark functions and classes as deprecated

Quick Info

Documentation
Official Docs
Python Version
3.7+
Dependencies
wrapt
Install
pip install deprecated

Learn by Difficulty

Quick Example

python
# Install: pip install deprecated
import deprecated

# Basic deprecated usage
print(f"Using deprecated")
# See documentation for detailed examples

deprecated is a third-party package. Decorator to mark functions and classes as deprecated. Install with: pip install deprecated

Try in Playground

Tags

packageutilityhelper