forked from datajoint/datajoint-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path__init__.py
77 lines (70 loc) · 1.99 KB
/
__init__.py
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
"""
DataJoint for Python is a framework for building data piplines using MySQL databases
to represent pipeline structure and bulk storage systems for large objects.
DataJoint is built on the foundation of the relational data model and prescribes a
consistent method for organizing, populating, and querying data.
The DataJoint data model is described in https://arxiv.org/abs/1807.11104
DataJoint is free software under the LGPL License. In addition, we request
that any use of DataJoint leading to a publication be acknowledged in the publication.
Please cite:
- http://biorxiv.org/content/early/2015/11/14/031658
- http://dx.doi.org/10.1101/031658
"""
__author__ = "DataJoint Contributors"
__date__ = "November 7, 2020"
__all__ = [
"__author__",
"__version__",
"config",
"conn",
"Connection",
"Schema",
"schema",
"VirtualModule",
"create_virtual_module",
"list_schemas",
"Table",
"FreeTable",
"Manual",
"Lookup",
"Imported",
"Computed",
"Part",
"Not",
"AndList",
"Top",
"U",
"Diagram",
"Di",
"ERD",
"set_password",
"kill",
"MatCell",
"MatStruct",
"AttributeAdapter",
"errors",
"DataJointError",
"key",
"key_hash",
"logger",
]
from .logging import logger
from .version import __version__
from .settings import config
from .connection import conn, Connection
from .schemas import Schema
from .schemas import VirtualModule, list_schemas
from .table import Table, FreeTable
from .user_tables import Manual, Lookup, Imported, Computed, Part
from .expression import Not, AndList, U, Top
from .diagram import Diagram
from .admin import set_password, kill
from .blob import MatCell, MatStruct
from .fetch import key
from .hash import key_hash
from .attribute_adapter import AttributeAdapter
from . import errors
from .errors import DataJointError
ERD = Di = Diagram # Aliases for Diagram
schema = Schema # Aliases for Schema
create_virtual_module = VirtualModule # Aliases for VirtualModule