napari-micromanager


Namenapari-micromanager JSON
Version 0.1.3 PyPI version JSON
download
home_pageNone
SummaryMicro-Manager GUI interface in napari.
upload_time2024-09-26 18:30:06
maintainerNone
docs_urlNone
authorNone
requires_python>=3.9
licenseBSD 3-Clause License
keywords micro-manager microscope multi-processing remote
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # napari-micromanager

[![License](https://img.shields.io/pypi/l/napari-micromanager.svg?color=green)](https://github.com/napari/napari-micromanager/raw/master/LICENSE)
[![PyPI](https://img.shields.io/pypi/v/napari-micromanager.svg?color=green)](https://pypi.org/project/napari-micromanager)
[![Python Version](https://img.shields.io/pypi/pyversions/napari-micromanager.svg?color=green)](https://python.org)
[![Tests](https://github.com/pymmcore-plus/napari-micromanager/actions/workflows/ci.yml/badge.svg)](https://github.com/pymmcore-plus/napari-micromanager/actions/workflows/ci.yml)
[![codecov](https://codecov.io/gh/pymmcore-plus/napari-micromanager/branch/main/graph/badge.svg?token=tf6lYDWV1s)](https://codecov.io/gh/pymmcore-plus/napari-micromanager)

GUI interface between napari and micromanager powered by [pymmcore-plus](https://pymmcore-plus.github.io/pymmcore-plus/) and [pymmcore-widgets](https://pymmcore-plus.github.io/pymmcore-widgets/)

----------------------------------
<img width="1840" alt="napari-micromanager" src="https://github.com/pymmcore-plus/napari-micromanager/assets/1609449/e1f395cd-2d57-488e-89e2-b1923310fc2a">

## Installation

You can install `napari-micromanager` via [pip]:

    pip install napari-micromanager

You will also need a Qt backend such as PySide2/6, or PyQt5/6.  **PyQt is
preferred and receives more testing**. If you've previously installed napari
into this environment with `pip install napari[all]`, then you will likely
already have it. If not, you will also need to install a Qt backend of your
choice:

    pip install pyqt5  # or any of {pyqt5, pyqt6, pyside2, pyside6}

### Getting micromanager adapters

The easiest way to get the micromanager adapters is to use:

```
mmcore install
```

this will install micromanager to the pymmcore_plus folder in your site-package; use this to see where:

```
python -c "from pymmcore_plus import find_micromanager; print(find_micromanager())"
```

alternatively, you can direct pymmcore_plus to your own micromanager installation with the `MICROMANAGER_PATH`
environment variable:

```
export MICROMANAGER_PATH='/path/to/Micro-Manager-...'
```

## Contributing

Contributions are very welcome.

### Launching napari with plugin

You can launch napari and automatically load this plugin using the `launch-dev.py` script:

```bash
python launch-dev.py
```

Alternatively you can run:

```bash
napari -w napari-micromanager
```

## License

Distributed under the terms of the [BSD-3] license,
"napari-micromanager" is free and open source software

## Issues

If you encounter any problems, please [file an issue] along with a detailed description.

[BSD-3]: http://opensource.org/licenses/BSD-3-Clause
[file an issue]: https://github.com/pymmcore-plus/napari-micromanager/issues
[pip]: https://pypi.org/project/pip/

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "napari-micromanager",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.9",
    "maintainer_email": null,
    "keywords": "micro-manager, microscope, multi-processing, remote",
    "author": null,
    "author_email": "Federico Gasparoli <federico.gasparoli@gmail.com>, Talley Lambert <talley.lambert@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/54/60/e148435c86ad174c680467816e6f33bc5a328529ebd3ed9994e255d5c29e/napari_micromanager-0.1.3.tar.gz",
    "platform": null,
    "description": "# napari-micromanager\n\n[![License](https://img.shields.io/pypi/l/napari-micromanager.svg?color=green)](https://github.com/napari/napari-micromanager/raw/master/LICENSE)\n[![PyPI](https://img.shields.io/pypi/v/napari-micromanager.svg?color=green)](https://pypi.org/project/napari-micromanager)\n[![Python Version](https://img.shields.io/pypi/pyversions/napari-micromanager.svg?color=green)](https://python.org)\n[![Tests](https://github.com/pymmcore-plus/napari-micromanager/actions/workflows/ci.yml/badge.svg)](https://github.com/pymmcore-plus/napari-micromanager/actions/workflows/ci.yml)\n[![codecov](https://codecov.io/gh/pymmcore-plus/napari-micromanager/branch/main/graph/badge.svg?token=tf6lYDWV1s)](https://codecov.io/gh/pymmcore-plus/napari-micromanager)\n\nGUI interface between napari and micromanager powered by [pymmcore-plus](https://pymmcore-plus.github.io/pymmcore-plus/) and [pymmcore-widgets](https://pymmcore-plus.github.io/pymmcore-widgets/)\n\n----------------------------------\n<img width=\"1840\" alt=\"napari-micromanager\" src=\"https://github.com/pymmcore-plus/napari-micromanager/assets/1609449/e1f395cd-2d57-488e-89e2-b1923310fc2a\">\n\n## Installation\n\nYou can install `napari-micromanager` via [pip]:\n\n    pip install napari-micromanager\n\nYou will also need a Qt backend such as PySide2/6, or PyQt5/6.  **PyQt is\npreferred and receives more testing**. If you've previously installed napari\ninto this environment with `pip install napari[all]`, then you will likely\nalready have it. If not, you will also need to install a Qt backend of your\nchoice:\n\n    pip install pyqt5  # or any of {pyqt5, pyqt6, pyside2, pyside6}\n\n### Getting micromanager adapters\n\nThe easiest way to get the micromanager adapters is to use:\n\n```\nmmcore install\n```\n\nthis will install micromanager to the pymmcore_plus folder in your site-package; use this to see where:\n\n```\npython -c \"from pymmcore_plus import find_micromanager; print(find_micromanager())\"\n```\n\nalternatively, you can direct pymmcore_plus to your own micromanager installation with the `MICROMANAGER_PATH`\nenvironment variable:\n\n```\nexport MICROMANAGER_PATH='/path/to/Micro-Manager-...'\n```\n\n## Contributing\n\nContributions are very welcome.\n\n### Launching napari with plugin\n\nYou can launch napari and automatically load this plugin using the `launch-dev.py` script:\n\n```bash\npython launch-dev.py\n```\n\nAlternatively you can run:\n\n```bash\nnapari -w napari-micromanager\n```\n\n## License\n\nDistributed under the terms of the [BSD-3] license,\n\"napari-micromanager\" is free and open source software\n\n## Issues\n\nIf you encounter any problems, please [file an issue] along with a detailed description.\n\n[BSD-3]: http://opensource.org/licenses/BSD-3-Clause\n[file an issue]: https://github.com/pymmcore-plus/napari-micromanager/issues\n[pip]: https://pypi.org/project/pip/\n",
    "bugtrack_url": null,
    "license": "BSD 3-Clause License",
    "summary": "Micro-Manager GUI interface in napari.",
    "version": "0.1.3",
    "project_urls": {
        "Source": "https://github.com/pymmcore-plus/napari-micromanager",
        "Tracker": "https://github.com/pymmcore-plus/napari-micromanager/issues"
    },
    "split_keywords": [
        "micro-manager",
        " microscope",
        " multi-processing",
        " remote"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "950dca2b114b6997ec1ac63d58b7950336f60983f5ad8c8393cbd518a3096c56",
                "md5": "63ca5f28a644e3cf1b5bdea0c0aa20fa",
                "sha256": "65e5ac8c0e69a582314aaf3e86a1b8e8d27ab7881b024f31138848c95315a68a"
            },
            "downloads": -1,
            "filename": "napari_micromanager-0.1.3-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "63ca5f28a644e3cf1b5bdea0c0aa20fa",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.9",
            "size": 23344,
            "upload_time": "2024-09-26T18:30:05",
            "upload_time_iso_8601": "2024-09-26T18:30:05.304558Z",
            "url": "https://files.pythonhosted.org/packages/95/0d/ca2b114b6997ec1ac63d58b7950336f60983f5ad8c8393cbd518a3096c56/napari_micromanager-0.1.3-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5460e148435c86ad174c680467816e6f33bc5a328529ebd3ed9994e255d5c29e",
                "md5": "d1d29cc44227e2ca9051b7b19e70bc2e",
                "sha256": "b2b84ab31d63758e0e6b2eec4715814436206986dfb82d3127c5efa00e9edfef"
            },
            "downloads": -1,
            "filename": "napari_micromanager-0.1.3.tar.gz",
            "has_sig": false,
            "md5_digest": "d1d29cc44227e2ca9051b7b19e70bc2e",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.9",
            "size": 23197,
            "upload_time": "2024-09-26T18:30:06",
            "upload_time_iso_8601": "2024-09-26T18:30:06.714671Z",
            "url": "https://files.pythonhosted.org/packages/54/60/e148435c86ad174c680467816e6f33bc5a328529ebd3ed9994e255d5c29e/napari_micromanager-0.1.3.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-09-26 18:30:06",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "pymmcore-plus",
    "github_project": "napari-micromanager",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "napari-micromanager"
}
        
Elapsed time: 4.69931s