zombie-squirrel 0.4.4__tar.gz → 0.4.6__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.
- {zombie_squirrel-0.4.4/src/zombie_squirrel.egg-info → zombie_squirrel-0.4.6}/PKG-INFO +11 -3
- {zombie_squirrel-0.4.4 → zombie_squirrel-0.4.6}/README.md +10 -2
- {zombie_squirrel-0.4.4 → zombie_squirrel-0.4.6}/src/zombie_squirrel/__init__.py +1 -1
- {zombie_squirrel-0.4.4 → zombie_squirrel-0.4.6/src/zombie_squirrel.egg-info}/PKG-INFO +11 -3
- {zombie_squirrel-0.4.4 → zombie_squirrel-0.4.6}/LICENSE +0 -0
- {zombie_squirrel-0.4.4 → zombie_squirrel-0.4.6}/pyproject.toml +0 -0
- {zombie_squirrel-0.4.4 → zombie_squirrel-0.4.6}/setup.cfg +0 -0
- {zombie_squirrel-0.4.4 → zombie_squirrel-0.4.6}/setup.py +0 -0
- {zombie_squirrel-0.4.4 → zombie_squirrel-0.4.6}/src/zombie_squirrel/acorns.py +0 -0
- {zombie_squirrel-0.4.4 → zombie_squirrel-0.4.6}/src/zombie_squirrel/squirrels.py +0 -0
- {zombie_squirrel-0.4.4 → zombie_squirrel-0.4.6}/src/zombie_squirrel/sync.py +0 -0
- {zombie_squirrel-0.4.4 → zombie_squirrel-0.4.6}/src/zombie_squirrel/utils.py +0 -0
- {zombie_squirrel-0.4.4 → zombie_squirrel-0.4.6}/src/zombie_squirrel.egg-info/SOURCES.txt +0 -0
- {zombie_squirrel-0.4.4 → zombie_squirrel-0.4.6}/src/zombie_squirrel.egg-info/dependency_links.txt +0 -0
- {zombie_squirrel-0.4.4 → zombie_squirrel-0.4.6}/src/zombie_squirrel.egg-info/requires.txt +0 -0
- {zombie_squirrel-0.4.4 → zombie_squirrel-0.4.6}/src/zombie_squirrel.egg-info/top_level.txt +0 -0
- {zombie_squirrel-0.4.4 → zombie_squirrel-0.4.6}/tests/test_acorns.py +0 -0
- {zombie_squirrel-0.4.4 → zombie_squirrel-0.4.6}/tests/test_squirrels.py +0 -0
- {zombie_squirrel-0.4.4 → zombie_squirrel-0.4.6}/tests/test_sync.py +0 -0
- {zombie_squirrel-0.4.4 → zombie_squirrel-0.4.6}/tests/test_utils.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: zombie-squirrel
|
|
3
|
-
Version: 0.4.
|
|
3
|
+
Version: 0.4.6
|
|
4
4
|
Summary: Generated from aind-library-template
|
|
5
5
|
Author: Allen Institute for Neural Dynamics
|
|
6
6
|
License: MIT
|
|
@@ -45,11 +45,19 @@ Options are 'REDSHIFT', 'MEMORY'.
|
|
|
45
45
|
### Scurry (fetch) data
|
|
46
46
|
|
|
47
47
|
```python
|
|
48
|
-
|
|
48
|
+
from zombie_squirrel import unique_project_names
|
|
49
49
|
|
|
50
|
-
|
|
50
|
+
project_names = unique_project_names()
|
|
51
51
|
```
|
|
52
52
|
|
|
53
|
+
| Function | Description |
|
|
54
|
+
| -------- | ----------- |
|
|
55
|
+
| `unique_project_names` | Fetch unique project names from docdb |
|
|
56
|
+
| `unique_subject_ids` | Fetch unique subject IDs from docdb |
|
|
57
|
+
| `asset_basics` | Fetch basic asset metadata including modalities, projects, and subject info |
|
|
58
|
+
| `source_data` | Fetch source data references for derived records |
|
|
59
|
+
| `raw_to_derived` | Fetch mapping of raw records to their derived records |
|
|
60
|
+
|
|
53
61
|
### Hide the acorns
|
|
54
62
|
|
|
55
63
|
```python
|
|
@@ -32,11 +32,19 @@ Options are 'REDSHIFT', 'MEMORY'.
|
|
|
32
32
|
### Scurry (fetch) data
|
|
33
33
|
|
|
34
34
|
```python
|
|
35
|
-
|
|
35
|
+
from zombie_squirrel import unique_project_names
|
|
36
36
|
|
|
37
|
-
|
|
37
|
+
project_names = unique_project_names()
|
|
38
38
|
```
|
|
39
39
|
|
|
40
|
+
| Function | Description |
|
|
41
|
+
| -------- | ----------- |
|
|
42
|
+
| `unique_project_names` | Fetch unique project names from docdb |
|
|
43
|
+
| `unique_subject_ids` | Fetch unique subject IDs from docdb |
|
|
44
|
+
| `asset_basics` | Fetch basic asset metadata including modalities, projects, and subject info |
|
|
45
|
+
| `source_data` | Fetch source data references for derived records |
|
|
46
|
+
| `raw_to_derived` | Fetch mapping of raw records to their derived records |
|
|
47
|
+
|
|
40
48
|
### Hide the acorns
|
|
41
49
|
|
|
42
50
|
```python
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
Provides functions to fetch and cache project names, subject IDs, and asset
|
|
4
4
|
metadata from the AIND metadata database with support for multiple backends."""
|
|
5
5
|
|
|
6
|
-
__version__ = "0.4.
|
|
6
|
+
__version__ = "0.4.6"
|
|
7
7
|
|
|
8
8
|
from zombie_squirrel.squirrels import ( # noqa: F401
|
|
9
9
|
asset_basics,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: zombie-squirrel
|
|
3
|
-
Version: 0.4.
|
|
3
|
+
Version: 0.4.6
|
|
4
4
|
Summary: Generated from aind-library-template
|
|
5
5
|
Author: Allen Institute for Neural Dynamics
|
|
6
6
|
License: MIT
|
|
@@ -45,11 +45,19 @@ Options are 'REDSHIFT', 'MEMORY'.
|
|
|
45
45
|
### Scurry (fetch) data
|
|
46
46
|
|
|
47
47
|
```python
|
|
48
|
-
|
|
48
|
+
from zombie_squirrel import unique_project_names
|
|
49
49
|
|
|
50
|
-
|
|
50
|
+
project_names = unique_project_names()
|
|
51
51
|
```
|
|
52
52
|
|
|
53
|
+
| Function | Description |
|
|
54
|
+
| -------- | ----------- |
|
|
55
|
+
| `unique_project_names` | Fetch unique project names from docdb |
|
|
56
|
+
| `unique_subject_ids` | Fetch unique subject IDs from docdb |
|
|
57
|
+
| `asset_basics` | Fetch basic asset metadata including modalities, projects, and subject info |
|
|
58
|
+
| `source_data` | Fetch source data references for derived records |
|
|
59
|
+
| `raw_to_derived` | Fetch mapping of raw records to their derived records |
|
|
60
|
+
|
|
53
61
|
### Hide the acorns
|
|
54
62
|
|
|
55
63
|
```python
|
|
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
|
{zombie_squirrel-0.4.4 → zombie_squirrel-0.4.6}/src/zombie_squirrel.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|