openspi


Nameopenspi JSON
Version 0.0.5 PyPI version JSON
download
home_pagehttps://github.com/KrisHeathNREL/OpenSpecy-Python-Interface
SummaryThis package is designed to easily interface with the OpenSpecy package for R. Python is used for file preprocessing and post-processing, and OpenSpecy is accessed by executing R from Python.
upload_time2025-08-06 16:45:42
maintainerNone
docs_urlNone
authorKristopher Heath
requires_pythonNone
licenseMIT
keywords openspecy openspecy microplastics plastics polymer infrared spectra spectral raman ftir environmental
VCS
bugtrack_url
requirements openpyxl pandas rpy2
Travis-CI No Travis.
coveralls test coverage No coveralls.
            Please open an issue or contact me directly at [kheath@nrel.gov](<mailto:kheath@nrel.gov>) if you encounter any problems.

## Contents

[OpenSpecy Python Interface](#openspecy-python-interface)

[OpenSpecy Compatibility](#openspecy-compatibility)

[Setup and Installation](#setup-and-installation)

[Usage & Documentation](#usage--documentation)

[Notes](#notes)

[To-Do](#to-do)

[Contributing](#contributing)

[License](#license)

[Installation Tutorial](#installation-tutorial)

---

# OpenSpecy Python Interface

[OpenSpecy](https://github.com/wincowgerDEV/OpenSpecy-package) is a spectral processing tool for the analysis of Raman and FTIR spectra of environmental plastics. It contains several functions to process and enhance the spectral signals in order to obtain material matches by utilizing an online reference library. It is entirely open-source and free to use, both via an R package available on [CRAN](https://cran.r-project.org/web/packages/OpenSpecy/index.html) as well as a [web version](https://www.openanalysis.org/openspecy/) built with R shiny.

The web version is quite useful, but usage can be hindered by the strength of one's Internet connectivity. Additionally, there is currently no support for downloading a file containing the top *n* matches for all samples in a batch; instead, each file must be individually uploaded and processed, and then the table containing the top *n* matches can be viewed. This greatly restricts processing speed, especially for bulk file uploads. Additionally, the .csv exported by the web version contains many columns of data, and, depending on one's intended use, many may not be immediately necessary for the user.

The OpenSpecy R package, however, can process all top *n* matches consecutively and quickly. The exported data table is still quite large and cumbersome, so for ease and speed of data interpretation, it is necessary to rearrange and exclude several of the columns. R is a great tool for this, but so is Python, which is more user-oriented and beginner-friendly, making it more accessible to less-code-literate people who may have a need for OpenSpecy.

Thus was the beginning of the **OpenSpecy Python Interface** (aka **openspi**), an all-in-one spectral data processing package. It contains several functions to 1) preprocess data to ensure it will be readable by the OpenSpecy R package, 2) call on R to execute a script that uses OpenSpecy, and 3) post-process the data to make a concise, readable Excel sheet containing all the data. It can also be utilized as a comprehensive script that processes your files from start to finish, reducing the need for prior coding knowledge.

[GitHub page here](https://github.com/kristopher-heath/OpenSpecy-Python-Interface)

[PyPI page here](https://pypi.org/project/openspi/)

---

## OpenSpecy Compatibility

This package is compatible [OpenSpecy v1.4.0](https://cran.r-project.org/web/packages/OpenSpecy/index.html).

---

## Setup and Installation

Note: This is a brief overview of the setup process. For an explicit step-by-step walkthrough, please see the [Installation Tutorial](#installation-tutorial).

**R Installation and Configuration**

* Download and install the most recent version of [R](https://cran.r-project.org/) for your OS
  * Note: R must be installed directly to your device, not inside an environment
* Open up the RGUI
* In the R Console, run the following:

```bash
install.packages('OpenSpecy', repos='http://cran.us.r-project.org')
```

* Once OpenSpecy is installed, run the following code to install the spectral libraries:

```bash
library(OpenSpecy)
get_lib()
```

* Run one last line in the console to get the `R_HOME` variable. Copy and paste it somewhere for later, as it will be necessary to define when using this package.

```bash
R.home()
```

* Exit the RGUI window

---

**Python Installation**

* Create a new environment in Anaconda
* Run the following in the environment terminal:

```bash
pip install openspi
```

* Run Python in the IDE of your choice
* Use the package as outlined below

---

## Usage & Documentation

This tool accepts either 1) a single .csv file or 2) a folder containing *n* .csv files, which must be structured as outlined in the test_files folder:

```bash
├── test_files
│   ├── acrylic_blue.csv
│   ├── nylon66_gf.csv
│   ├── pe_highdensity_gf.csv
│   ├── pp_granule_gf.csv
└── └── ps_amorphous_gf.csv
```

Notes:

* The folder must only contain .csv files.
* The spectral library used in this package is set to only use  FTIR spectra from OpenSpecy's [derivative library](https://osf.io/x7dpz/). This will most likely be configurable in the future.
* Currently, this will pull the top 5 matches for each spectrum. This will be changeable in the future.

**Example:**

```bash
import os
os.environ['R_HOME'] = r"C:\Program Files\R\R-4.4.2" # Replace with your own 'R_HOME' var

from openspi.core import openspi_main

openspi_main(
    source_path = r"C:\Users\USER\Documents\Unprocessed Data\test_files",
    range_min = 650,
    range_max = 4000,
    export_xlsx = "FILENAME.xlsx",
    export_dir = r"C:\Users\USER\Documents\OpenSpecy Exports"
    _version = False)
```

Please see [https://openspecy-python-interface.readthedocs.io/en/stable/](https://openspecy-python-interface.readthedocs.io/en/stable/) for all available functions.

## Notes

This package uses [rpy2](https://rpy2.github.io/) to execute R code through Python. To write your own R script, use the [`rpy2.robjects.r`](https://rpy2.github.io/doc/v3.5.x/html/introduction.html#calling-r-functions) function.

## To-Do

* Add support for settings customizability
  * Configurability for top *n* matches (rather than top 5 only)
  * Selection of OpenSpecy library
  * Full configurability of OpenSpecy's [`process_spec`](https://rawcdn.githack.com/wincowgerDEV/OpenSpecy-package/c253d6c3298c7db56fbfdceee6ff0e654a1431cd/reference/process_spec.html) function

---

## Contributing

Pull requests are welcome. For major changes, please open an issue first
to discuss what you would like to change.

Please make sure to update tests as appropriate.

---

## License

[MIT](https://choosealicense.com/licenses/mit/)

---

# Installation Tutorial

This is a step-by-step walkthrough for users who aren't as familiar with using R and Python

## R Installation

1. Navigate to [https://cran.r-project.org/](https://cran.r-project.org/) and click the link to download R for your platform.
2. Once you have selected and downloaded your desired version, navigate to the downloaded .exe file and execute it.
3. Follow the on-screen instructions to set up R.
   * If you are using a work computer, make sure to install R in a place that you have read/write privileges. This is necessary for later steps when Python will need to access R libraries

## R Configuration

1. Once installation is complete, open R.
2. In the console, paste and run the following:

```bash
install.packages('OpenSpecy', repos='http://cran.us.r-project.org')
```

![install openspecy in R](https://github.com/kristopher-heath/OpenSpecy-Python-Interface/blob/main/instruction_pics/install_openspecy.png "install_openspecy")

3. Once OpenSpecy and its dependencies are installed, run the following code in the console one line at a time:

```bash
library(OpenSpecy)
get_lib()
```

* This will download the 7 spectral libraries that are available in OpenSpecy. These libraries will be kept on your hard drive, so after initial installation, this only needs to be done when the libraries are updated.

![get libraries](https://github.com/kristopher-heath/OpenSpecy-Python-Interface/blob/main/instruction_pics/get_lib.png "get_lib")

4. Run this line:

```bash
R.home()
```

* Copy and paste the outputted path somewhere. This will be needed later.

![find R_home var](https://github.com/kristopher-heath/OpenSpecy-Python-Interface/blob/main/instruction_pics/r_home.png "r_home")

* Note that in this screenshot, the path is outputted in shorthand. In this case, it corresponds to "C:/Program Files/R/R-4.4.2"

5. Navigate to your `R_HOME` path. Double check that this folder has a 'bin' folder, which contains 'R.exe'
   * If it does not contain the 'bin' folder, look through your other files until you find a bin folder that contains 'R.exe' and copy and paste the file path of the parent directory (the folder that contains the 'bin' folder) somewhere for later

![navigate to the r_home path](https://github.com/kristopher-heath/OpenSpecy-Python-Interface/blob/main/instruction_pics/r_home_path.png "r_home_path")

---
![open the bin folder](https://github.com/kristopher-heath/OpenSpecy-Python-Interface/blob/main/instruction_pics/r_exe.png "r_exe")

6. Exit out of R. You will be prompted with "Save workspace image?" This is to save any user-defined objects. Because we have not defined anything, it does not matter if you select "yes" or "no"

## Anaconda Installation and Setup

[Anaconda Navigator](https://www.anaconda.com/download) will be used for the purposes of this tutorial.

1. If it is not already installed, download and install Anaconda from [https://www.anaconda.com/download](https://www.anaconda.com/download)
2. Open Anaconda and navigate to the Environments tab on the left side, and then select the Create button from the menu at the bottom of the screen.

![create anaconda environment](https://github.com/kristopher-heath/OpenSpecy-Python-Interface/blob/main/instruction_pics/create_env.png "create_env")
3. Name the environment as you choose.

## Python Setup

1. In Anaconda Navigator, click the arrow button next to the environment you created and select "Open Terminal"

![open terminal](https://github.com/kristopher-heath/OpenSpecy-Python-Interface/blob/main/instruction_pics/open_terminal.png "open_terminal")

* Note that the environment in this screenshot is the base (root) environment. Please be sure to open the environment you created, not base

2. In the terminal, run the following:

```bash
python -m pip install --index-url https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple openspi
```

* This will install this package as well as its dependencies (pandas, openpyxl, and rpy2)

3. Exit out of the terminal

## Python Usage

1. Open a new Python script in your preferred application through Anaconda. Spyder is highly recommended
2. In order for Python to interact with R, it must be able to access the `R_HOME` variable. However, because Python is within a virtual environment, **this variable must manually specified before the package can be imported.**
   * Paste the following code **at the beginning of the script**

```bash
import os
os.environ['R_HOME'] = r"C:\Program Files\R\R-4.4.2"	# Paste your own R_HOME var here
import openspi.core
```

🎉 Congrats! You have completed setup and installation! 🎉

Please see the [Usage & Documentation](#usage--documentation) section for more information.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/KrisHeathNREL/OpenSpecy-Python-Interface",
    "name": "openspi",
    "maintainer": null,
    "docs_url": null,
    "requires_python": null,
    "maintainer_email": null,
    "keywords": "OpenSpecy, openspecy, microplastics, plastics, polymer, infrared, spectra, spectral, raman, ftir, environmental",
    "author": "Kristopher Heath",
    "author_email": "kheath@nrel.gov",
    "download_url": "https://files.pythonhosted.org/packages/9d/94/101c62deb4da37d46ec4628de53e6940ec5a04bd4658ea249a640daafe95/openspi-0.0.5.tar.gz",
    "platform": null,
    "description": "Please open an issue or contact me directly at [kheath@nrel.gov](<mailto:kheath@nrel.gov>) if you encounter any problems.\n\n## Contents\n\n[OpenSpecy Python Interface](#openspecy-python-interface)\n\n[OpenSpecy Compatibility](#openspecy-compatibility)\n\n[Setup and Installation](#setup-and-installation)\n\n[Usage & Documentation](#usage--documentation)\n\n[Notes](#notes)\n\n[To-Do](#to-do)\n\n[Contributing](#contributing)\n\n[License](#license)\n\n[Installation Tutorial](#installation-tutorial)\n\n---\n\n# OpenSpecy Python Interface\n\n[OpenSpecy](https://github.com/wincowgerDEV/OpenSpecy-package) is a spectral processing tool for the analysis of Raman and FTIR spectra of environmental plastics. It contains several functions to process and enhance the spectral signals in order to obtain material matches by utilizing an online reference library. It is entirely open-source and free to use, both via an R package available on [CRAN](https://cran.r-project.org/web/packages/OpenSpecy/index.html) as well as a [web version](https://www.openanalysis.org/openspecy/) built with R shiny.\n\nThe web version is quite useful, but usage can be hindered by the strength of one's Internet connectivity. Additionally, there is currently no support for downloading a file containing the top *n* matches for all samples in a batch; instead, each file must be individually uploaded and processed, and then the table containing the top *n* matches can be viewed. This greatly restricts processing speed, especially for bulk file uploads. Additionally, the .csv exported by the web version contains many columns of data, and, depending on one's intended use, many may not be immediately necessary for the user.\n\nThe OpenSpecy R package, however, can process all top *n* matches consecutively and quickly. The exported data table is still quite large and cumbersome, so for ease and speed of data interpretation, it is necessary to rearrange and exclude several of the columns. R is a great tool for this, but so is Python, which is more user-oriented and beginner-friendly, making it more accessible to less-code-literate people who may have a need for OpenSpecy.\n\nThus was the beginning of the **OpenSpecy Python Interface** (aka **openspi**), an all-in-one spectral data processing package. It contains several functions to 1) preprocess data to ensure it will be readable by the OpenSpecy R package, 2) call on R to execute a script that uses OpenSpecy, and 3) post-process the data to make a concise, readable Excel sheet containing all the data. It can also be utilized as a comprehensive script that processes your files from start to finish, reducing the need for prior coding knowledge.\n\n[GitHub page here](https://github.com/kristopher-heath/OpenSpecy-Python-Interface)\n\n[PyPI page here](https://pypi.org/project/openspi/)\n\n---\n\n## OpenSpecy Compatibility\n\nThis package is compatible [OpenSpecy v1.4.0](https://cran.r-project.org/web/packages/OpenSpecy/index.html).\n\n---\n\n## Setup and Installation\n\nNote: This is a brief overview of the setup process. For an explicit step-by-step walkthrough, please see the [Installation Tutorial](#installation-tutorial).\n\n**R Installation and Configuration**\n\n* Download and install the most recent version of [R](https://cran.r-project.org/) for your OS\n  * Note: R must be installed directly to your device, not inside an environment\n* Open up the RGUI\n* In the R Console, run the following:\n\n```bash\ninstall.packages('OpenSpecy', repos='http://cran.us.r-project.org')\n```\n\n* Once OpenSpecy is installed, run the following code to install the spectral libraries:\n\n```bash\nlibrary(OpenSpecy)\nget_lib()\n```\n\n* Run one last line in the console to get the `R_HOME` variable. Copy and paste it somewhere for later, as it will be necessary to define when using this package.\n\n```bash\nR.home()\n```\n\n* Exit the RGUI window\n\n---\n\n**Python Installation**\n\n* Create a new environment in Anaconda\n* Run the following in the environment terminal:\n\n```bash\npip install openspi\n```\n\n* Run Python in the IDE of your choice\n* Use the package as outlined below\n\n---\n\n## Usage & Documentation\n\nThis tool accepts either 1) a single .csv file or 2) a folder containing *n* .csv files, which must be structured as outlined in the test_files folder:\n\n```bash\n\u251c\u2500\u2500 test_files\n\u2502   \u251c\u2500\u2500 acrylic_blue.csv\n\u2502   \u251c\u2500\u2500 nylon66_gf.csv\n\u2502   \u251c\u2500\u2500 pe_highdensity_gf.csv\n\u2502   \u251c\u2500\u2500 pp_granule_gf.csv\n\u2514\u2500\u2500 \u2514\u2500\u2500 ps_amorphous_gf.csv\n```\n\nNotes:\n\n* The folder must only contain .csv files.\n* The spectral library used in this package is set to only use  FTIR spectra from OpenSpecy's [derivative library](https://osf.io/x7dpz/). This will most likely be configurable in the future.\n* Currently, this will pull the top 5 matches for each spectrum. This will be changeable in the future.\n\n**Example:**\n\n```bash\nimport os\nos.environ['R_HOME'] = r\"C:\\Program Files\\R\\R-4.4.2\" # Replace with your own 'R_HOME' var\n\nfrom openspi.core import openspi_main\n\nopenspi_main(\n    source_path = r\"C:\\Users\\USER\\Documents\\Unprocessed Data\\test_files\",\n    range_min = 650,\n    range_max = 4000,\n    export_xlsx = \"FILENAME.xlsx\",\n    export_dir = r\"C:\\Users\\USER\\Documents\\OpenSpecy Exports\"\n    _version = False)\n```\n\nPlease see [https://openspecy-python-interface.readthedocs.io/en/stable/](https://openspecy-python-interface.readthedocs.io/en/stable/) for all available functions.\n\n## Notes\n\nThis package uses [rpy2](https://rpy2.github.io/) to execute R code through Python. To write your own R script, use the [`rpy2.robjects.r`](https://rpy2.github.io/doc/v3.5.x/html/introduction.html#calling-r-functions) function.\n\n## To-Do\n\n* Add support for settings customizability\n  * Configurability for top *n* matches (rather than top 5 only)\n  * Selection of OpenSpecy library\n  * Full configurability of OpenSpecy's [`process_spec`](https://rawcdn.githack.com/wincowgerDEV/OpenSpecy-package/c253d6c3298c7db56fbfdceee6ff0e654a1431cd/reference/process_spec.html) function\n\n---\n\n## Contributing\n\nPull requests are welcome. For major changes, please open an issue first\nto discuss what you would like to change.\n\nPlease make sure to update tests as appropriate.\n\n---\n\n## License\n\n[MIT](https://choosealicense.com/licenses/mit/)\n\n---\n\n# Installation Tutorial\n\nThis is a step-by-step walkthrough for users who aren't as familiar with using R and Python\n\n## R Installation\n\n1. Navigate to [https://cran.r-project.org/](https://cran.r-project.org/) and click the link to download R for your platform.\n2. Once you have selected and downloaded your desired version, navigate to the downloaded .exe file and execute it.\n3. Follow the on-screen instructions to set up R.\n   * If you are using a work computer, make sure to install R in a place that you have read/write privileges. This is necessary for later steps when Python will need to access R libraries\n\n## R Configuration\n\n1. Once installation is complete, open R.\n2. In the console, paste and run the following:\n\n```bash\ninstall.packages('OpenSpecy', repos='http://cran.us.r-project.org')\n```\n\n![install openspecy in R](https://github.com/kristopher-heath/OpenSpecy-Python-Interface/blob/main/instruction_pics/install_openspecy.png \"install_openspecy\")\n\n3. Once OpenSpecy and its dependencies are installed, run the following code in the console one line at a time:\n\n```bash\nlibrary(OpenSpecy)\nget_lib()\n```\n\n* This will download the 7 spectral libraries that are available in OpenSpecy. These libraries will be kept on your hard drive, so after initial installation, this only needs to be done when the libraries are updated.\n\n![get libraries](https://github.com/kristopher-heath/OpenSpecy-Python-Interface/blob/main/instruction_pics/get_lib.png \"get_lib\")\n\n4. Run this line:\n\n```bash\nR.home()\n```\n\n* Copy and paste the outputted path somewhere. This will be needed later.\n\n![find R_home var](https://github.com/kristopher-heath/OpenSpecy-Python-Interface/blob/main/instruction_pics/r_home.png \"r_home\")\n\n* Note that in this screenshot, the path is outputted in shorthand. In this case, it corresponds to \"C:/Program Files/R/R-4.4.2\"\n\n5. Navigate to your `R_HOME` path. Double check that this folder has a 'bin' folder, which contains 'R.exe'\n   * If it does not contain the 'bin' folder, look through your other files until you find a bin folder that contains 'R.exe' and copy and paste the file path of the parent directory (the folder that contains the 'bin' folder) somewhere for later\n\n![navigate to the r_home path](https://github.com/kristopher-heath/OpenSpecy-Python-Interface/blob/main/instruction_pics/r_home_path.png \"r_home_path\")\n\n---\n![open the bin folder](https://github.com/kristopher-heath/OpenSpecy-Python-Interface/blob/main/instruction_pics/r_exe.png \"r_exe\")\n\n6. Exit out of R. You will be prompted with \"Save workspace image?\" This is to save any user-defined objects. Because we have not defined anything, it does not matter if you select \"yes\" or \"no\"\n\n## Anaconda Installation and Setup\n\n[Anaconda Navigator](https://www.anaconda.com/download) will be used for the purposes of this tutorial.\n\n1. If it is not already installed, download and install Anaconda from [https://www.anaconda.com/download](https://www.anaconda.com/download)\n2. Open Anaconda and navigate to the Environments tab on the left side, and then select the Create button from the menu at the bottom of the screen.\n\n![create anaconda environment](https://github.com/kristopher-heath/OpenSpecy-Python-Interface/blob/main/instruction_pics/create_env.png \"create_env\")\n3. Name the environment as you choose.\n\n## Python Setup\n\n1. In Anaconda Navigator, click the arrow button next to the environment you created and select \"Open Terminal\"\n\n![open terminal](https://github.com/kristopher-heath/OpenSpecy-Python-Interface/blob/main/instruction_pics/open_terminal.png \"open_terminal\")\n\n* Note that the environment in this screenshot is the base (root) environment. Please be sure to open the environment you created, not base\n\n2. In the terminal, run the following:\n\n```bash\npython -m pip install --index-url https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple openspi\n```\n\n* This will install this package as well as its dependencies (pandas, openpyxl, and rpy2)\n\n3. Exit out of the terminal\n\n## Python Usage\n\n1. Open a new Python script in your preferred application through Anaconda. Spyder is highly recommended\n2. In order for Python to interact with R, it must be able to access the `R_HOME` variable. However, because Python is within a virtual environment, **this variable must manually specified before the package can be imported.**\n   * Paste the following code **at the beginning of the script**\n\n```bash\nimport os\nos.environ['R_HOME'] = r\"C:\\Program Files\\R\\R-4.4.2\"\t# Paste your own R_HOME var here\nimport openspi.core\n```\n\n\ud83c\udf89 Congrats! You have completed setup and installation! \ud83c\udf89\n\nPlease see the [Usage & Documentation](#usage--documentation) section for more information.\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "This package is designed to easily interface with the OpenSpecy package for R. Python is used for file preprocessing and post-processing, and OpenSpecy is accessed by executing R from Python.",
    "version": "0.0.5",
    "project_urls": {
        "Homepage": "https://github.com/KrisHeathNREL/OpenSpecy-Python-Interface"
    },
    "split_keywords": [
        "openspecy",
        " openspecy",
        " microplastics",
        " plastics",
        " polymer",
        " infrared",
        " spectra",
        " spectral",
        " raman",
        " ftir",
        " environmental"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4d785acd0c25cf2ed71eef8b84b1f3745a73e312fd9956b147010fe6046f9843",
                "md5": "842bc4ef4921f72ee17998f52f3af9cf",
                "sha256": "8c903b3ec190bb074d81a47739b35dae615715a06ad82a0a0e0a465d3eb77c92"
            },
            "downloads": -1,
            "filename": "openspi-0.0.5-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "842bc4ef4921f72ee17998f52f3af9cf",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 16334,
            "upload_time": "2025-08-06T16:45:40",
            "upload_time_iso_8601": "2025-08-06T16:45:40.111843Z",
            "url": "https://files.pythonhosted.org/packages/4d/78/5acd0c25cf2ed71eef8b84b1f3745a73e312fd9956b147010fe6046f9843/openspi-0.0.5-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9d94101c62deb4da37d46ec4628de53e6940ec5a04bd4658ea249a640daafe95",
                "md5": "dd0bed922b61edd24a075566d6d72879",
                "sha256": "9a8761792bb33db9cb5731e8bb3cc513e88a62c3abbdf653b9439d84cfd1e469"
            },
            "downloads": -1,
            "filename": "openspi-0.0.5.tar.gz",
            "has_sig": false,
            "md5_digest": "dd0bed922b61edd24a075566d6d72879",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 18890,
            "upload_time": "2025-08-06T16:45:42",
            "upload_time_iso_8601": "2025-08-06T16:45:42.004479Z",
            "url": "https://files.pythonhosted.org/packages/9d/94/101c62deb4da37d46ec4628de53e6940ec5a04bd4658ea249a640daafe95/openspi-0.0.5.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-08-06 16:45:42",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "KrisHeathNREL",
    "github_project": "OpenSpecy-Python-Interface",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [
        {
            "name": "openpyxl",
            "specs": [
                [
                    ">=",
                    "3.1.5"
                ]
            ]
        },
        {
            "name": "pandas",
            "specs": [
                [
                    ">=",
                    "2.2.3"
                ]
            ]
        },
        {
            "name": "rpy2",
            "specs": [
                [
                    "==",
                    "3.5.16"
                ]
            ]
        }
    ],
    "lcname": "openspi"
}
        
Elapsed time: 1.28257s