We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5cddbde commit dee0786Copy full SHA for dee0786
kubernetes/client/apis/__init__.py
@@ -0,0 +1,11 @@
1
+from __future__ import absolute_import
2
+import warnings
3
+
4
+# flake8: noqa
5
6
+# alias kubernetes.client.api package and print deprecation warning
7
+from kubernetes.client.api import *
8
+warnings.warn(
9
+ "The package kubernetes.client.apis is renamed and deprecated, use kubernetes.client.api instead (please note that the trailing s was removed).",
10
+ DeprecationWarning
11
+)
0 commit comments