__init__.py 276 B

1234567891011
  1. from __future__ import annotations
  2. import warnings
  3. warnings.warn( # deprecated in 14.0 - 2024-11-09
  4. "websockets.legacy is deprecated; "
  5. "see https://websockets.readthedocs.io/en/stable/howto/upgrade.html "
  6. "for upgrade instructions",
  7. DeprecationWarning,
  8. )