zombie-squirrel 0.4.1__tar.gz → 0.4.3__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.1/src/zombie_squirrel.egg-info → zombie_squirrel-0.4.3}/PKG-INFO +3 -1
- {zombie_squirrel-0.4.1 → zombie_squirrel-0.4.3}/README.md +2 -0
- {zombie_squirrel-0.4.1 → zombie_squirrel-0.4.3}/src/zombie_squirrel/__init__.py +1 -1
- {zombie_squirrel-0.4.1 → zombie_squirrel-0.4.3}/src/zombie_squirrel/sync.py +6 -0
- {zombie_squirrel-0.4.1 → zombie_squirrel-0.4.3/src/zombie_squirrel.egg-info}/PKG-INFO +3 -1
- {zombie_squirrel-0.4.1 → zombie_squirrel-0.4.3}/LICENSE +0 -0
- {zombie_squirrel-0.4.1 → zombie_squirrel-0.4.3}/pyproject.toml +0 -0
- {zombie_squirrel-0.4.1 → zombie_squirrel-0.4.3}/setup.cfg +0 -0
- {zombie_squirrel-0.4.1 → zombie_squirrel-0.4.3}/setup.py +0 -0
- {zombie_squirrel-0.4.1 → zombie_squirrel-0.4.3}/src/zombie_squirrel/acorns.py +0 -0
- {zombie_squirrel-0.4.1 → zombie_squirrel-0.4.3}/src/zombie_squirrel/squirrels.py +0 -0
- {zombie_squirrel-0.4.1 → zombie_squirrel-0.4.3}/src/zombie_squirrel/utils.py +0 -0
- {zombie_squirrel-0.4.1 → zombie_squirrel-0.4.3}/src/zombie_squirrel.egg-info/SOURCES.txt +0 -0
- {zombie_squirrel-0.4.1 → zombie_squirrel-0.4.3}/src/zombie_squirrel.egg-info/dependency_links.txt +0 -0
- {zombie_squirrel-0.4.1 → zombie_squirrel-0.4.3}/src/zombie_squirrel.egg-info/requires.txt +0 -0
- {zombie_squirrel-0.4.1 → zombie_squirrel-0.4.3}/src/zombie_squirrel.egg-info/top_level.txt +0 -0
- {zombie_squirrel-0.4.1 → zombie_squirrel-0.4.3}/tests/test_acorns.py +0 -0
- {zombie_squirrel-0.4.1 → zombie_squirrel-0.4.3}/tests/test_squirrels.py +0 -0
- {zombie_squirrel-0.4.1 → zombie_squirrel-0.4.3}/tests/test_sync.py +0 -0
- {zombie_squirrel-0.4.1 → zombie_squirrel-0.4.3}/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.3
|
|
4
4
|
Summary: Generated from aind-library-template
|
|
5
5
|
Author: Allen Institute for Neural Dynamics
|
|
6
6
|
License: MIT
|
|
@@ -20,6 +20,8 @@ Dynamic: license-file
|
|
|
20
20
|

|
|
21
21
|

|
|
22
22
|
|
|
23
|
+
<img src="zombie-squirrel_logo.png" width="400" alt="Logo (image from ChatGPT)">
|
|
24
|
+
|
|
23
25
|
## Installation
|
|
24
26
|
|
|
25
27
|
```bash
|
|
@@ -7,6 +7,8 @@
|
|
|
7
7
|

|
|
8
8
|

|
|
9
9
|
|
|
10
|
+
<img src="zombie-squirrel_logo.png" width="400" alt="Logo (image from ChatGPT)">
|
|
11
|
+
|
|
10
12
|
## Installation
|
|
11
13
|
|
|
12
14
|
```bash
|
|
@@ -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.3"
|
|
7
7
|
|
|
8
8
|
from zombie_squirrel.squirrels import ( # noqa: F401
|
|
9
9
|
asset_basics,
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
"""Synchronization utilities for updating all cached data."""
|
|
2
2
|
|
|
3
|
+
import logging
|
|
4
|
+
|
|
3
5
|
from .squirrels import SQUIRREL_REGISTRY
|
|
4
6
|
|
|
5
7
|
|
|
@@ -8,5 +10,9 @@ def hide_acorns():
|
|
|
8
10
|
|
|
9
11
|
Calls each squirrel function with force_update=True to refresh
|
|
10
12
|
all cached data in the acorn backend."""
|
|
13
|
+
logging.basicConfig(
|
|
14
|
+
level=logging.INFO,
|
|
15
|
+
format="%(asctime)s %(levelname)s %(message)s"
|
|
16
|
+
)
|
|
11
17
|
for squirrel in SQUIRREL_REGISTRY.values():
|
|
12
18
|
squirrel(force_update=True)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: zombie-squirrel
|
|
3
|
-
Version: 0.4.
|
|
3
|
+
Version: 0.4.3
|
|
4
4
|
Summary: Generated from aind-library-template
|
|
5
5
|
Author: Allen Institute for Neural Dynamics
|
|
6
6
|
License: MIT
|
|
@@ -20,6 +20,8 @@ Dynamic: license-file
|
|
|
20
20
|

|
|
21
21
|

|
|
22
22
|
|
|
23
|
+
<img src="zombie-squirrel_logo.png" width="400" alt="Logo (image from ChatGPT)">
|
|
24
|
+
|
|
23
25
|
## Installation
|
|
24
26
|
|
|
25
27
|
```bash
|
|
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.1 → zombie_squirrel-0.4.3}/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
|