Metadata-Version: 2.4
Name: neurosift
Version: 0.2.15
Summary: Simple utility to view local NWB files using Neurosift
Author-email: Jeremy Magland <jmagland@flatironinstitute.org>
License: Apache-2.0
Project-URL: Homepage, https://github.com/flatironinstitute/neurosift
Project-URL: Repository, https://github.com/flatironinstitute/neurosift
Project-URL: Bug Tracker, https://github.com/flatironinstitute/neurosift/issues
Project-URL: Documentation, https://github.com/flatironinstitute/neurosift/tree/main/python
Keywords: neuroscience,nwb,visualization,hdf5,zarr
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Science/Research
Classifier: Topic :: Scientific/Engineering :: Visualization
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Requires-Dist: click>=7.0
Provides-Extra: video
Requires-Dist: opencv-python>=4.0; extra == "video"
Requires-Dist: numcodecs>=0.10; extra == "video"
Requires-Dist: numpy; extra == "video"
Provides-Extra: test
Requires-Dist: pynwb>=2.0.0; extra == "test"
Requires-Dist: h5py>=3.0.0; extra == "test"

# Neurosift Python utility

This is a simple command-line utility used to view local NWB files using Neurosift.

## Installation

```bash
pip install neurosift
```

## Usage

```bash
neurosift view-nwb /path/to/file.nwb
```

This will open a web browser window with the Neurosift web app pointing to a symlinked copy of your file. You can then browse the file and visualize its contents.

When finished, you can stop the server by pressing Ctrl-C in the terminal window.

If you're running Neurosift in a local development server, you can point to it instead:

```bash
neurosift view-nwb /path/to/file.nwb --neurosift-url http://localhost:5173
```
