wandb 0.17.9__py3-none-macosx_10_14_x86_64.whl → 0.19.8__py3-none-macosx_10_14_x86_64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package_readme.md +8 -0
- wandb/__init__.py +14 -18
- wandb/__init__.pyi +476 -302
- wandb/_iterutils.py +46 -0
- wandb/agents/pyagent.py +2 -2
- wandb/analytics/sentry.py +92 -95
- wandb/apis/attrs.py +15 -4
- wandb/apis/importers/internals/internal.py +6 -6
- wandb/apis/importers/internals/protocols.py +11 -7
- wandb/apis/importers/wandb.py +2 -2
- wandb/apis/internal.py +7 -0
- wandb/apis/normalize.py +15 -23
- wandb/apis/public/_generated/__init__.py +21 -0
- wandb/apis/public/_generated/base.py +128 -0
- wandb/apis/public/_generated/enums.py +4 -0
- wandb/apis/public/_generated/input_types.py +4 -0
- wandb/apis/public/_generated/operations.py +15 -0
- wandb/apis/public/_generated/server_features_query.py +27 -0
- wandb/apis/public/_generated/typing_compat.py +14 -0
- wandb/apis/public/api.py +450 -56
- wandb/apis/public/artifacts.py +31 -54
- wandb/apis/public/files.py +82 -14
- wandb/apis/public/jobs.py +12 -10
- wandb/apis/public/query_generator.py +1 -1
- wandb/apis/public/registries.py +573 -0
- wandb/apis/public/reports.py +6 -17
- wandb/apis/public/runs.py +137 -31
- wandb/apis/public/sweeps.py +1 -1
- wandb/apis/public/teams.py +3 -3
- wandb/apis/public/users.py +1 -1
- wandb/apis/public/utils.py +104 -0
- wandb/apis/reports/v1/__init__.py +1 -1
- wandb/apis/reports/v2/__init__.py +1 -1
- wandb/apis/workspaces/__init__.py +1 -1
- wandb/bin/gpu_stats +0 -0
- wandb/bin/wandb-core +0 -0
- wandb/cli/beta.py +181 -0
- wandb/cli/cli.py +50 -246
- wandb/data_types.py +13 -2020
- wandb/docker/__init__.py +6 -5
- wandb/docker/auth.py +2 -3
- wandb/env.py +89 -97
- wandb/errors/__init__.py +11 -40
- wandb/errors/errors.py +37 -0
- wandb/errors/links.py +73 -0
- wandb/errors/term.py +355 -43
- wandb/errors/warnings.py +2 -0
- wandb/filesync/dir_watcher.py +5 -4
- wandb/filesync/step_prepare.py +1 -1
- wandb/filesync/step_upload.py +2 -5
- wandb/filesync/upload_job.py +1 -1
- wandb/integration/catboost/catboost.py +2 -2
- wandb/integration/diffusers/pipeline_resolver.py +1 -1
- wandb/integration/diffusers/resolvers/multimodal.py +6 -6
- wandb/integration/diffusers/resolvers/utils.py +1 -1
- wandb/integration/fastai/__init__.py +8 -14
- wandb/integration/gym/__init__.py +1 -7
- wandb/integration/keras/callbacks/metrics_logger.py +2 -9
- wandb/integration/keras/callbacks/model_checkpoint.py +2 -9
- wandb/integration/keras/callbacks/tables_builder.py +3 -1
- wandb/integration/keras/keras.py +9 -9
- wandb/integration/kfp/kfp_patch.py +26 -16
- wandb/integration/lightgbm/__init__.py +3 -3
- wandb/integration/lightning/fabric/logger.py +3 -1
- wandb/integration/metaflow/metaflow.py +15 -17
- wandb/integration/prodigy/prodigy.py +3 -11
- wandb/integration/sacred/__init__.py +1 -1
- wandb/integration/sagemaker/__init__.py +5 -3
- wandb/integration/sagemaker/auth.py +1 -1
- wandb/integration/sagemaker/config.py +17 -8
- wandb/integration/sagemaker/files.py +0 -1
- wandb/integration/sagemaker/resources.py +47 -18
- wandb/integration/sb3/sb3.py +1 -7
- wandb/{sklearn → integration/sklearn}/calculate/calibration_curves.py +7 -7
- wandb/{sklearn → integration/sklearn}/calculate/class_proportions.py +1 -1
- wandb/{sklearn → integration/sklearn}/calculate/confusion_matrix.py +3 -2
- wandb/{sklearn → integration/sklearn}/calculate/elbow_curve.py +6 -6
- wandb/{sklearn → integration/sklearn}/calculate/learning_curve.py +2 -2
- wandb/{sklearn → integration/sklearn}/calculate/outlier_candidates.py +2 -2
- wandb/{sklearn → integration/sklearn}/calculate/residuals.py +8 -8
- wandb/{sklearn → integration/sklearn}/calculate/silhouette.py +2 -2
- wandb/{sklearn → integration/sklearn}/calculate/summary_metrics.py +2 -2
- wandb/{sklearn → integration/sklearn}/plot/classifier.py +12 -12
- wandb/{sklearn → integration/sklearn}/plot/clusterer.py +13 -9
- wandb/{sklearn → integration/sklearn}/plot/regressor.py +8 -8
- wandb/{sklearn → integration/sklearn}/plot/shared.py +5 -5
- wandb/{sklearn → integration/sklearn}/utils.py +9 -9
- wandb/integration/tensorboard/log.py +1 -5
- wandb/integration/tensorboard/monkeypatch.py +3 -2
- wandb/{wandb_torch.py → integration/torch/wandb_torch.py} +38 -34
- wandb/integration/ultralytics/bbox_utils.py +9 -2
- wandb/integration/ultralytics/callback.py +2 -2
- wandb/integration/xgboost/xgboost.py +1 -1
- wandb/jupyter.py +26 -13
- wandb/old/core.py +2 -80
- wandb/plot/__init__.py +17 -8
- wandb/plot/bar.py +54 -26
- wandb/plot/confusion_matrix.py +150 -68
- wandb/plot/custom_chart.py +124 -0
- wandb/plot/histogram.py +48 -19
- wandb/plot/line.py +59 -25
- wandb/plot/line_series.py +148 -60
- wandb/plot/pr_curve.py +93 -44
- wandb/plot/roc_curve.py +82 -37
- wandb/plot/scatter.py +54 -20
- wandb/plot/viz.py +41 -0
- wandb/proto/v3/wandb_base_pb2.py +2 -1
- wandb/proto/v3/wandb_internal_pb2.py +360 -250
- wandb/proto/v3/wandb_server_pb2.py +58 -37
- wandb/proto/v3/wandb_settings_pb2.py +26 -15
- wandb/proto/v3/wandb_telemetry_pb2.py +11 -10
- wandb/proto/v4/wandb_base_pb2.py +2 -1
- wandb/proto/v4/wandb_internal_pb2.py +253 -230
- wandb/proto/v4/wandb_server_pb2.py +42 -37
- wandb/proto/v4/wandb_settings_pb2.py +18 -15
- wandb/proto/v4/wandb_telemetry_pb2.py +11 -10
- wandb/proto/v5/wandb_base_pb2.py +3 -2
- wandb/proto/v5/wandb_internal_pb2.py +254 -231
- wandb/proto/v5/wandb_server_pb2.py +43 -38
- wandb/proto/v5/wandb_settings_pb2.py +19 -16
- wandb/proto/v5/wandb_telemetry_pb2.py +12 -11
- wandb/proto/wandb_deprecated.py +3 -11
- wandb/proto/wandb_generate_deprecated.py +3 -7
- wandb/sdk/__init__.py +3 -3
- wandb/sdk/artifacts/_graphql_fragments.py +126 -0
- wandb/sdk/artifacts/_validators.py +121 -0
- wandb/sdk/artifacts/artifact.py +568 -502
- wandb/sdk/artifacts/artifact_file_cache.py +16 -18
- wandb/sdk/artifacts/artifact_instance_cache.py +4 -2
- wandb/sdk/artifacts/artifact_manifest.py +22 -19
- wandb/sdk/artifacts/artifact_manifest_entry.py +26 -24
- wandb/sdk/artifacts/artifact_manifests/artifact_manifest_v1.py +9 -7
- wandb/sdk/artifacts/artifact_saver.py +33 -29
- wandb/sdk/artifacts/exceptions.py +26 -25
- wandb/sdk/artifacts/storage_handler.py +11 -9
- wandb/sdk/artifacts/storage_handlers/azure_handler.py +25 -18
- wandb/sdk/artifacts/storage_handlers/gcs_handler.py +18 -20
- wandb/sdk/artifacts/storage_handlers/http_handler.py +15 -14
- wandb/sdk/artifacts/storage_handlers/local_file_handler.py +24 -17
- wandb/sdk/artifacts/storage_handlers/multi_handler.py +14 -12
- wandb/sdk/artifacts/storage_handlers/s3_handler.py +22 -24
- wandb/sdk/artifacts/storage_handlers/tracking_handler.py +10 -8
- wandb/sdk/artifacts/storage_handlers/wb_artifact_handler.py +14 -12
- wandb/sdk/artifacts/storage_handlers/wb_local_artifact_handler.py +11 -9
- wandb/sdk/artifacts/storage_policies/wandb_storage_policy.py +31 -29
- wandb/sdk/artifacts/storage_policy.py +20 -20
- wandb/sdk/backend/backend.py +32 -44
- wandb/sdk/data_types/_dtypes.py +7 -3
- wandb/sdk/data_types/audio.py +165 -0
- wandb/sdk/data_types/base_types/media.py +66 -5
- wandb/sdk/data_types/base_types/wb_value.py +22 -14
- wandb/sdk/data_types/bokeh.py +70 -0
- wandb/sdk/data_types/graph.py +405 -0
- wandb/sdk/data_types/helper_types/bounding_boxes_2d.py +29 -11
- wandb/sdk/data_types/helper_types/image_mask.py +24 -12
- wandb/sdk/data_types/histogram.py +5 -7
- wandb/sdk/data_types/html.py +1 -1
- wandb/sdk/data_types/image.py +160 -5
- wandb/sdk/data_types/molecule.py +3 -3
- wandb/sdk/data_types/object_3d.py +6 -10
- wandb/sdk/data_types/plotly.py +1 -1
- wandb/sdk/data_types/saved_model.py +37 -49
- wandb/sdk/data_types/table.py +1204 -0
- wandb/sdk/data_types/trace_tree.py +3 -3
- wandb/sdk/data_types/utils.py +52 -8
- wandb/sdk/data_types/video.py +25 -13
- wandb/sdk/integration_utils/auto_logging.py +1 -8
- wandb/sdk/interface/interface.py +185 -122
- wandb/sdk/interface/interface_queue.py +5 -21
- wandb/sdk/interface/interface_relay.py +7 -22
- wandb/sdk/interface/interface_shared.py +92 -150
- wandb/sdk/interface/interface_sock.py +10 -32
- wandb/sdk/interface/router.py +42 -71
- wandb/sdk/interface/router_queue.py +13 -14
- wandb/sdk/interface/router_relay.py +26 -15
- wandb/sdk/interface/router_sock.py +12 -16
- wandb/sdk/internal/datastore.py +1 -1
- wandb/sdk/internal/file_pusher.py +1 -1
- wandb/sdk/internal/file_stream.py +9 -9
- wandb/sdk/internal/flow_control.py +1 -1
- wandb/sdk/internal/handler.py +33 -20
- wandb/sdk/internal/internal.py +5 -19
- wandb/sdk/internal/internal_api.py +374 -46
- wandb/sdk/internal/internal_util.py +0 -3
- wandb/sdk/internal/job_builder.py +24 -15
- wandb/sdk/internal/progress.py +1 -5
- wandb/sdk/internal/sample.py +2 -2
- wandb/sdk/internal/sender.py +35 -84
- wandb/sdk/internal/settings_static.py +23 -14
- wandb/sdk/internal/system/assets/__init__.py +0 -2
- wandb/sdk/internal/system/assets/cpu.py +3 -3
- wandb/sdk/internal/system/assets/disk.py +7 -7
- wandb/sdk/internal/system/assets/gpu.py +8 -8
- wandb/sdk/internal/system/assets/gpu_amd.py +12 -9
- wandb/sdk/internal/system/assets/interfaces.py +11 -13
- wandb/sdk/internal/system/assets/ipu.py +1 -1
- wandb/sdk/internal/system/assets/memory.py +3 -3
- wandb/sdk/internal/system/assets/open_metrics.py +2 -8
- wandb/sdk/internal/system/assets/trainium.py +3 -9
- wandb/sdk/internal/system/system_info.py +15 -14
- wandb/sdk/internal/system/system_monitor.py +8 -13
- wandb/sdk/internal/tb_watcher.py +16 -13
- wandb/sdk/internal/writer.py +2 -4
- wandb/sdk/launch/__init__.py +2 -1
- wandb/sdk/launch/_launch.py +4 -3
- wandb/sdk/launch/_launch_add.py +2 -2
- wandb/sdk/launch/_project_spec.py +3 -3
- wandb/sdk/launch/agent/run_queue_item_file_saver.py +1 -7
- wandb/sdk/launch/builder/abstract.py +1 -1
- wandb/sdk/launch/builder/kaniko_builder.py +0 -1
- wandb/sdk/launch/create_job.py +2 -2
- wandb/sdk/launch/environment/local_environment.py +0 -1
- wandb/sdk/launch/errors.py +0 -6
- wandb/sdk/launch/inputs/internal.py +2 -2
- wandb/sdk/launch/registry/local_registry.py +0 -2
- wandb/sdk/launch/runner/abstract.py +1 -11
- wandb/sdk/launch/runner/kubernetes_monitor.py +2 -4
- wandb/sdk/launch/sweeps/__init__.py +0 -2
- wandb/sdk/launch/sweeps/scheduler.py +0 -2
- wandb/sdk/launch/sweeps/scheduler_sweep.py +0 -1
- wandb/sdk/launch/utils.py +1 -0
- wandb/sdk/lib/apikey.py +100 -56
- wandb/sdk/lib/asyncio_compat.py +210 -0
- wandb/sdk/lib/console_capture.py +172 -0
- wandb/sdk/lib/file_stream_utils.py +1 -1
- wandb/sdk/lib/filesystem.py +1 -1
- wandb/sdk/lib/fsm.py +13 -7
- wandb/sdk/lib/gitlib.py +1 -1
- wandb/sdk/lib/gql_request.py +1 -1
- wandb/sdk/lib/hashutil.py +34 -12
- wandb/sdk/lib/interrupt.py +37 -0
- wandb/sdk/lib/ipython.py +22 -42
- wandb/sdk/lib/lazyloader.py +1 -1
- wandb/sdk/lib/module.py +12 -3
- wandb/sdk/lib/printer.py +358 -123
- wandb/sdk/lib/progress.py +341 -0
- wandb/sdk/lib/redirect.py +102 -76
- wandb/sdk/lib/retry.py +7 -4
- wandb/sdk/lib/run_moment.py +19 -13
- wandb/sdk/lib/server.py +30 -24
- wandb/sdk/lib/service_connection.py +236 -0
- wandb/sdk/lib/service_token.py +94 -0
- wandb/sdk/lib/sock_client.py +10 -61
- wandb/sdk/lib/sparkline.py +1 -2
- wandb/sdk/lib/telemetry.py +1 -1
- wandb/sdk/mailbox/__init__.py +23 -0
- wandb/sdk/mailbox/mailbox.py +135 -0
- wandb/sdk/mailbox/mailbox_handle.py +127 -0
- wandb/sdk/mailbox/response_handle.py +167 -0
- wandb/sdk/mailbox/wait_with_progress.py +135 -0
- wandb/sdk/service/_startup_debug.py +1 -1
- wandb/sdk/service/server.py +5 -17
- wandb/sdk/service/server_sock.py +13 -8
- wandb/sdk/service/service.py +12 -42
- wandb/sdk/service/streams.py +103 -103
- wandb/sdk/verify/verify.py +67 -15
- wandb/sdk/wandb_config.py +2 -2
- wandb/sdk/wandb_init.py +946 -707
- wandb/sdk/wandb_login.py +103 -133
- wandb/sdk/wandb_metadata.py +607 -0
- wandb/sdk/wandb_require.py +19 -32
- wandb/sdk/wandb_run.py +921 -1152
- wandb/sdk/wandb_settings.py +1335 -1755
- wandb/sdk/wandb_setup.py +167 -165
- wandb/sdk/wandb_sweep.py +2 -2
- wandb/sdk/wandb_sync.py +20 -24
- wandb/sdk/wandb_watch.py +49 -27
- wandb/sklearn.py +35 -0
- wandb/sync/sync.py +11 -12
- wandb/util.py +118 -66
- wandb/wandb_agent.py +14 -19
- wandb/wandb_controller.py +19 -21
- {wandb-0.17.9.dist-info → wandb-0.19.8.dist-info}/METADATA +26 -13
- {wandb-0.17.9.dist-info → wandb-0.19.8.dist-info}/RECORD +282 -266
- {wandb-0.17.9.dist-info → wandb-0.19.8.dist-info}/WHEEL +1 -1
- wandb/bin/apple_gpu_stats +0 -0
- wandb/integration/magic.py +0 -556
- wandb/magic.py +0 -3
- wandb/sdk/interface/message_future.py +0 -27
- wandb/sdk/interface/message_future_poll.py +0 -50
- wandb/sdk/internal/system/assets/gpu_apple.py +0 -177
- wandb/sdk/internal/update.py +0 -113
- wandb/sdk/lib/_settings_toposort_generate.py +0 -159
- wandb/sdk/lib/_settings_toposort_generated.py +0 -251
- wandb/sdk/lib/_wburls_generate.py +0 -25
- wandb/sdk/lib/_wburls_generated.py +0 -22
- wandb/sdk/lib/console.py +0 -39
- wandb/sdk/lib/mailbox.py +0 -460
- wandb/sdk/lib/reporting.py +0 -99
- wandb/sdk/lib/tracelog.py +0 -255
- wandb/sdk/lib/viz.py +0 -123
- wandb/sdk/lib/wburls.py +0 -46
- wandb/sdk/service/service_base.py +0 -50
- wandb/sdk/service/service_sock.py +0 -70
- wandb/sdk/wandb_manager.py +0 -232
- /wandb/{sklearn → integration/sklearn}/__init__.py +0 -0
- /wandb/{sklearn → integration/sklearn}/calculate/__init__.py +0 -0
- /wandb/{sklearn → integration/sklearn}/calculate/decision_boundaries.py +0 -0
- /wandb/{sklearn → integration/sklearn}/calculate/feature_importances.py +0 -0
- /wandb/{sklearn → integration/sklearn}/plot/__init__.py +0 -0
- {wandb-0.17.9.dist-info → wandb-0.19.8.dist-info}/entry_points.txt +0 -0
- {wandb-0.17.9.dist-info → wandb-0.19.8.dist-info}/licenses/LICENSE +0 -0
package_readme.md
CHANGED
@@ -68,6 +68,14 @@ Use your favorite framework with W&B. W&B integrations make it fast and easy to
|
|
68
68
|
|
69
69
|
|
70
70
|
|
71
|
+
# Python Version Support
|
72
|
+
|
73
|
+
We are committed to supporting our minimum required Python version for *at least* six months after its official end-of-life (EOL) date, as defined by the Python Software Foundation. You can find a list of Python EOL dates [here](https://devguide.python.org/versions/).
|
74
|
+
|
75
|
+
When we discontinue support for a Python version, we will increment the library’s minor version number to reflect this change.
|
76
|
+
|
77
|
+
|
78
|
+
|
71
79
|
# Contribution guidelines
|
72
80
|
Weights & Biases ❤️ open source, and we welcome contributions from the community! See the [Contribution guide](https://github.com/wandb/wandb/blob/main/CONTRIBUTING.md) for more information on the development workflow and the internals of the wandb library. For wandb bugs and feature requests, visit [GitHub Issues](https://github.com/wandb/wandb/issues) or contact support@wandb.com.
|
73
81
|
|
wandb/__init__.py
CHANGED
@@ -8,9 +8,10 @@ For scripts and interactive notebooks, see https://github.com/wandb/examples.
|
|
8
8
|
|
9
9
|
For reference documentation, see https://docs.wandb.com/ref/python.
|
10
10
|
"""
|
11
|
-
|
11
|
+
from __future__ import annotations
|
12
|
+
|
13
|
+
__version__ = "0.19.8"
|
12
14
|
|
13
|
-
from typing import Optional
|
14
15
|
|
15
16
|
from wandb.errors import Error
|
16
17
|
|
@@ -28,8 +29,6 @@ setup = wandb_sdk.setup
|
|
28
29
|
_attach = wandb_sdk._attach
|
29
30
|
_sync = wandb_sdk._sync
|
30
31
|
_teardown = wandb_sdk.teardown
|
31
|
-
watch = wandb_sdk.watch
|
32
|
-
unwatch = wandb_sdk.unwatch
|
33
32
|
finish = wandb_sdk.finish
|
34
33
|
join = finish
|
35
34
|
login = wandb_sdk.login
|
@@ -51,7 +50,7 @@ _lazyloader = wandb.wandb_lib.lazyloader # type: ignore
|
|
51
50
|
# Call import module hook to set up any needed require hooks
|
52
51
|
wandb.sdk.wandb_require._import_module_hook()
|
53
52
|
|
54
|
-
from wandb import wandb_torch
|
53
|
+
from wandb.integration.torch import wandb_torch
|
55
54
|
|
56
55
|
# Move this (keras.__init__ expects it at top level)
|
57
56
|
from wandb.sdk.data_types._private import _cleanup_media_tmp_dir
|
@@ -76,8 +75,7 @@ from wandb.data_types import JoinedTable
|
|
76
75
|
|
77
76
|
from wandb.wandb_agent import agent
|
78
77
|
|
79
|
-
from wandb.
|
80
|
-
from wandb import plot
|
78
|
+
from wandb.plot import visualize, plot_table
|
81
79
|
from wandb.integration.sagemaker import sagemaker_auth
|
82
80
|
from wandb.sdk.internal import profiler
|
83
81
|
|
@@ -113,10 +111,12 @@ def _assert_is_user_process():
|
|
113
111
|
# globals
|
114
112
|
Api = PublicApi
|
115
113
|
api = InternalApi()
|
116
|
-
run:
|
114
|
+
run: wandb_sdk.wandb_run.Run | None = None
|
117
115
|
config = _preinit.PreInitObject("wandb.config", wandb_sdk.wandb_config.Config)
|
118
116
|
summary = _preinit.PreInitObject("wandb.summary", wandb_sdk.wandb_summary.Summary)
|
119
117
|
log = _preinit.PreInitCallable("wandb.log", wandb_sdk.wandb_run.Run.log) # type: ignore
|
118
|
+
watch = _preinit.PreInitCallable("wandb.watch", wandb_sdk.wandb_run.Run.watch) # type: ignore
|
119
|
+
unwatch = _preinit.PreInitCallable("wandb.unwatch", wandb_sdk.wandb_run.Run.unwatch) # type: ignore
|
120
120
|
save = _preinit.PreInitCallable("wandb.save", wandb_sdk.wandb_run.Run.save) # type: ignore
|
121
121
|
restore = wandb_sdk.wandb_run.restore
|
122
122
|
use_artifact = _preinit.PreInitCallable(
|
@@ -142,9 +142,6 @@ mark_preempting = _preinit.PreInitCallable(
|
|
142
142
|
"wandb.mark_preempting", wandb_sdk.wandb_run.Run.mark_preempting # type: ignore
|
143
143
|
)
|
144
144
|
|
145
|
-
plot_table = _preinit.PreInitCallable(
|
146
|
-
"wandb.plot_table", wandb_sdk.wandb_run.Run.plot_table
|
147
|
-
)
|
148
145
|
alert = _preinit.PreInitCallable("wandb.alert", wandb_sdk.wandb_run.Run.alert) # type: ignore
|
149
146
|
|
150
147
|
# record of patched libraries
|
@@ -201,16 +198,12 @@ if "dev" in __version__:
|
|
201
198
|
import wandb.env
|
202
199
|
import os
|
203
200
|
|
204
|
-
#
|
201
|
+
# Disable error reporting in dev versions.
|
205
202
|
os.environ[wandb.env.ERROR_REPORTING] = os.environ.get(
|
206
|
-
wandb.env.ERROR_REPORTING,
|
203
|
+
wandb.env.ERROR_REPORTING,
|
204
|
+
"false",
|
207
205
|
)
|
208
206
|
|
209
|
-
# turn on wandb-core for dev versions
|
210
|
-
if not wandb.env.is_require_legacy_service():
|
211
|
-
os.environ[wandb.env._REQUIRE_CORE] = os.environ.get(
|
212
|
-
wandb.env._REQUIRE_CORE, "true")
|
213
|
-
|
214
207
|
_sentry = _Sentry()
|
215
208
|
_sentry.setup()
|
216
209
|
|
@@ -247,4 +240,7 @@ __all__ = (
|
|
247
240
|
"use_model",
|
248
241
|
"link_model",
|
249
242
|
"define_metric",
|
243
|
+
"watch",
|
244
|
+
"unwatch",
|
245
|
+
"plot_table",
|
250
246
|
)
|