pyminflux


Namepyminflux JSON
Version 0.4.1 PyPI version JSON
download
home_pagehttps://github.com/bsse-scf/pyMINFLUX
SummaryReader, processor, and viewer of MINFLUX raw data.
upload_time2024-05-10 08:52:53
maintainerNone
docs_urlNone
authorAaron Ponti
requires_python<3.12,>=3.10
licenseApache-2.0
keywords minflux visualization filtering analysis python
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # ![](pyminflux/ui/assets/Logo_v3_small.png)&nbsp;&nbsp;&nbsp;pyMINFLUX

Reader, analyzer, and viewer of MINFLUX raw data.

<p align="center">
  <img width="800" src="https://pyminflux.ethz.ch/img/pyminflux.png">
</p>

## Installation

### Apps

Compiled executables (apps) for Linux, macOS and Windows can be downloaded from the [release page](https://github.com/bsse-scf/pyMINFLUX/releases/latest). 

**Please note**: since pyMINFLUX on macOS comes from an *unidentified developer*, you might need to make an exception in the macOS security settings when launching it for the first time. To do this, right-click on the application icon and select `Open`. After this initial setup, you can simply double-click the icon to launch pyMINFLUX normally.

### pip

The latest version of pyMINFLUX can also be installed from [pypi.org](https://pypi.org/project/pyminflux/). pyMINFLUX is compatible with and tested on Python 3.10 and 3.11. It is recommended to install pyMINFLUX in a conda environment as follows:

```sh
$ conda create -n pyminflux-env python=3.11  # or 3.10
$ conda activate pyminflux-env
$ pip install --upgrade pyminflux
```

pyMINFLUX can then easily be run from the command line:

```sh
$ pyminflux
```

## For developers and tinkerers

pyMINFLUX is compatible with and tested on Python 3.10 and 3.11. For development, it is recommended to install pyMINFLUX in editable mode in a [conda](https://docs.conda.io/en/latest/miniconda.html#latest-miniconda-installer-links) environment as follows:

```sh
$ conda create -n pyminflux-env python=3.11  # or 3.10
$ conda activate pyminflux-env
$ git clone https://github.com/bsse-scf/pyMINFLUX /path/to/pyminflux
$ cd /path/to/pyminflux
$ python -m pip install -e .
$ pip install -r dev-requirements.txt
```

If you want to participate to the development of pyMINFLUX, please have a look at [how you can contribute](CONTRIBUTING.md) and at our [code of conduct](CODE_OF_CONDUCT.md).

### Running pyMINFLUX from console

```sh
$ cd /path/to/pyminflux
$ python pyminflux/main.py  # As a Python script, or
$ pyminflux                 # as a standalone tool
```

### Using the pyMINFLUX API from Python scripts or Jupyter Notebooks

The graphical user interface is not the only way to use pyMINFLUX. Indeed, the pyMINFLUX core library can be integrated in Python scripts or Jupyter Notebooks. The documentation for the pyMIMFLUX core API can be found on [https://pyminflux.ethz.ch/api/pyminflux/](https://pyminflux.ethz.ch/api/pyminflux/); an example Jupyter Notebook is [bundled with the code](/examples/processing.ipynb).

## User manual

The user manual is hosted in the [project wiki](https://github.com/bsse-scf/pyMINFLUX/wiki/pyMINFLUX-user-manual).

## Official website

The official pyMINFLUX website is on https://pyminflux.ethz.ch.

## pyMINFLUX mailing list

Join the [pyMINFLUX mailing list](https://sympa.ethz.ch/sympa/subscribe/pyminflux) for release announcements and further discussions.

## Contributing to pyMINFLUX

We value the contribution of our community members, and to make sure that everyone can profit from this collaboration, we ask you to have a look at our [CONTRIBUTING](./CONTRIBUTING.md) and [CODE OF CONDUCT](./CODE_OF_CONDUCT.md) documents.

## Citing pyMINFLUX

If you use pyMINFLUX in your research, please cite this repository as follows:

> Aaron Ponti, Javier Casares Arias, & Thomas Horn. (2023). pyMINFLUX. Zenodo. [![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.7895501.svg)](https://doi.org/10.5281/zenodo.7895501)




            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/bsse-scf/pyMINFLUX",
    "name": "pyminflux",
    "maintainer": null,
    "docs_url": null,
    "requires_python": "<3.12,>=3.10",
    "maintainer_email": null,
    "keywords": "MINFLUX, Visualization, Filtering, Analysis, Python",
    "author": "Aaron Ponti",
    "author_email": "aaron.ponti@bsse.ethz.ch",
    "download_url": "https://files.pythonhosted.org/packages/73/6a/bf658362aaa91d13951a56511fe270b3ef39b70e68451e3daa4370a6e963/pyminflux-0.4.1.tar.gz",
    "platform": null,
    "description": "# ![](pyminflux/ui/assets/Logo_v3_small.png)&nbsp;&nbsp;&nbsp;pyMINFLUX\n\nReader, analyzer, and viewer of MINFLUX raw data.\n\n<p align=\"center\">\n  <img width=\"800\" src=\"https://pyminflux.ethz.ch/img/pyminflux.png\">\n</p>\n\n## Installation\n\n### Apps\n\nCompiled executables (apps) for Linux, macOS and Windows can be downloaded from the [release page](https://github.com/bsse-scf/pyMINFLUX/releases/latest). \n\n**Please note**: since pyMINFLUX on macOS comes from an *unidentified developer*, you might need to make an exception in the macOS security settings when launching it for the first time. To do this, right-click on the application icon and select `Open`. After this initial setup, you can simply double-click the icon to launch pyMINFLUX normally.\n\n### pip\n\nThe latest version of pyMINFLUX can also be installed from [pypi.org](https://pypi.org/project/pyminflux/). pyMINFLUX is compatible with and tested on Python 3.10 and 3.11. It is recommended to install pyMINFLUX in a conda environment as follows:\n\n```sh\n$ conda create -n pyminflux-env python=3.11  # or 3.10\n$ conda activate pyminflux-env\n$ pip install --upgrade pyminflux\n```\n\npyMINFLUX can then easily be run from the command line:\n\n```sh\n$ pyminflux\n```\n\n## For developers and tinkerers\n\npyMINFLUX is compatible with and tested on Python 3.10 and 3.11. For development, it is recommended to install pyMINFLUX in editable mode in a [conda](https://docs.conda.io/en/latest/miniconda.html#latest-miniconda-installer-links) environment as follows:\n\n```sh\n$ conda create -n pyminflux-env python=3.11  # or 3.10\n$ conda activate pyminflux-env\n$ git clone https://github.com/bsse-scf/pyMINFLUX /path/to/pyminflux\n$ cd /path/to/pyminflux\n$ python -m pip install -e .\n$ pip install -r dev-requirements.txt\n```\n\nIf you want to participate to the development of pyMINFLUX, please have a look at [how you can contribute](CONTRIBUTING.md) and at our [code of conduct](CODE_OF_CONDUCT.md).\n\n### Running pyMINFLUX from console\n\n```sh\n$ cd /path/to/pyminflux\n$ python pyminflux/main.py  # As a Python script, or\n$ pyminflux                 # as a standalone tool\n```\n\n### Using the pyMINFLUX API from Python scripts or Jupyter Notebooks\n\nThe graphical user interface is not the only way to use pyMINFLUX. Indeed, the pyMINFLUX core library can be integrated in Python scripts or Jupyter Notebooks. The documentation for the pyMIMFLUX core API can be found on [https://pyminflux.ethz.ch/api/pyminflux/](https://pyminflux.ethz.ch/api/pyminflux/); an example Jupyter Notebook is [bundled with the code](/examples/processing.ipynb).\n\n## User manual\n\nThe user manual is hosted in the [project wiki](https://github.com/bsse-scf/pyMINFLUX/wiki/pyMINFLUX-user-manual).\n\n## Official website\n\nThe official pyMINFLUX website is on https://pyminflux.ethz.ch.\n\n## pyMINFLUX mailing list\n\nJoin the [pyMINFLUX mailing list](https://sympa.ethz.ch/sympa/subscribe/pyminflux) for release announcements and further discussions.\n\n## Contributing to pyMINFLUX\n\nWe value the contribution of our community members, and to make sure that everyone can profit from this collaboration, we ask you to have a look at our [CONTRIBUTING](./CONTRIBUTING.md) and [CODE OF CONDUCT](./CODE_OF_CONDUCT.md) documents.\n\n## Citing pyMINFLUX\n\nIf you use pyMINFLUX in your research, please cite this repository as follows:\n\n> Aaron Ponti, Javier Casares Arias, & Thomas Horn. (2023). pyMINFLUX. Zenodo. [![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.7895501.svg)](https://doi.org/10.5281/zenodo.7895501)\n\n\n\n",
    "bugtrack_url": null,
    "license": "Apache-2.0",
    "summary": "Reader, processor, and viewer of MINFLUX raw data.",
    "version": "0.4.1",
    "project_urls": {
        "Bug Tracker": "https://github.com/bsse-scf/pyMINFLUX/issues",
        "Documentation": "https://github.com/bsse-scf/pyMINFLUX/wiki",
        "Homepage": "https://github.com/bsse-scf/pyMINFLUX",
        "Repository": "https://github.com/bsse-scf/pyMINFLUX"
    },
    "split_keywords": [
        "minflux",
        " visualization",
        " filtering",
        " analysis",
        " python"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "aebc14b02be1d1e120cecf5c43cd0416cf53196f285b77725442f218bbb24cf7",
                "md5": "eb37f82db2d32252c85df302bd87500e",
                "sha256": "a2dcbab5878969c4db7eeb9e93ab38ec0bc637f0c99fbc94786a0765d38e201e"
            },
            "downloads": -1,
            "filename": "pyminflux-0.4.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "eb37f82db2d32252c85df302bd87500e",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": "<3.12,>=3.10",
            "size": 585730,
            "upload_time": "2024-05-10T08:52:47",
            "upload_time_iso_8601": "2024-05-10T08:52:47.509470Z",
            "url": "https://files.pythonhosted.org/packages/ae/bc/14b02be1d1e120cecf5c43cd0416cf53196f285b77725442f218bbb24cf7/pyminflux-0.4.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "736abf658362aaa91d13951a56511fe270b3ef39b70e68451e3daa4370a6e963",
                "md5": "2e44a1b14336c4a6e6d5ce299bb78bb1",
                "sha256": "c6695a72c4dd50dae277ee43aac4a255ce7b4a71f1ab584d1049a61e59da5cfa"
            },
            "downloads": -1,
            "filename": "pyminflux-0.4.1.tar.gz",
            "has_sig": false,
            "md5_digest": "2e44a1b14336c4a6e6d5ce299bb78bb1",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "<3.12,>=3.10",
            "size": 535454,
            "upload_time": "2024-05-10T08:52:53",
            "upload_time_iso_8601": "2024-05-10T08:52:53.941278Z",
            "url": "https://files.pythonhosted.org/packages/73/6a/bf658362aaa91d13951a56511fe270b3ef39b70e68451e3daa4370a6e963/pyminflux-0.4.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-05-10 08:52:53",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "bsse-scf",
    "github_project": "pyMINFLUX",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "pyminflux"
}
        
Elapsed time: 0.38421s