Skip to content

Dataset namespaces #1115

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 36 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
2ff4004
adding namespace
ilongin May 20, 2025
5a8435b
Merge branch 'main' into ilongin/1081-dataset-namespace
ilongin May 21, 2025
921728b
adding project
ilongin May 21, 2025
bb1950f
moved mock functions to conftest
ilongin May 21, 2025
9cb421f
adding creation of default namespace and project and tests for it
ilongin May 21, 2025
d8b5bab
working on adding namespaces to the datasets
ilongin May 23, 2025
cd41368
Merge branch 'main' into ilongin/1081-dataset-namespace
ilongin May 23, 2025
9b0786f
adding TODO
ilongin May 23, 2025
bb27c13
adding project and namespace to dataset dependencies
ilongin May 23, 2025
3ae24e4
fix dataset table name to havbe namespace and project
ilongin May 23, 2025
2ce3edd
fixing issues
ilongin May 24, 2025
eeb4f5f
fixing tests
May 24, 2025
037a685
fixing issues
ilongin May 24, 2025
b1408c1
added full Namespace object inside Project, instead of just id
ilongin May 24, 2025
1ba02af
fixing tests
ilongin May 25, 2025
1097a23
fixing unique constraint and test
ilongin May 26, 2025
8908d21
adding project as optional in DatasetQuery and fixing dataset query t…
ilongin May 26, 2025
8df5d03
fixing dataset pull and other tests
ilongin May 26, 2025
71de9d0
fixing tests and listing dataset name
ilongin May 27, 2025
11c26e4
fixing test
ilongin May 27, 2025
64fd0b0
fixing tests
ilongin May 27, 2025
4b30edf
fixing cli commands with studio
ilongin May 27, 2025
35ff0aa
fixing tests
ilongin May 28, 2025
e0a1016
merging with main
ilongin May 28, 2025
da0cb18
Merge branch 'main' into ilongin/1081-dataset-namespace
ilongin May 28, 2025
3848cd7
removing not needed studio flags
ilongin May 28, 2025
30c9d8e
fixing tests
ilongin May 29, 2025
6f47895
added couple of tests with non default projects
ilongin May 29, 2025
8e01f00
added tests
ilongin May 29, 2025
61f1390
removed todos
ilongin May 29, 2025
666e35b
fixing docs
ilongin May 29, 2025
24c42a0
fixing test
ilongin Jun 2, 2025
6721c1a
fixing tests
ilongin Jun 2, 2025
cdc8dda
skipping tests that cannot be run in studio
ilongin Jun 2, 2025
8083b23
fix test
ilongin Jun 2, 2025
fc79bb1
returning other tests
ilongin Jun 2, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions src/datachain/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
from datachain.lib import namespaces, projects
from datachain.lib.data_model import DataModel, DataType, is_chain_type
from datachain.lib.dc import (
C,
Expand Down Expand Up @@ -67,7 +68,9 @@
"is_chain_type",
"listings",
"metrics",
"namespaces",
"param",
"projects",
"read_csv",
"read_database",
"read_dataset",
Expand Down
Loading
Loading