Deprecated Library

1.3.1 · active · verified Sat Mar 28

A Python library providing a `@deprecated` decorator to mark functions, classes, or methods as deprecated, encouraging developers to transition to newer APIs. Current version: 1.3.1. Release cadence: Regular updates with new features and fixes.

Warnings

Install

Imports

Quickstart

Example of using the `@deprecated` decorator to mark a function as deprecated.

import deprecated

@deprecated
def old_function():
    pass

old_function()

view raw JSON →