-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Version 0.3.0 - Add BigQuery client with basic query interface (#13)
- Loading branch information
Showing
15 changed files
with
781 additions
and
751 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
# ruff: noqa: F401 | ||
from ._version import __version__ | ||
from .client import MPCObservationsClient | ||
from .observation import Observation, ObservationsTable, ObservationStatus | ||
|
||
__all__ = [ | ||
"MPCObservationsClient", | ||
"Observation", | ||
"ObservationStatus", | ||
"ObservationsTable", | ||
"__version__", | ||
] | ||
from .client import BigQueryMPCClient, MPCClient | ||
from .observations import MPCObservations | ||
from .orbits import MPCOrbits | ||
from .submissions import ( | ||
MPCSubmissionHistory, | ||
MPCSubmissionResults, | ||
SubmissionDetails, | ||
TrksubMapping, | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
__version__ = "0.2.1" | ||
__version__ = "0.3.0" |
Oops, something went wrong.