Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add add guid helpers to the official api #4989

Merged
merged 2 commits into from Feb 9, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 2 additions & 0 deletions docs/changes/newsfragments/4989.improved
@@ -0,0 +1,2 @@
The helper functions ``guids_from_dbs``, ``guids_from_dir``, and ``guids_from_list_str`` have been added
to the documented dataset api at ``qcodes.dataset``.
6 changes: 5 additions & 1 deletion qcodes/dataset/__init__.py
Expand Up @@ -32,6 +32,7 @@
)
from .experiment_settings import get_default_experiment_id, reset_default_experiment_id
from .export_config import get_data_export_path
from .guid_helpers import guids_from_dbs, guids_from_dir, guids_from_list_str
from .legacy_import import import_dat_file
from .measurements import Measurement
from .plotting import plot_by_id, plot_dataset
Expand Down Expand Up @@ -59,13 +60,13 @@
"LinSweep",
"LogSweep",
"Measurement",
"TogetherSweep",
"ParamSpec",
"ParamSpecTree",
"RunDescriber",
"SQLiteSettings",
"SequentialParamsCaller",
"ThreadPoolParamsCaller",
"TogetherSweep",
"call_params_threaded",
"connect",
"do0d",
Expand All @@ -77,6 +78,9 @@
"get_data_export_path",
"get_default_experiment_id",
"get_guids_by_run_spec",
"guids_from_dbs",
"guids_from_dir",
"guids_from_list_str",
"import_dat_file",
"initialise_database",
"initialise_or_create_database_at",
Expand Down