neuralfetch 0.0.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.
- neuralfetch-0.0.3/LICENSE +21 -0
- neuralfetch-0.0.3/PKG-INFO +40 -0
- neuralfetch-0.0.3/README.md +23 -0
- neuralfetch-0.0.3/neuralfetch/__init__.py +5 -0
- neuralfetch-0.0.3/neuralfetch/download.py +1198 -0
- neuralfetch-0.0.3/neuralfetch/py.typed +0 -0
- neuralfetch-0.0.3/neuralfetch/studies/__init__.py +5 -0
- neuralfetch-0.0.3/neuralfetch/studies/allen2022massive.py +743 -0
- neuralfetch-0.0.3/neuralfetch/studies/bel2026petit.py +758 -0
- neuralfetch-0.0.3/neuralfetch/studies/grootswagers2022human.py +292 -0
- neuralfetch-0.0.3/neuralfetch/studies/li2022petit.py +364 -0
- neuralfetch-0.0.3/neuralfetch/studies/testing/__init__.py +5 -0
- neuralfetch-0.0.3/neuralfetch/studies/testing/mne2013sample.py +274 -0
- neuralfetch-0.0.3/neuralfetch/studies/testing/test2023fmri.py +308 -0
- neuralfetch-0.0.3/neuralfetch/studies/testing/test2023meg.py +91 -0
- neuralfetch-0.0.3/neuralfetch/studies/testing/test2024eeg.py +99 -0
- neuralfetch-0.0.3/neuralfetch/studies/testing/test2024fnirs.py +93 -0
- neuralfetch-0.0.3/neuralfetch/studies/testing/test2025ieeg.py +104 -0
- neuralfetch-0.0.3/neuralfetch/test_download.py +246 -0
- neuralfetch-0.0.3/neuralfetch/test_studies.py +117 -0
- neuralfetch-0.0.3/neuralfetch/test_utils.py +57 -0
- neuralfetch-0.0.3/neuralfetch/utils.py +442 -0
- neuralfetch-0.0.3/neuralfetch.egg-info/PKG-INFO +40 -0
- neuralfetch-0.0.3/neuralfetch.egg-info/SOURCES.txt +28 -0
- neuralfetch-0.0.3/neuralfetch.egg-info/dependency_links.txt +1 -0
- neuralfetch-0.0.3/neuralfetch.egg-info/entry_points.txt +2 -0
- neuralfetch-0.0.3/neuralfetch.egg-info/requires.txt +4 -0
- neuralfetch-0.0.3/neuralfetch.egg-info/top_level.txt +1 -0
- neuralfetch-0.0.3/pyproject.toml +64 -0
- neuralfetch-0.0.3/setup.cfg +4 -0
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: neuralfetch
|
|
3
|
+
Version: 0.0.3
|
|
4
|
+
Summary: Download backends and data-fetching utilities for neuralset.
|
|
5
|
+
Author: Meta FAIR
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
Project-URL: Source, https://github.com/facebookresearch/neuroai
|
|
8
|
+
Project-URL: Tracker, https://github.com/facebookresearch/neuroai/issues
|
|
9
|
+
Requires-Python: >=3.12
|
|
10
|
+
Description-Content-Type: text/markdown
|
|
11
|
+
License-File: LICENSE
|
|
12
|
+
Requires-Dist: neuralset>=0.0.1
|
|
13
|
+
Requires-Dist: h5py
|
|
14
|
+
Requires-Dist: pybv>=0.7.3
|
|
15
|
+
Requires-Dist: mne_bids>=0.16
|
|
16
|
+
Dynamic: license-file
|
|
17
|
+
|
|
18
|
+
# neuralfetch
|
|
19
|
+
|
|
20
|
+
Download backends and data-fetching utilities for neuroimaging datasets.
|
|
21
|
+
|
|
22
|
+
- **Download backends** for OpenNeuro, DANDI, S3, Physionet, OSF, Zenodo, Figshare, Hugging Face, Synapse, Dryad, and more
|
|
23
|
+
- **Helper utilities** for study data management, BIDS export, and file scanning
|
|
24
|
+
- Built on top of [neuralset](https://github.com/facebookresearch/neuroai)
|
|
25
|
+
|
|
26
|
+
## Install
|
|
27
|
+
|
|
28
|
+
```bash
|
|
29
|
+
pip install neuralfetch
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
## Third-Party Content
|
|
33
|
+
|
|
34
|
+
References to third-party content from other locations are subject to
|
|
35
|
+
their own licenses and you may have other legal obligations or
|
|
36
|
+
restrictions that govern your use of that content.
|
|
37
|
+
|
|
38
|
+
## License
|
|
39
|
+
|
|
40
|
+
This project is licensed under the MIT License. See [LICENSE](LICENSE) for details.
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# neuralfetch
|
|
2
|
+
|
|
3
|
+
Download backends and data-fetching utilities for neuroimaging datasets.
|
|
4
|
+
|
|
5
|
+
- **Download backends** for OpenNeuro, DANDI, S3, Physionet, OSF, Zenodo, Figshare, Hugging Face, Synapse, Dryad, and more
|
|
6
|
+
- **Helper utilities** for study data management, BIDS export, and file scanning
|
|
7
|
+
- Built on top of [neuralset](https://github.com/facebookresearch/neuroai)
|
|
8
|
+
|
|
9
|
+
## Install
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
pip install neuralfetch
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
## Third-Party Content
|
|
16
|
+
|
|
17
|
+
References to third-party content from other locations are subject to
|
|
18
|
+
their own licenses and you may have other legal obligations or
|
|
19
|
+
restrictions that govern your use of that content.
|
|
20
|
+
|
|
21
|
+
## License
|
|
22
|
+
|
|
23
|
+
This project is licensed under the MIT License. See [LICENSE](LICENSE) for details.
|