zombie-squirrel 0.4.3__tar.gz → 0.4.5__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.
Files changed (20) hide show
  1. {zombie_squirrel-0.4.3/src/zombie_squirrel.egg-info → zombie_squirrel-0.4.5}/PKG-INFO +6 -4
  2. {zombie_squirrel-0.4.3 → zombie_squirrel-0.4.5}/README.md +5 -3
  3. {zombie_squirrel-0.4.3 → zombie_squirrel-0.4.5}/src/zombie_squirrel/__init__.py +1 -1
  4. {zombie_squirrel-0.4.3 → zombie_squirrel-0.4.5/src/zombie_squirrel.egg-info}/PKG-INFO +6 -4
  5. {zombie_squirrel-0.4.3 → zombie_squirrel-0.4.5}/LICENSE +0 -0
  6. {zombie_squirrel-0.4.3 → zombie_squirrel-0.4.5}/pyproject.toml +0 -0
  7. {zombie_squirrel-0.4.3 → zombie_squirrel-0.4.5}/setup.cfg +0 -0
  8. {zombie_squirrel-0.4.3 → zombie_squirrel-0.4.5}/setup.py +0 -0
  9. {zombie_squirrel-0.4.3 → zombie_squirrel-0.4.5}/src/zombie_squirrel/acorns.py +0 -0
  10. {zombie_squirrel-0.4.3 → zombie_squirrel-0.4.5}/src/zombie_squirrel/squirrels.py +0 -0
  11. {zombie_squirrel-0.4.3 → zombie_squirrel-0.4.5}/src/zombie_squirrel/sync.py +0 -0
  12. {zombie_squirrel-0.4.3 → zombie_squirrel-0.4.5}/src/zombie_squirrel/utils.py +0 -0
  13. {zombie_squirrel-0.4.3 → zombie_squirrel-0.4.5}/src/zombie_squirrel.egg-info/SOURCES.txt +0 -0
  14. {zombie_squirrel-0.4.3 → zombie_squirrel-0.4.5}/src/zombie_squirrel.egg-info/dependency_links.txt +0 -0
  15. {zombie_squirrel-0.4.3 → zombie_squirrel-0.4.5}/src/zombie_squirrel.egg-info/requires.txt +0 -0
  16. {zombie_squirrel-0.4.3 → zombie_squirrel-0.4.5}/src/zombie_squirrel.egg-info/top_level.txt +0 -0
  17. {zombie_squirrel-0.4.3 → zombie_squirrel-0.4.5}/tests/test_acorns.py +0 -0
  18. {zombie_squirrel-0.4.3 → zombie_squirrel-0.4.5}/tests/test_squirrels.py +0 -0
  19. {zombie_squirrel-0.4.3 → zombie_squirrel-0.4.5}/tests/test_sync.py +0 -0
  20. {zombie_squirrel-0.4.3 → zombie_squirrel-0.4.5}/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
3
+ Version: 0.4.5
4
4
  Summary: Generated from aind-library-template
5
5
  Author: Allen Institute for Neural Dynamics
6
6
  License: MIT
@@ -45,11 +45,13 @@ Options are 'REDSHIFT', 'MEMORY'.
45
45
  ### Scurry (fetch) data
46
46
 
47
47
  ```python
48
- import zombie_squirrel as zs
49
-
50
- unique_project_names = zs.scurry_project_names()
48
+ from zombie_squirrel import unique_project_names()
51
49
  ```
52
50
 
51
+ | Function | Description |
52
+ | -------- | ----------- |
53
+ | unique_project_names |
54
+
53
55
  ### Hide the acorns
54
56
 
55
57
  ```python
@@ -32,11 +32,13 @@ Options are 'REDSHIFT', 'MEMORY'.
32
32
  ### Scurry (fetch) data
33
33
 
34
34
  ```python
35
- import zombie_squirrel as zs
36
-
37
- unique_project_names = zs.scurry_project_names()
35
+ from zombie_squirrel import unique_project_names()
38
36
  ```
39
37
 
38
+ | Function | Description |
39
+ | -------- | ----------- |
40
+ | unique_project_names |
41
+
40
42
  ### Hide the acorns
41
43
 
42
44
  ```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.3"
6
+ __version__ = "0.4.5"
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
3
+ Version: 0.4.5
4
4
  Summary: Generated from aind-library-template
5
5
  Author: Allen Institute for Neural Dynamics
6
6
  License: MIT
@@ -45,11 +45,13 @@ Options are 'REDSHIFT', 'MEMORY'.
45
45
  ### Scurry (fetch) data
46
46
 
47
47
  ```python
48
- import zombie_squirrel as zs
49
-
50
- unique_project_names = zs.scurry_project_names()
48
+ from zombie_squirrel import unique_project_names()
51
49
  ```
52
50
 
51
+ | Function | Description |
52
+ | -------- | ----------- |
53
+ | unique_project_names |
54
+
53
55
  ### Hide the acorns
54
56
 
55
57
  ```python
File without changes