# spec2nexus
Converts SPEC data files and scans into NeXus HDF5 files:
$ spec2nexus path/to/file/specfile.dat
Writes `path/to/file/specfile.hdf5`
- Conda install: `conda install -c conda-forge spec2nexus`
- Pip install: `pip install spec2nexus`
## Provides
### Applications
- [**spec2nexus**](https://prjemian.github.io/spec2nexus/spec2nexus.html) :
Convert [SPEC](https://certif.com) data
files to [NeXus](https://nexusformat.org) [HDF5](https://hdfgroup.org)
- [**extractSpecScan**](https://prjemian.github.io/spec2nexus/extractSpecScan.html) :
Save columns from SPEC data file scan(s) to TSV files
- [**specplot**](https://prjemian.github.io/spec2nexus/specplot.html) :
plot a SPEC scan to an image file
- [**specplot\_gallery**](https://prjemian.github.io/spec2nexus/specplot_gallery.html) :
call **specplot** for all scans in a list of files, makes a web gallery
### Libraries
- [**spec**](https://prjemian.github.io/spec2nexus/spec.html) :
python binding to read SPEC data files
- [**eznx**](https://prjemian.github.io/spec2nexus/eznx.html) :
(Easy NeXus) supports writing NeXus HDF5 files using h5py
## Package Information
term | description
--- | ---
**copyright** | (c) 2014-2022, Pete R. Jemian
**links** | [documentation](https://prjemian.github.io/spec2nexus), [release notes](https://github.com/prjemian/spec2nexus/wiki/Release-Notes), [source code](https://github.com/prjemian/spec2nexus)
**citation** | [![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.6264513.svg)](https://doi.org/10.5281/zenodo.6264513)
**license** | [![Creative Commons Attribution 4.0 International Public License](https://anaconda.org/conda-forge/spec2nexus/badges/license.svg)](https://prjemian.github.io/spec2nexus/license.html) [LICENSE.txt](https://prjemian.github.io/spec2nexus/license.html)
**current releases** | [![image](https://img.shields.io/github/tag/prjemian/spec2nexus.svg)](https://github.com/prjemian/spec2nexus/tags) [![image](https://img.shields.io/github/release/prjemian/spec2nexus.svg)](https://github.com/prjemian/spec2nexus/releases)
**conda-forge** | [![https://anaconda.org/conda-forge/spec2nexus](https://anaconda.org/conda-forge/spec2nexus/badges/installer/conda.svg)](https://anaconda.org/conda-forge/spec2nexus) [![https://anaconda.org/conda-forge/spec2nexus](https://anaconda.org/conda-forge/spec2nexus/badges/version.svg)](https://anaconda.org/conda-forge/spec2nexus) [![Anaconda-Server Badge](https://anaconda.org/conda-forge/spec2nexus/badges/latest_release_date.svg)](https://anaconda.org/conda-forge/spec2nexus)
**PyPI** | [![https://pypi.python.org/pypi/spec2nexus](https://badge.fury.io/py/spec2nexus.svg)](https://badge.fury.io/py/spec2nexus) [![image](https://img.shields.io/pypi/v/spec2nexus.svg)](https://pypi.python.org/pypi/spec2nexus/)
**current builds** | [![Anaconda-Server Badge](https://anaconda.org/conda-forge/spec2nexus/badges/platforms.svg)](https://anaconda.org/conda-forge/spec2nexus) ![Python Package using Conda](https://github.com/prjemian/spec2nexus/workflows/Python%20Package%20using%20Conda/badge.svg)
**test & review** | [![image](https://img.shields.io/pypi/pyversions/spec2nexus.svg)](https://pypi.python.org/pypi/spec2nexus) [![image](https://coveralls.io/repos/github/prjemian/spec2nexus/badge.svg?branch=main)](https://coveralls.io/github/prjemian/spec2nexus?branch=main) [![Total alerts](https://img.shields.io/lgtm/alerts/g/prjemian/spec2nexus.svg?logo=lgtm&logoWidth=18)](https://lgtm.com/projects/g/prjemian/spec2nexus/alerts/) [![Codacy Badge](https://app.codacy.com/project/badge/Grade/58888d7def9e4cedb167b94c8fe53a26)](https://www.codacy.com/gh/prjemian/spec2nexus/dashboard?utm_source=github.com&utm_medium=referral&utm_content=prjemian/spec2nexus&utm_campaign=Badge_Grade)
**author** | Pete R. Jemian
**email** | prjemian@gmail.com
## NOTE about support for Python version 2
spec2nexus ended development for Python 2 with release 2021.1.7, 2019-11-21.
For more information, visit https://python3statement.org/.
Raw data
{
"_id": null,
"home_page": "https://github.com/prjemian/spec2nexus",
"name": "spec2nexus",
"maintainer": "",
"docs_url": "https://pythonhosted.org/spec2nexus/",
"requires_python": "",
"maintainer_email": "",
"keywords": "[\"SPEC\",\"diffraction\",\"data acquisition\",\"NeXus\",\"HDF5\",\"MatPlotLib\"]",
"author": "Pete R. Jemian",
"author_email": "prjemian@gmail.com",
"download_url": "https://files.pythonhosted.org/packages/4f/9b/796ecc640977dbc6d35c68fc0c871230c12121f84d1c84aedf805e44eafa/spec2nexus-2021.2.6.tar.gz",
"platform": null,
"description": "# spec2nexus\n\nConverts SPEC data files and scans into NeXus HDF5 files:\n\n $ spec2nexus path/to/file/specfile.dat\n\nWrites `path/to/file/specfile.hdf5`\n\n- Conda install: `conda install -c conda-forge spec2nexus`\n- Pip install: `pip install spec2nexus`\n\n## Provides\n\n### Applications\n\n- [**spec2nexus**](https://prjemian.github.io/spec2nexus/spec2nexus.html) :\n Convert [SPEC](https://certif.com) data\n files to [NeXus](https://nexusformat.org) [HDF5](https://hdfgroup.org)\n\n- [**extractSpecScan**](https://prjemian.github.io/spec2nexus/extractSpecScan.html) :\n Save columns from SPEC data file scan(s) to TSV files\n\n- [**specplot**](https://prjemian.github.io/spec2nexus/specplot.html) :\n plot a SPEC scan to an image file\n\n- [**specplot\\_gallery**](https://prjemian.github.io/spec2nexus/specplot_gallery.html) :\n call **specplot** for all scans in a list of files, makes a web gallery\n\n### Libraries\n\n- [**spec**](https://prjemian.github.io/spec2nexus/spec.html) :\n python binding to read SPEC data files\n\n- [**eznx**](https://prjemian.github.io/spec2nexus/eznx.html) :\n (Easy NeXus) supports writing NeXus HDF5 files using h5py\n\n## Package Information\n\nterm | description\n--- | ---\n**copyright** | (c) 2014-2022, Pete R. Jemian\n**links** | [documentation](https://prjemian.github.io/spec2nexus), [release notes](https://github.com/prjemian/spec2nexus/wiki/Release-Notes), [source code](https://github.com/prjemian/spec2nexus)\n**citation** | [![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.6264513.svg)](https://doi.org/10.5281/zenodo.6264513)\n**license** | [![Creative Commons Attribution 4.0 International Public License](https://anaconda.org/conda-forge/spec2nexus/badges/license.svg)](https://prjemian.github.io/spec2nexus/license.html) [LICENSE.txt](https://prjemian.github.io/spec2nexus/license.html)\n**current releases** | [![image](https://img.shields.io/github/tag/prjemian/spec2nexus.svg)](https://github.com/prjemian/spec2nexus/tags) [![image](https://img.shields.io/github/release/prjemian/spec2nexus.svg)](https://github.com/prjemian/spec2nexus/releases)\n**conda-forge** | [![https://anaconda.org/conda-forge/spec2nexus](https://anaconda.org/conda-forge/spec2nexus/badges/installer/conda.svg)](https://anaconda.org/conda-forge/spec2nexus) [![https://anaconda.org/conda-forge/spec2nexus](https://anaconda.org/conda-forge/spec2nexus/badges/version.svg)](https://anaconda.org/conda-forge/spec2nexus) [![Anaconda-Server Badge](https://anaconda.org/conda-forge/spec2nexus/badges/latest_release_date.svg)](https://anaconda.org/conda-forge/spec2nexus)\n**PyPI** | [![https://pypi.python.org/pypi/spec2nexus](https://badge.fury.io/py/spec2nexus.svg)](https://badge.fury.io/py/spec2nexus) [![image](https://img.shields.io/pypi/v/spec2nexus.svg)](https://pypi.python.org/pypi/spec2nexus/)\n**current builds** | [![Anaconda-Server Badge](https://anaconda.org/conda-forge/spec2nexus/badges/platforms.svg)](https://anaconda.org/conda-forge/spec2nexus) ![Python Package using Conda](https://github.com/prjemian/spec2nexus/workflows/Python%20Package%20using%20Conda/badge.svg)\n**test & review** | [![image](https://img.shields.io/pypi/pyversions/spec2nexus.svg)](https://pypi.python.org/pypi/spec2nexus) [![image](https://coveralls.io/repos/github/prjemian/spec2nexus/badge.svg?branch=main)](https://coveralls.io/github/prjemian/spec2nexus?branch=main) [![Total alerts](https://img.shields.io/lgtm/alerts/g/prjemian/spec2nexus.svg?logo=lgtm&logoWidth=18)](https://lgtm.com/projects/g/prjemian/spec2nexus/alerts/) [![Codacy Badge](https://app.codacy.com/project/badge/Grade/58888d7def9e4cedb167b94c8fe53a26)](https://www.codacy.com/gh/prjemian/spec2nexus/dashboard?utm_source=github.com&utm_medium=referral&utm_content=prjemian/spec2nexus&utm_campaign=Badge_Grade)\n**author** | Pete R. Jemian\n**email** | prjemian@gmail.com\n\n## NOTE about support for Python version 2\n\nspec2nexus ended development for Python 2 with release 2021.1.7, 2019-11-21.\nFor more information, visit https://python3statement.org/.\n",
"bugtrack_url": null,
"license": "Creative Commons Attribution 4.0 International Public License (see LICENSE file)",
"summary": "Convert SPEC data files and scans into NeXus HDF5 files.",
"version": "2021.2.6",
"split_keywords": [
"[\"spec\"",
"\"diffraction\"",
"\"data acquisition\"",
"\"nexus\"",
"\"hdf5\"",
"\"matplotlib\"]"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "2a26aae2992fe04190bd0078b09ce7eb96e9b1b5f4b3e4d2e4ae0697dc8c90c9",
"md5": "575765e38f9520b17fbb2ab975d949b9",
"sha256": "0f12df6a71f407999542554bdfbd8566cff3d11d80180e42f1a48c482615cca0"
},
"downloads": -1,
"filename": "spec2nexus-2021.2.6-py3-none-any.whl",
"has_sig": false,
"md5_digest": "575765e38f9520b17fbb2ab975d949b9",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 10966734,
"upload_time": "2023-02-10T07:46:57",
"upload_time_iso_8601": "2023-02-10T07:46:57.174004Z",
"url": "https://files.pythonhosted.org/packages/2a/26/aae2992fe04190bd0078b09ce7eb96e9b1b5f4b3e4d2e4ae0697dc8c90c9/spec2nexus-2021.2.6-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4f9b796ecc640977dbc6d35c68fc0c871230c12121f84d1c84aedf805e44eafa",
"md5": "c65f5fb4798b0d9727830afeb38454c3",
"sha256": "28a591a830fc0283c2f889c9a4b30c261846c996501be63b8d6bd1d46c005677"
},
"downloads": -1,
"filename": "spec2nexus-2021.2.6.tar.gz",
"has_sig": false,
"md5_digest": "c65f5fb4798b0d9727830afeb38454c3",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 11470131,
"upload_time": "2023-02-10T07:47:00",
"upload_time_iso_8601": "2023-02-10T07:47:00.351627Z",
"url": "https://files.pythonhosted.org/packages/4f/9b/796ecc640977dbc6d35c68fc0c871230c12121f84d1c84aedf805e44eafa/spec2nexus-2021.2.6.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2023-02-10 07:47:00",
"github": true,
"gitlab": false,
"bitbucket": false,
"github_user": "prjemian",
"github_project": "spec2nexus",
"travis_ci": false,
"coveralls": true,
"github_actions": true,
"requirements": [],
"lcname": "spec2nexus"
}