Not all features nor Python versions are supported at this time.
See the 🎯 Roadmap for more details on the status of this project.
Add the following dependency to your project:
backports.zstd ; python_version<'3.14'
Use the following conditional import:
import sys
if sys.version_info < (3, 14):
from backports import zstd
else:
from compression import zstd
Refer to the official Python documentation for usage of the module.