intern


Nameintern JSON
Version 1.4.1 PyPI version JSON
download
home_pagehttps://github.com/jhuapl-boss/intern
SummaryPython SDK for interacting with neuroscience data via the Boss API.
upload_time2023-03-03 14:57:24
maintainer
docs_urlNone
authorJohns Hopkins University Applied Physics Laboratory
requires_python
licenseApache 2.0
keywords brain microscopy neuroscience connectome connectomics spatial em electron calcium database boss microns
VCS
bugtrack_url
requirements numpy requests blosc six nose2 joblib psutil pillow tqdm
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # intern

[![PyPI version](https://img.shields.io/pypi/v/intern?style=for-the-badge)](https://pypi.org/project/intern/)
[![Python 3.6/3.7 Tests](https://img.shields.io/github/actions/workflow/status/jhuapl-boss/intern/tests.yml?style=for-the-badge)](https://github.com/jhuapl-boss/intern/actions?query=workflow%3A%22Test+Python+Package%22)

**intern** (Integrated Toolkit for Extensible and Reproducible Neuroscience) is a Python 3 module that enables big-data neuroscience. Currently, it provides an interface to common big-data neuroimaging databases such as [BossDB](https://bossdb.org), CloudVolume, DVID, and other standard formats.


## Getting Started

To quickly get started with intern, check out the wiki: [https://github.com/jhuapl-boss/intern/wiki](https://github.com/jhuapl-boss/intern/wiki)

## Documentation

Full detailed documentation can be found here: [https://jhuapl-boss.github.io/intern/](https://jhuapl-boss.github.io/intern/)

## Installation

-   It's always a good idea to use virtualenv to isolate your work from your system Python installation:

-   Using [virtualenv](https://virtualenv.pypa.io/en/stable/):

```shell
virtualenv intern
. intern/bin/activate
```

-   Using [virtualenvwrapper](https://virtualenvwrapper.readthedocs.io/en/latest/):

```shell
mkvirtualenv intern
```

-   (Preferred) Install via pypi

```shell
pip install intern
```

-   Install via git

Clone the repository from https://github.com/jhuapl-boss/intern and run
`pip install -r requirements.txt` from the repository's location on your
system.

Add `<repository location>` to your `PYTHONPATH`.

For example, on a \*nix system, if intern was cloned to ~/intern:

`export PYTHONPATH=$PYTHONPATH:~/intern`

> **For Python 2 support, you will need to install intern v0.10.0 or earlier.**

### Optional Dependencies
To install depedencies required to use the [cloud-volume](https://github.com/seung-lab/cloud-volume) remote, run the command: 

```shell
pip install intern[cloudvolume]
```

## Contributing

Please submit bug reports, or get in touch using GitHub Issues.

## Citation

If you find this library useful to your work, please consider citing the following:

https://www.biorxiv.org/content/10.1101/2020.05.15.098707v1

```
@article{intern,
	doi = {10.1101/2020.05.15.098707},
	url = {https://www.biorxiv.org/content/10.1101/2020.05.15.098707v1},
	year = 2020,
	month = {may},
	publisher = {BiorXiv},
	author = {Matelsky, Jordan K and Rodriguez, Luis and Xenes, Daniel and Gion, Timothy and Hider Jr., Robert and Wester, Brock and Gray-Roncal, William},
	title = {{intern: Integrated Toolkit for Extensible and Reproducible Neuroscience}},
	journal = {BiorXiv}
}
```

## The Boss Legal Notes

Use or redistribution of the Boss system in source and/or binary forms, with or without modification, are permitted provided that the following conditions are met:

1. Redistributions of source code or binary forms must adhere to the terms and conditions of any applicable software licenses.
2. End-user documentation or notices, whether included as part of a redistribution or disseminated as part of a legal or scientific disclosure (e.g. publication) or advertisement, must include the following acknowledgement: The Boss software system was designed and developed by the Johns Hopkins University Applied Physics Laboratory (JHU/APL).
3. The names "The Boss", "JHU/APL", "Johns Hopkins University", "Applied Physics Laboratory", "MICrONS", or "IARPA" must not be used to endorse or promote products derived from this software without prior written permission. For written permission, please contact BossAdmin@jhuapl.edu.
4. This source code and library is distributed in the hope that it will be useful, but is provided without any warranty of any kind.




            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/jhuapl-boss/intern",
    "name": "intern",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "brain,microscopy,neuroscience,connectome,connectomics,spatial,EM,electron,calcium,database,boss,microns",
    "author": "Johns Hopkins University Applied Physics Laboratory",
    "author_email": "iarpamicrons@jhuapl.edu",
    "download_url": "https://files.pythonhosted.org/packages/81/01/14e435ed5713f7e4a5f59419907e8e77f4eea01e4189a00fa7afd788a96d/intern-1.4.1.tar.gz",
    "platform": null,
    "description": "# intern\n\n[![PyPI version](https://img.shields.io/pypi/v/intern?style=for-the-badge)](https://pypi.org/project/intern/)\n[![Python 3.6/3.7 Tests](https://img.shields.io/github/actions/workflow/status/jhuapl-boss/intern/tests.yml?style=for-the-badge)](https://github.com/jhuapl-boss/intern/actions?query=workflow%3A%22Test+Python+Package%22)\n\n**intern** (Integrated Toolkit for Extensible and Reproducible Neuroscience) is a Python 3 module that enables big-data neuroscience. Currently, it provides an interface to common big-data neuroimaging databases such as [BossDB](https://bossdb.org), CloudVolume, DVID, and other standard formats.\n\n\n## Getting Started\n\nTo quickly get started with intern, check out the wiki: [https://github.com/jhuapl-boss/intern/wiki](https://github.com/jhuapl-boss/intern/wiki)\n\n## Documentation\n\nFull detailed documentation can be found here: [https://jhuapl-boss.github.io/intern/](https://jhuapl-boss.github.io/intern/)\n\n## Installation\n\n-   It's always a good idea to use virtualenv to isolate your work from your system Python installation:\n\n-   Using [virtualenv](https://virtualenv.pypa.io/en/stable/):\n\n```shell\nvirtualenv intern\n. intern/bin/activate\n```\n\n-   Using [virtualenvwrapper](https://virtualenvwrapper.readthedocs.io/en/latest/):\n\n```shell\nmkvirtualenv intern\n```\n\n-   (Preferred) Install via pypi\n\n```shell\npip install intern\n```\n\n-   Install via git\n\nClone the repository from https://github.com/jhuapl-boss/intern and run\n`pip install -r requirements.txt` from the repository's location on your\nsystem.\n\nAdd `<repository location>` to your `PYTHONPATH`.\n\nFor example, on a \\*nix system, if intern was cloned to ~/intern:\n\n`export PYTHONPATH=$PYTHONPATH:~/intern`\n\n> **For Python 2 support, you will need to install intern v0.10.0 or earlier.**\n\n### Optional Dependencies\nTo install depedencies required to use the [cloud-volume](https://github.com/seung-lab/cloud-volume) remote, run the command: \n\n```shell\npip install intern[cloudvolume]\n```\n\n## Contributing\n\nPlease submit bug reports, or get in touch using GitHub Issues.\n\n## Citation\n\nIf you find this library useful to your work, please consider citing the following:\n\nhttps://www.biorxiv.org/content/10.1101/2020.05.15.098707v1\n\n```\n@article{intern,\n\tdoi = {10.1101/2020.05.15.098707},\n\turl = {https://www.biorxiv.org/content/10.1101/2020.05.15.098707v1},\n\tyear = 2020,\n\tmonth = {may},\n\tpublisher = {BiorXiv},\n\tauthor = {Matelsky, Jordan K and Rodriguez, Luis and Xenes, Daniel and Gion, Timothy and Hider Jr., Robert and Wester, Brock and Gray-Roncal, William},\n\ttitle = {{intern: Integrated Toolkit for Extensible and Reproducible Neuroscience}},\n\tjournal = {BiorXiv}\n}\n```\n\n## The Boss Legal Notes\n\nUse or redistribution of the Boss system in source and/or binary forms, with or without modification, are permitted provided that the following conditions are met:\n\n1. Redistributions of source code or binary forms must adhere to the terms and conditions of any applicable software licenses.\n2. End-user documentation or notices, whether included as part of a redistribution or disseminated as part of a legal or scientific disclosure (e.g. publication) or advertisement, must include the following acknowledgement: The Boss software system was designed and developed by the Johns Hopkins University Applied Physics Laboratory (JHU/APL).\n3. The names \"The Boss\", \"JHU/APL\", \"Johns Hopkins University\", \"Applied Physics Laboratory\", \"MICrONS\", or \"IARPA\" must not be used to endorse or promote products derived from this software without prior written permission. For written permission, please contact BossAdmin@jhuapl.edu.\n4. This source code and library is distributed in the hope that it will be useful, but is provided without any warranty of any kind.\n\n\n\n",
    "bugtrack_url": null,
    "license": "Apache 2.0",
    "summary": "Python SDK for interacting with neuroscience data via the Boss API.",
    "version": "1.4.1",
    "project_urls": {
        "Download": "https://github.com/jhuapl-boss/intern/tarball/1.4.1",
        "Homepage": "https://github.com/jhuapl-boss/intern"
    },
    "split_keywords": [
        "brain",
        "microscopy",
        "neuroscience",
        "connectome",
        "connectomics",
        "spatial",
        "em",
        "electron",
        "calcium",
        "database",
        "boss",
        "microns"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "810114e435ed5713f7e4a5f59419907e8e77f4eea01e4189a00fa7afd788a96d",
                "md5": "a1e25f7482f1fd9edea6269861b614ee",
                "sha256": "7cdc6caa66716760f93dbbadaa67cc8a03866d6c5f33a6a3285cb9e5f4994315"
            },
            "downloads": -1,
            "filename": "intern-1.4.1.tar.gz",
            "has_sig": false,
            "md5_digest": "a1e25f7482f1fd9edea6269861b614ee",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 858255,
            "upload_time": "2023-03-03T14:57:24",
            "upload_time_iso_8601": "2023-03-03T14:57:24.602021Z",
            "url": "https://files.pythonhosted.org/packages/81/01/14e435ed5713f7e4a5f59419907e8e77f4eea01e4189a00fa7afd788a96d/intern-1.4.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-03-03 14:57:24",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "jhuapl-boss",
    "github_project": "intern",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [
        {
            "name": "numpy",
            "specs": []
        },
        {
            "name": "requests",
            "specs": [
                [
                    ">=",
                    "2.11.1"
                ]
            ]
        },
        {
            "name": "blosc",
            "specs": [
                [
                    ">=",
                    "1.4.4"
                ]
            ]
        },
        {
            "name": "six",
            "specs": []
        },
        {
            "name": "nose2",
            "specs": []
        },
        {
            "name": "joblib",
            "specs": []
        },
        {
            "name": "psutil",
            "specs": []
        },
        {
            "name": "pillow",
            "specs": []
        },
        {
            "name": "tqdm",
            "specs": []
        }
    ],
    "lcname": "intern"
}
        
Elapsed time: 0.13225s