Skip to content
Merged
Show file tree
Hide file tree
Changes from 16 commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
d3af475
move from terra
jyu00 Jun 17, 2021
7506759
run black
jyu00 Jun 17, 2021
4503267
convert service exception to log
jyu00 Jun 17, 2021
5e97146
fix lint
jyu00 Jun 17, 2021
6bd5c64
log post processing failure
jyu00 Jun 17, 2021
1780a37
remove data index
jyu00 Jun 17, 2021
e3a2d31
fix test can package typo
jyu00 Jun 17, 2021
b727010
Merge branch 'main' into results-db
yaelbh Jun 20, 2021
d2482ac
Merge remote-tracking branch 'upstream/main' into results-db
jyu00 Jun 23, 2021
8139169
Merge remote-tracking branch 'origin/results-db' into results-db
jyu00 Jun 23, 2021
1fd9dd5
remove experiment_class and result_class
jyu00 Jun 23, 2021
404d7be
fix lint
jyu00 Jun 23, 2021
aa507c8
Merge branch 'main' into results-db
yaelbh Jun 24, 2021
248f5aa
Merge branch 'main' into results-db
yaelbh Jun 24, 2021
b367355
Merge branch 'main' into results-db
yaelbh Jun 24, 2021
c09d010
Merge branch 'main' into results-db
yaelbh Jun 24, 2021
87f2355
Merge branch 'main' into results-db
yaelbh Jun 27, 2021
f09667c
doc update
jyu00 Jun 28, 2021
c98e2c6
rename classes
jyu00 Jun 28, 2021
9070a89
review comments
jyu00 Jun 28, 2021
25c5156
Merge remote-tracking branch 'origin/results-db' into results-db
jyu00 Jun 28, 2021
5205ee6
fix lint
jyu00 Jun 28, 2021
11d392a
Merge branch 'main' into results-db
yaelbh Jun 29, 2021
e916c5f
review comments
jyu00 Jun 30, 2021
156bf4a
Merge remote-tracking branch 'origin/results-db' into results-db
jyu00 Jun 30, 2021
e2980ad
Merge remote-tracking branch 'upstream/main' into results-db
jyu00 Jun 30, 2021
7169edd
fix lint
jyu00 Jun 30, 2021
111c7ad
add db service to doc
jyu00 Jun 30, 2021
ede3a31
fix doc
jyu00 Jun 30, 2021
6653396
remove extra service keyword
jyu00 Jul 1, 2021
c433999
fix type hint
jyu00 Jul 1, 2021
2e01e94
review comments
jyu00 Jul 1, 2021
6f564d8
Merge branch 'main' into results-db
jyu00 Jul 1, 2021
d086374
Merge branch 'main' into results-db
yaelbh Jul 6, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
53 changes: 53 additions & 0 deletions qiskit_experiments/stored_data/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
# This code is part of Qiskit.
#
# (C) Copyright IBM 2021.
#
# This code is licensed under the Apache License, Version 2.0. You may
# obtain a copy of this license in the LICENSE.txt file in the root directory
# of this source tree or at http://www.apache.org/licenses/LICENSE-2.0.
#
# Any modifications or derivative works of this code must retain this
# copyright notice, and modified files need to carry a notice indicating
# that they have been altered from the originals.

"""
Comment thread
nkanazawa1989 marked this conversation as resolved.
Outdated
===================================================
Stored Data (:mod:`qiskit_experiments.stored_data`)
===================================================

.. currentmodule:: qiskit_experiments.stored_data

This module contains the classes used to define the data structure of
an experiment, including its data, metadata, analysis results, and figures.
The classes also provide an interface with a database service for storing
and retrieving experiment-related data.

Classes
=======

.. autosummary::
:toctree: ../stubs/

StoredData
StoredDataV1
AnalysisResult
AnalysisResultV1
ExperimentService
ExperimentServiceV1


Exceptions
==========

.. autosummary::
:toctree: ../stubs/

ExperimentError
ExperimentEntryNotFound
ExperimentEntryExists
"""

from .stored_data import StoredData, StoredDataV1
from .analysis_result import AnalysisResult, AnalysisResultV1
from .experiment_service import ExperimentService, ExperimentServiceV1
from .exceptions import ExperimentError, ExperimentEntryExists, ExperimentEntryNotFound
Loading