Skip to content

Commit 48dc3e4

Browse files
authored
Merge pull request #264 from scipp/data-retriever
Transparent file access with pooch or local override
2 parents e2d41f6 + a187443 commit 48dc3e4

File tree

6 files changed

+515
-181
lines changed

6 files changed

+515
-181
lines changed

src/ess/reduce/data.py

Lines changed: 0 additions & 154 deletions
This file was deleted.

src/ess/reduce/data/__init__.py

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# SPDX-License-Identifier: BSD-3-Clause
2+
# Copyright (c) 2025 Scipp contributors (https://github.com/scipp)
3+
"""Data files bundled with ESSreduce.
4+
5+
This module requires the Pooch package which is not a hard dependency of ESSreduce.
6+
It has to be installed separately with either pip or conda.
7+
"""
8+
9+
from ._registry import Entry, LocalRegistry, PoochRegistry, Registry, make_registry
10+
11+
__all__ = [
12+
'Entry',
13+
'LocalRegistry',
14+
'PoochRegistry',
15+
'Registry',
16+
'make_registry',
17+
]

0 commit comments

Comments
 (0)