We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6c947c5 commit cff1b35Copy full SHA for cff1b35
1 file changed
quickstarts/python-detect-anomalies.py
@@ -1,6 +1,7 @@
1
# Copyright (c) Microsoft Corporation. All rights reserved.
2
# Licensed under the MIT License.
3
# <imports>
4
+import os
5
import requests
6
import json
7
# </imports>
@@ -63,7 +64,8 @@ def detect_latest(request_data):
63
64
# <fileLoad>
65
file_handler = open(data_location)
66
json_data = json.load(file_handler)
67
+# </fileLoad>
68
+# <methodCalls>
69
detect_batch(json_data)
70
detect_latest(json_data)
-# </fileLoad>
-
71
+# </methodCalls>
0 commit comments