FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
docarray/docarray/store/__init__.py at fix-num-docs · docarray/docarray · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
docarray
/
docarray
Public
Notifications
You must be signed in to change notification settings
Fork
243
Star
3.1k
Code
Issues
68
Pull requests
43
Discussions
Actions
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Discussions
Actions
Security and quality
Insights
Expand file tree
Breadcrumbs
docarray
/
docarray
/
store
/
__init__.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
37 lines (29 loc) · 1.01 KB
Breadcrumbs
docarray
/
docarray
/
store
/
__init__.py
Copy path
File metadata and controls
37 lines (29 loc) · 1.01 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
import
types
from
typing
import
TYPE_CHECKING
from
docarray
.
store
.
file
import
FileDocStore
from
docarray
.
utils
.
_internal
.
misc
import
(
_get_path_from_docarray_root_level
,
import_library
,
)
if
TYPE_CHECKING
:
from
docarray
.
store
.
jac
import
JACDocStore
# noqa: F401
from
docarray
.
store
.
s3
import
S3DocStore
# noqa: F401
__all__
=
[
'FileDocStore'
]
def
__getattr__
(
name
:
str
):
lib
:
types
.
ModuleType
if
name
==
'JACDocStore'
:
import_library
(
'hubble'
,
raise_error
=
True
)
import
docarray
.
store
.
jac
as
lib
elif
name
==
'S3DocStore'
:
import_library
(
'smart_open'
,
raise_error
=
True
)
import_library
(
'botocore'
,
raise_error
=
True
)
import_library
(
'boto3'
,
raise_error
=
True
)
import
docarray
.
store
.
s3
as
lib
else
:
raise
ImportError
(
f'cannot import name
\'
{
name
}
\'
from
\'
{
_get_path_from_docarray_root_level
(
__file__
)
}
\'
'
)
store_cls
=
getattr
(
lib
,
name
)
if
name
not
in
__all__
:
__all__
.
append
(
name
)
return
store_cls
Back
|
FazBrowse Home
|
New Git URL