Skip to content

Commit

Permalink
Merge pull request #58 from bis-med-it/qb
Browse files Browse the repository at this point in the history
Add query builder for structure queries
  • Loading branch information
sosna authored Jul 2, 2024
2 parents c0ec819 + 858aae3 commit 1e3f47f
Show file tree
Hide file tree
Showing 19 changed files with 3,099 additions and 0 deletions.
19 changes: 19 additions & 0 deletions src/pysdmx/api/qb/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
"""Build SDMX-REST queries."""

from pysdmx.api.qb.structure import (
StructureDetail,
StructureFormat,
StructureQuery,
StructureReference,
StructureType,
)
from pysdmx.api.qb.util import ApiVersion

__all__ = [
"ApiVersion",
"StructureDetail",
"StructureFormat",
"StructureQuery",
"StructureReference",
"StructureType",
]
Loading

0 comments on commit 1e3f47f

Please sign in to comment.