inseis


Nameinseis JSON
Version 1.1.0 PyPI version JSON
download
home_pageNone
SummaryA GUI-based application for creating and running Seismic Unix workflows on Windows using the Linux subsystem
upload_time2025-07-18 15:22:51
maintainerNone
docs_urlNone
authorNone
requires_python>=3.9
licenseNone
keywords seismic processing segy geophysics seismic unix
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # InSeis

[![DOI](https://zenodo.org/badge/DOI/zenodo.15053545.svg)](https://doi.org/10.5281/zenodo.15053545)
[![PyPI](https://img.shields.io/pypi/v/segyrecover)](https://pypi.org/project/inseis/)
[![Last Commit](https://img.shields.io/github/last-commit/a-pertuz/inseis)](https://github.com/a-pertuz/inseis/commits/main)
[![License: GPL v3](https://img.shields.io/badge/License-GPLv3-green.svg)](https://www.gnu.org/licenses/gpl-3.0.en.html)
[![Python Version](https://img.shields.io/badge/Python-3.12+-yellow)](https://www.python.org/downloads/)

A GUI-based application designed in Python for creating and running Seismic Unix workflows on Windows through the Windows Subsystem for Linux (WSL). InSeis bridges the gap between powerful Linux-based seismic processing and the Windows environment.

InSeis is part of a collection of open source tools to digitize and enhance vintage seismic sections. See https://a-pertuz.github.io/REVSEIS/ for more information.

<details open>
<summary><h2>đź“– Table of Contents</h2></summary>

- [Features](#features)
- [System Requirements](#system-requirements)
- [Installation](#installation)
- [Quick Start](#quick-start)
- [Complete Tutorial](#complete-tutorial)
- [Troubleshooting](#troubleshooting)
- [FAQ](#faq)
- [Citation](#citation)
- [License](#license)

</details>

<details open>
<summary><h2>✨ Features</h2></summary>

- **User-Friendly Interface**: Easily create, edit, and run Seismic Unix workflows through an intuitive GUI
- **Workflow Management**: Save, load, and manage your processing workflows with full parameter preservation
- **Process Library**: Extensive library of pre-configured Seismic Unix processes organized by category
- **Visualization**: View seismic data directly in the application with built-in plotting capabilities
- **Windows Integration**: Use Seismic Unix on Windows through WSL without command-line complexity
- **Format Conversion**: Convert between SU and SEG-Y formats seamlessly
- **Real-time Monitoring**: Track workflow execution with detailed logging and progress indicators

</details>

<details>
<summary><h2>đź’» System Requirements</h2></summary>

- **Operating System**: Windows 10/11 with WSL installed
- **Memory**: At least 8GB RAM recommended
- **Python**: 3.12 or higher
- **Dependencies**: Seismic Unix installed in WSL
- **Disk Space**: Sufficient space for seismic data processing and temporary files

</details>

<details>
<summary><h2>⚙️ Installation</h2></summary>

InSeis requires Windows Subsystem for Linux (WSL) to run. This allows you to use Linux tools directly on Windows.

### Install WSL

1. Open Command Prompt **as Administrator** (right-click, select "Run as administrator")
2. Run the following command: `wsl --install`
3. Wait for the installation to complete
4. Restart your computer when prompted
5. After restart, search for "Ubuntu" in the Start menu and launch it
6. Follow the prompts to set up your new Linux environment. You may be asked to create a user account and password
7. Run `sudo apt update` to ensure all packages are up to date

**Note:** If you encounter any issues, please refer to the official WSL installation guide: https://learn.microsoft.com/windows/wsl/install

### Install Seismic Unix

1. Open the Ubuntu terminal (search for "Ubuntu" in Windows Start menu)
2. Copy and paste this entire command:
3. `bash -c "$(wget -qO- https://gist.githubusercontent.com/a-pertuz/2b341bc8af2a37cde820d829f2789d99/raw/install_seismic_unix.sh)"`
4. Press Enter and wait for the installation to complete. It may take several minutes

**Important:** Read and **accept** the Seismic Unix license agreement when prompted.

### Install InSeis

```bash
pip install inseis
```

</details>

<details>
<summary><h2>🚀 Quick Start</h2></summary>

1. **Launch InSeis**: Open the application from your Start menu or run `inseis` in Command Prompt
2. **Create a new workflow**: The main interface displays available processes on the left and your current workflow on the right
3. **Load data**: Add a data loading process to your workflow (e.g., "SEGYREAD")
4. **Add processing steps**: Select and configure processing operations from the available processes list
5. **Run your workflow**: Click "Run Workflow" to execute all steps in sequence
6. **View results**: Results will be displayed automatically upon completion

**Important note**: Seismic Unix uses **SU** files as its native format. If you need **SEGY** files for external applications, use the **"Convert SU to SEGY"** utility in the menu bar after processing.

</details>

<details>
<summary><h2>📚 Complete Tutorial</h2></summary>

### Interface Overview

![InSeis GUI](images/is_gui_workflow.png)

The main application window consists of:

- **Process Library Panel (Left)**: Contains all available Seismic Unix processes organized by category
- **Workflow Canvas (Center)**: Where you build and configure your processing workflow
- **Parameters Panel (Right)**: Shows parameters for the currently selected process
- **Log Window (Bottom)**: Displays output and error messages from workflow execution
- **Results Viewer (Tab)**: Visualizes processing results

### Creating Workflows

#### Basic Workflow Structure

1. **Input**: Data loading processes (e.g., "Load SU File", "SEGYREAD")
2. **Processing**: Processing operations (filtering, deconvolution, migration, etc.)
3. **Output**: Results are saved as SU files and displayed within the application

#### Saving and Loading Workflows

**To save your workflow:**
1. Click **"Workflows"** > **"Save Workflow..."**
2. Enter a name and description

**To load a workflow:**
1. Click **"Workflows"** > **"Load Workflow..."**
2. Select from your saved workflows

#### Workflow Example: Post-stack Migration and SNR Enhancement

![Workflow Results](images/is_workflow_steps.png)

1. **Add SEGYREAD**: Set input file path
   ```
   tape=<input_file.segy>
   ```

2. **Add SEGYCLEAN**: Clean unused headers in the SU file

3. **Add SUAGC**: Automatic gain control
   ```
   panel=1, agc=1, wagc=0.75
   ```

4. **Add SUMIX**: Compute weighted moving average - trace mix
   ```
   mix=.6,1,1,1,.6
   ```

5. **Add SUKTMIG2D**: Kirchhoff post-stack time migration
   ```
   vfile=<velocity_model.bin>, hoffset=0, dx=25
   ```
   *Requires a velocity model in binary format (see [VelRecover](https://a-pertuz.github.io/REVSEIS/))**

6. **Add SUPEF**: Spike deconvolution for improved vertical resolution
   ```
   minlag=0.004, maxlag=0.12, pnoise=0.01
   ```

7. **Add SUFXDECON**: Random noise attenuation
   ```
   fmin=12, fmax=60, twlen=0.3, ntrw=30, ntrf=4
   ```

8. **Add SUTVBAND**: Time-variant bandpass filtering
   ```
   tf=0,1.5,2.5 f=10,12,55,60 f=14,16,50,55 f=14,16,45,50
   ```

</details>

<details>
<summary><h2>đź”§ Troubleshooting</h2></summary>

### WSL Connection Issues

- **Ensure WSL is installed**: Open PowerShell and type `wsl --list`. If no distributions are listed, install one using `wsl --install`
- **Verify WSL is running**: Open PowerShell and type `wsl --list --running`
- **Restart WSL service**: `wsl --shutdown` and then launch WSL again
- **Check network settings** if you're accessing remote data

### Seismic Unix Not Found

- **Check your CWPROOT path** in the Configuration menu
- **Verify Seismic Unix installation**: Run `suplane | suximage` in WSL
- **Check environment variable**: `echo $CWPROOT` should show the SU installation path
- **Reinstall if needed** using the installation script

### Input/Output File Issues

- Check file permissions
- Ensure paths don't contain special characters
- Use forward slashes in file paths
- Verify file formats are supported

### Command Failures

- Check the log window for specific error messages
- Verify all required parameters are set
- Ensure input files exist and are accessible
- Check that all processes in the workflow are properly connected

</details>

<details>
<summary><h2>âť“ FAQ</h2></summary>

### Is InSeis compatible with all versions of Seismic Unix?

InSeis works with Seismic Unix versions 43 and newer. The installer script automatically installs the latest compatible version. If you have an existing installation of Seismic Unix, InSeis will attempt to use it if the path is correctly set in your `.bashrc` file.

### How do I integrate results from SEGYRecover and VELRecover?

To use data from other REV-SEIS tools:
- SEGY files from SEGYRecover can be directly loaded using the "SEGYREAD" process
- Velocity models from VELRecover should be exported in binary format and can be loaded using the "Load Velocity Model" where necessary, for example during migration
- Use the workspace data directory structure to keep your project organized

### Does InSeis work on macOS or Linux?

InSeis is designed specifically for Windows with WSL. On macOS or Linux, you can install Seismic Unix directly and use its native command-line interface or GUI alternatives like OpenSeaSeis or BotoSeis.

### What is the difference between SU files and SEG-Y files?

SU (Seismic Unix) files and SEG-Y files are both formats for storing seismic data, but with key differences:
- **SU files** are the native format for Seismic Unix, with a simpler header structure and no EBCDIC header
- **SEG-Y files** are the industry standard with more extensive headers, including text headers with acquisition information
- InSeis can convert between these formats using the "SEGYREAD" and "SEGYWRITE" processes

### Can I run batch processing?

Currently, InSeis processes one workflow at a time. However, you can save workflows and reuse them with different datasets. For batch processing, consider using saved workflows with different input parameters.

</details>

<details>
<summary><h2>đź“„ Citation</h2></summary>

If you use this software in your research, please cite it as:

```
Pertuz, A., Benito, M. I., Llanes, P., Suárez-González, P., & García-Martín, M. (2025c). InSeis: A Python GUI-based application that brings Seismic Unix routines to Windows using the Linux subsystem. Zenodo. https://doi.org/10.5281/zenodo.15053545
```

Find this software in the Zenodo Archive: [https://doi.org/10.5281/zenodo.15053545](https://doi.org/10.5281/zenodo.15053545)

</details>

<details>
<summary><h2>⚖️ License</h2></summary>

This software is licensed under the GNU General Public License v3.0 (GPL-3.0).

You may copy, distribute and modify the software as long as you track changes/dates in source files. 
Any modifications to or software including (via compiler) GPL-licensed code must also be made available 
under the GPL along with build & installation instructions.

For the full license text, see [LICENSE](LICENSE) or visit https://www.gnu.org/licenses/gpl-3.0.en.html

</details>

---

*For questions, support, or feature requests, please contact Alejandro Pertuz at apertuz@ucm.es*

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "inseis",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.9",
    "maintainer_email": null,
    "keywords": "seismic, processing, segy, geophysics, seismic unix",
    "author": null,
    "author_email": "Alejandro Pertuz <apertuz@ucm.es>",
    "download_url": "https://files.pythonhosted.org/packages/b7/56/762a8bb7f9134d42661f7f462e9b5e8dad15904434487c3e2339303e6276/inseis-1.1.0.tar.gz",
    "platform": null,
    "description": "# InSeis\r\n\r\n[![DOI](https://zenodo.org/badge/DOI/zenodo.15053545.svg)](https://doi.org/10.5281/zenodo.15053545)\r\n[![PyPI](https://img.shields.io/pypi/v/segyrecover)](https://pypi.org/project/inseis/)\r\n[![Last Commit](https://img.shields.io/github/last-commit/a-pertuz/inseis)](https://github.com/a-pertuz/inseis/commits/main)\r\n[![License: GPL v3](https://img.shields.io/badge/License-GPLv3-green.svg)](https://www.gnu.org/licenses/gpl-3.0.en.html)\r\n[![Python Version](https://img.shields.io/badge/Python-3.12+-yellow)](https://www.python.org/downloads/)\r\n\r\nA GUI-based application designed in Python for creating and running Seismic Unix workflows on Windows through the Windows Subsystem for Linux (WSL). InSeis bridges the gap between powerful Linux-based seismic processing and the Windows environment.\r\n\r\nInSeis is part of a collection of open source tools to digitize and enhance vintage seismic sections. See https://a-pertuz.github.io/REVSEIS/ for more information.\r\n\r\n<details open>\r\n<summary><h2>\ud83d\udcd6 Table of Contents</h2></summary>\r\n\r\n- [Features](#features)\r\n- [System Requirements](#system-requirements)\r\n- [Installation](#installation)\r\n- [Quick Start](#quick-start)\r\n- [Complete Tutorial](#complete-tutorial)\r\n- [Troubleshooting](#troubleshooting)\r\n- [FAQ](#faq)\r\n- [Citation](#citation)\r\n- [License](#license)\r\n\r\n</details>\r\n\r\n<details open>\r\n<summary><h2>\u2728 Features</h2></summary>\r\n\r\n- **User-Friendly Interface**: Easily create, edit, and run Seismic Unix workflows through an intuitive GUI\r\n- **Workflow Management**: Save, load, and manage your processing workflows with full parameter preservation\r\n- **Process Library**: Extensive library of pre-configured Seismic Unix processes organized by category\r\n- **Visualization**: View seismic data directly in the application with built-in plotting capabilities\r\n- **Windows Integration**: Use Seismic Unix on Windows through WSL without command-line complexity\r\n- **Format Conversion**: Convert between SU and SEG-Y formats seamlessly\r\n- **Real-time Monitoring**: Track workflow execution with detailed logging and progress indicators\r\n\r\n</details>\r\n\r\n<details>\r\n<summary><h2>\ud83d\udcbb System Requirements</h2></summary>\r\n\r\n- **Operating System**: Windows 10/11 with WSL installed\r\n- **Memory**: At least 8GB RAM recommended\r\n- **Python**: 3.12 or higher\r\n- **Dependencies**: Seismic Unix installed in WSL\r\n- **Disk Space**: Sufficient space for seismic data processing and temporary files\r\n\r\n</details>\r\n\r\n<details>\r\n<summary><h2>\u2699\ufe0f Installation</h2></summary>\r\n\r\nInSeis requires Windows Subsystem for Linux (WSL) to run. This allows you to use Linux tools directly on Windows.\r\n\r\n### Install WSL\r\n\r\n1. Open Command Prompt **as Administrator** (right-click, select \"Run as administrator\")\r\n2. Run the following command: `wsl --install`\r\n3. Wait for the installation to complete\r\n4. Restart your computer when prompted\r\n5. After restart, search for \"Ubuntu\" in the Start menu and launch it\r\n6. Follow the prompts to set up your new Linux environment. You may be asked to create a user account and password\r\n7. Run `sudo apt update` to ensure all packages are up to date\r\n\r\n**Note:** If you encounter any issues, please refer to the official WSL installation guide: https://learn.microsoft.com/windows/wsl/install\r\n\r\n### Install Seismic Unix\r\n\r\n1. Open the Ubuntu terminal (search for \"Ubuntu\" in Windows Start menu)\r\n2. Copy and paste this entire command:\r\n3. `bash -c \"$(wget -qO- https://gist.githubusercontent.com/a-pertuz/2b341bc8af2a37cde820d829f2789d99/raw/install_seismic_unix.sh)\"`\r\n4. Press Enter and wait for the installation to complete. It may take several minutes\r\n\r\n**Important:** Read and **accept** the Seismic Unix license agreement when prompted.\r\n\r\n### Install InSeis\r\n\r\n```bash\r\npip install inseis\r\n```\r\n\r\n</details>\r\n\r\n<details>\r\n<summary><h2>\ud83d\ude80 Quick Start</h2></summary>\r\n\r\n1. **Launch InSeis**: Open the application from your Start menu or run `inseis` in Command Prompt\r\n2. **Create a new workflow**: The main interface displays available processes on the left and your current workflow on the right\r\n3. **Load data**: Add a data loading process to your workflow (e.g., \"SEGYREAD\")\r\n4. **Add processing steps**: Select and configure processing operations from the available processes list\r\n5. **Run your workflow**: Click \"Run Workflow\" to execute all steps in sequence\r\n6. **View results**: Results will be displayed automatically upon completion\r\n\r\n**Important note**: Seismic Unix uses **SU** files as its native format. If you need **SEGY** files for external applications, use the **\"Convert SU to SEGY\"** utility in the menu bar after processing.\r\n\r\n</details>\r\n\r\n<details>\r\n<summary><h2>\ud83d\udcda Complete Tutorial</h2></summary>\r\n\r\n### Interface Overview\r\n\r\n![InSeis GUI](images/is_gui_workflow.png)\r\n\r\nThe main application window consists of:\r\n\r\n- **Process Library Panel (Left)**: Contains all available Seismic Unix processes organized by category\r\n- **Workflow Canvas (Center)**: Where you build and configure your processing workflow\r\n- **Parameters Panel (Right)**: Shows parameters for the currently selected process\r\n- **Log Window (Bottom)**: Displays output and error messages from workflow execution\r\n- **Results Viewer (Tab)**: Visualizes processing results\r\n\r\n### Creating Workflows\r\n\r\n#### Basic Workflow Structure\r\n\r\n1. **Input**: Data loading processes (e.g., \"Load SU File\", \"SEGYREAD\")\r\n2. **Processing**: Processing operations (filtering, deconvolution, migration, etc.)\r\n3. **Output**: Results are saved as SU files and displayed within the application\r\n\r\n#### Saving and Loading Workflows\r\n\r\n**To save your workflow:**\r\n1. Click **\"Workflows\"** > **\"Save Workflow...\"**\r\n2. Enter a name and description\r\n\r\n**To load a workflow:**\r\n1. Click **\"Workflows\"** > **\"Load Workflow...\"**\r\n2. Select from your saved workflows\r\n\r\n#### Workflow Example: Post-stack Migration and SNR Enhancement\r\n\r\n![Workflow Results](images/is_workflow_steps.png)\r\n\r\n1. **Add SEGYREAD**: Set input file path\r\n   ```\r\n   tape=<input_file.segy>\r\n   ```\r\n\r\n2. **Add SEGYCLEAN**: Clean unused headers in the SU file\r\n\r\n3. **Add SUAGC**: Automatic gain control\r\n   ```\r\n   panel=1, agc=1, wagc=0.75\r\n   ```\r\n\r\n4. **Add SUMIX**: Compute weighted moving average - trace mix\r\n   ```\r\n   mix=.6,1,1,1,.6\r\n   ```\r\n\r\n5. **Add SUKTMIG2D**: Kirchhoff post-stack time migration\r\n   ```\r\n   vfile=<velocity_model.bin>, hoffset=0, dx=25\r\n   ```\r\n   *Requires a velocity model in binary format (see [VelRecover](https://a-pertuz.github.io/REVSEIS/))**\r\n\r\n6. **Add SUPEF**: Spike deconvolution for improved vertical resolution\r\n   ```\r\n   minlag=0.004, maxlag=0.12, pnoise=0.01\r\n   ```\r\n\r\n7. **Add SUFXDECON**: Random noise attenuation\r\n   ```\r\n   fmin=12, fmax=60, twlen=0.3, ntrw=30, ntrf=4\r\n   ```\r\n\r\n8. **Add SUTVBAND**: Time-variant bandpass filtering\r\n   ```\r\n   tf=0,1.5,2.5 f=10,12,55,60 f=14,16,50,55 f=14,16,45,50\r\n   ```\r\n\r\n</details>\r\n\r\n<details>\r\n<summary><h2>\ud83d\udd27 Troubleshooting</h2></summary>\r\n\r\n### WSL Connection Issues\r\n\r\n- **Ensure WSL is installed**: Open PowerShell and type `wsl --list`. If no distributions are listed, install one using `wsl --install`\r\n- **Verify WSL is running**: Open PowerShell and type `wsl --list --running`\r\n- **Restart WSL service**: `wsl --shutdown` and then launch WSL again\r\n- **Check network settings** if you're accessing remote data\r\n\r\n### Seismic Unix Not Found\r\n\r\n- **Check your CWPROOT path** in the Configuration menu\r\n- **Verify Seismic Unix installation**: Run `suplane | suximage` in WSL\r\n- **Check environment variable**: `echo $CWPROOT` should show the SU installation path\r\n- **Reinstall if needed** using the installation script\r\n\r\n### Input/Output File Issues\r\n\r\n- Check file permissions\r\n- Ensure paths don't contain special characters\r\n- Use forward slashes in file paths\r\n- Verify file formats are supported\r\n\r\n### Command Failures\r\n\r\n- Check the log window for specific error messages\r\n- Verify all required parameters are set\r\n- Ensure input files exist and are accessible\r\n- Check that all processes in the workflow are properly connected\r\n\r\n</details>\r\n\r\n<details>\r\n<summary><h2>\u2753 FAQ</h2></summary>\r\n\r\n### Is InSeis compatible with all versions of Seismic Unix?\r\n\r\nInSeis works with Seismic Unix versions 43 and newer. The installer script automatically installs the latest compatible version. If you have an existing installation of Seismic Unix, InSeis will attempt to use it if the path is correctly set in your `.bashrc` file.\r\n\r\n### How do I integrate results from SEGYRecover and VELRecover?\r\n\r\nTo use data from other REV-SEIS tools:\r\n- SEGY files from SEGYRecover can be directly loaded using the \"SEGYREAD\" process\r\n- Velocity models from VELRecover should be exported in binary format and can be loaded using the \"Load Velocity Model\" where necessary, for example during migration\r\n- Use the workspace data directory structure to keep your project organized\r\n\r\n### Does InSeis work on macOS or Linux?\r\n\r\nInSeis is designed specifically for Windows with WSL. On macOS or Linux, you can install Seismic Unix directly and use its native command-line interface or GUI alternatives like OpenSeaSeis or BotoSeis.\r\n\r\n### What is the difference between SU files and SEG-Y files?\r\n\r\nSU (Seismic Unix) files and SEG-Y files are both formats for storing seismic data, but with key differences:\r\n- **SU files** are the native format for Seismic Unix, with a simpler header structure and no EBCDIC header\r\n- **SEG-Y files** are the industry standard with more extensive headers, including text headers with acquisition information\r\n- InSeis can convert between these formats using the \"SEGYREAD\" and \"SEGYWRITE\" processes\r\n\r\n### Can I run batch processing?\r\n\r\nCurrently, InSeis processes one workflow at a time. However, you can save workflows and reuse them with different datasets. For batch processing, consider using saved workflows with different input parameters.\r\n\r\n</details>\r\n\r\n<details>\r\n<summary><h2>\ud83d\udcc4 Citation</h2></summary>\r\n\r\nIf you use this software in your research, please cite it as:\r\n\r\n```\r\nPertuz, A., Benito, M. I., Llanes, P., Su\u00e1rez-Gonz\u00e1lez, P., & Garc\u00eda-Mart\u00edn, M. (2025c). InSeis: A Python GUI-based application that brings Seismic Unix routines to Windows using the Linux subsystem. Zenodo. https://doi.org/10.5281/zenodo.15053545\r\n```\r\n\r\nFind this software in the Zenodo Archive: [https://doi.org/10.5281/zenodo.15053545](https://doi.org/10.5281/zenodo.15053545)\r\n\r\n</details>\r\n\r\n<details>\r\n<summary><h2>\u2696\ufe0f License</h2></summary>\r\n\r\nThis software is licensed under the GNU General Public License v3.0 (GPL-3.0).\r\n\r\nYou may copy, distribute and modify the software as long as you track changes/dates in source files. \r\nAny modifications to or software including (via compiler) GPL-licensed code must also be made available \r\nunder the GPL along with build & installation instructions.\r\n\r\nFor the full license text, see [LICENSE](LICENSE) or visit https://www.gnu.org/licenses/gpl-3.0.en.html\r\n\r\n</details>\r\n\r\n---\r\n\r\n*For questions, support, or feature requests, please contact Alejandro Pertuz at apertuz@ucm.es*\r\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "A GUI-based application for creating and running Seismic Unix workflows on Windows using the Linux subsystem",
    "version": "1.1.0",
    "project_urls": {
        "DOI": "https://doi.org/10.5281/zenodo.15053545",
        "Documentation": "https://a-pertuz.github.io/REVSEIS/index.html",
        "Source Code": "https://github.com/a-pertuz/InSeis"
    },
    "split_keywords": [
        "seismic",
        " processing",
        " segy",
        " geophysics",
        " seismic unix"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5e74f798ccd0f90c59ada55d5c1de609cee94f45abaec3204f4282947269d061",
                "md5": "e8b8f342d0e593841fe8c24fab1946f2",
                "sha256": "9723fc53c80f3196ded5b3b566b8e5da7aea17520aca298178a9056ac42f8737"
            },
            "downloads": -1,
            "filename": "inseis-1.1.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "e8b8f342d0e593841fe8c24fab1946f2",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.9",
            "size": 80020,
            "upload_time": "2025-07-18T15:22:50",
            "upload_time_iso_8601": "2025-07-18T15:22:50.335601Z",
            "url": "https://files.pythonhosted.org/packages/5e/74/f798ccd0f90c59ada55d5c1de609cee94f45abaec3204f4282947269d061/inseis-1.1.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b756762a8bb7f9134d42661f7f462e9b5e8dad15904434487c3e2339303e6276",
                "md5": "18449d5be00de9309efc9302a1f3dd99",
                "sha256": "5adab29b888e0764c60bbc0dfb04821ca09de8231090b78988c2f8fdfaa6f4e2"
            },
            "downloads": -1,
            "filename": "inseis-1.1.0.tar.gz",
            "has_sig": false,
            "md5_digest": "18449d5be00de9309efc9302a1f3dd99",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.9",
            "size": 69032,
            "upload_time": "2025-07-18T15:22:51",
            "upload_time_iso_8601": "2025-07-18T15:22:51.424729Z",
            "url": "https://files.pythonhosted.org/packages/b7/56/762a8bb7f9134d42661f7f462e9b5e8dad15904434487c3e2339303e6276/inseis-1.1.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-07-18 15:22:51",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "a-pertuz",
    "github_project": "InSeis",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "inseis"
}
        
Elapsed time: 0.82332s