nomic 3.0.34__tar.gz → 3.0.35__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of nomic might be problematic. Click here for more details.
- {nomic-3.0.34 → nomic-3.0.35}/PKG-INFO +1 -1
- {nomic-3.0.34 → nomic-3.0.35}/nomic/dataset.py +8 -1
- {nomic-3.0.34 → nomic-3.0.35}/nomic.egg-info/PKG-INFO +1 -1
- {nomic-3.0.34 → nomic-3.0.35}/setup.py +1 -1
- {nomic-3.0.34 → nomic-3.0.35}/README.md +0 -0
- {nomic-3.0.34 → nomic-3.0.35}/nomic/__init__.py +0 -0
- {nomic-3.0.34 → nomic-3.0.35}/nomic/atlas.py +0 -0
- {nomic-3.0.34 → nomic-3.0.35}/nomic/aws/__init__.py +0 -0
- {nomic-3.0.34 → nomic-3.0.35}/nomic/aws/sagemaker.py +0 -0
- {nomic-3.0.34 → nomic-3.0.35}/nomic/cli.py +0 -0
- {nomic-3.0.34 → nomic-3.0.35}/nomic/data_inference.py +0 -0
- {nomic-3.0.34 → nomic-3.0.35}/nomic/data_operations.py +0 -0
- {nomic-3.0.34 → nomic-3.0.35}/nomic/embed.py +0 -0
- {nomic-3.0.34 → nomic-3.0.35}/nomic/pl_callbacks/__init__.py +0 -0
- {nomic-3.0.34 → nomic-3.0.35}/nomic/pl_callbacks/pl_callback.py +0 -0
- {nomic-3.0.34 → nomic-3.0.35}/nomic/settings.py +0 -0
- {nomic-3.0.34 → nomic-3.0.35}/nomic/utils.py +0 -0
- {nomic-3.0.34 → nomic-3.0.35}/nomic.egg-info/SOURCES.txt +0 -0
- {nomic-3.0.34 → nomic-3.0.35}/nomic.egg-info/dependency_links.txt +0 -0
- {nomic-3.0.34 → nomic-3.0.35}/nomic.egg-info/entry_points.txt +0 -0
- {nomic-3.0.34 → nomic-3.0.35}/nomic.egg-info/requires.txt +0 -0
- {nomic-3.0.34 → nomic-3.0.35}/nomic.egg-info/top_level.txt +0 -0
- {nomic-3.0.34 → nomic-3.0.35}/pyproject.toml +0 -0
- {nomic-3.0.34 → nomic-3.0.35}/setup.cfg +0 -0
|
@@ -437,6 +437,13 @@ class AtlasProjection:
|
|
|
437
437
|
return f"{self.dataset.web_path}/data/{self.dataset.meta['organization_slug']}/{self.dataset.meta['slug']}/map"
|
|
438
438
|
# return f"{self.project.web_path}/data/{self.project.meta['organization_slug']}/{self.project.meta['slug']}/map"
|
|
439
439
|
|
|
440
|
+
@property
|
|
441
|
+
def dataset_link(self):
|
|
442
|
+
"""
|
|
443
|
+
Retrieves a dataset link.
|
|
444
|
+
"""
|
|
445
|
+
return f"{self.dataset.web_path}/data/{self.dataset.meta['organization_slug']}/{self.dataset.meta['slug']}"
|
|
446
|
+
|
|
440
447
|
@property
|
|
441
448
|
def _status(self):
|
|
442
449
|
response = requests.get(
|
|
@@ -450,7 +457,7 @@ class AtlasProjection:
|
|
|
450
457
|
return content
|
|
451
458
|
|
|
452
459
|
def __str__(self):
|
|
453
|
-
return f"{self.name}: {self.
|
|
460
|
+
return f"{self.name}: {self.dataset_link}"
|
|
454
461
|
|
|
455
462
|
def __repr__(self):
|
|
456
463
|
return self.__str__()
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|