-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathipython_init.py
More file actions
45 lines (43 loc) · 1.75 KB
/
ipython_init.py
File metadata and controls
45 lines (43 loc) · 1.75 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# Add common solvebio classes and methods our namespace here so that
# inside the ipython shell users don't have run imports
import solvebio # noqa
from solvebio import login # noqa
from solvebio import Annotator # noqa
from solvebio import Application # noqa
from solvebio import Beacon # noqa
from solvebio import BeaconSet # noqa
from solvebio import BatchQuery # noqa
from solvebio import Dataset # noqa
from solvebio import DatasetCommit # noqa
from solvebio import DatasetExport # noqa
from solvebio import DatasetField # noqa
from solvebio import DatasetImport # noqa
from solvebio import DatasetMigration # noqa
from solvebio import DatasetTemplate # noqa
from solvebio import Expression # noqa
from solvebio import Filter # noqa
from solvebio import GenomicFilter # noqa
from solvebio import Manifest # noqa
from solvebio import Object # noqa
from solvebio import Query # noqa
from solvebio import SolveClient # noqa
from solvebio import SolveError # noqa
from solvebio import User # noqa
from solvebio import Vault # noqa
from solvebio import Task # noqa
from solvebio import VaultSyncTask # noqa
from solvebio import ObjectCopyTask # noqa
from solvebio import SavedQuery # noqa
from solvebio import DatasetRestoreTask # noqa
from solvebio import DatasetSnapshotTask # noqa
from solvebio import GlobalSearch # noqa
from solvebio import Group # noqa
from solvebio import print_deprecation_notice # noqa
from solvebio.utils.printing import pager # noqa
# Add some convenience functions to the interactive shell
from solvebio.cli.auth import logout # noqa
from solvebio.cli.auth import whoami # noqa
from solvebio.cli.auth import get_credentials # noqa
# Show deprecation notice when starting IPython shell
print_deprecation_notice()
whoami()