Skip to main content

High-performance Rust library and Python extension for reading LAMMPS log files

Project description

Log LAMMPS Reader

Log LAMMPS Reader is a high-performance Rust library and Python extension for reading LAMMPS log files and converting them into DataFrames using the Polars library. This project leverages PyO3 to create a Python module that interfaces with Rust code, ensuring both speed and efficiency.

This package returns a polars DataFrame allowing the user to use powerful data manipulations (e.g filters) provided through polars. The user can specify which specific thermo output given by run or mimimize that is required.

It also has the ability to get the lines in the log file that start with a certain string prefix, like fix or print extremely quickly using rust backend. This can be parsed using python to get information about the parameters set for the simulation.

Features

  • High-speed reading of LAMMPS log files
  • Converts log data into Polars DataFrames
  • Easily convert DataFrame into other formats like json, csv, parquet etc using polars
  • Gets thermo data for multiple thermo runs
  • Better data parsing, skips rows if they are invalid (e.g missing newline, non-numeric characters in the log)
  • Only stores the needed thermo run data specified by user
  • Also able to get lines in the log file which starts with a certain string prefix (e.g 'fix ...')

Installation

Using pip:

pip install log-lammps-reader

Alternatively look at build instructions to build the project.

Usage Examples

  • Note the run_number = 0 gives the first data output which might include the minimization run.
  • To exclude minimization data, start with run_number = 1.
import log_lammps_reader

thermo_number = 0 # Choose the nth number of thermo run
df = log_lammps_reader.new('log.lammps') # polars DataFrame for 1st thermo run
# usually the minimization run

# Or choose the nth number of thermo run (default n = 0)
# n = 0 might consider the MPI minimization data, so in most cases
# start with n = 1
df = log_lammps_reader.new('log.lammps', n) 
time = df.get_column('Time') # Get any thermo column
time_squared = time ** 2 # use broadcasting operations similar to numpy

# Use polars to filter the results.
import polars as pl
equilibrated_df = df.filter(pl.col('Time') > 1) 

# Convert data to numpy if needed
import numpy as np
step = np.array(df.get_column('Step'))

# Get lines in the log that start with a prefix string
fixes_list = log_lammps_reader.log_starts_with('log.lammps', 'fix')

Example of a DataFrame for a LAMMPS log file.

>>> import log_lammps_reader
>>> df = log_lammps_reader.new('log.lammps', 1)
>>> df
shape: (10_000_002, 10)
┌──────────────┬───────────┬───────────┬───────────┬───┬───────┬────────────┬───────────┬───────────┐
 Step          Time       Temp       Press        Atoms  PotEng      KinEng     TotEng    
 ---           ---        ---        ---           ---    ---         ---        ---       
 f64           f64        f64        f64           f64    f64         f64        f64       
╞══════════════╪═══════════╪═══════════╪═══════════╪═══╪═══════╪════════════╪═══════════╪═══════════╡
 61.0          0.0        298.0      57.20028     519.0  -14.776112  19.953113  5.1770012 
 70.0          0.009      296.73074  60.840723    519.0  -14.721924  19.868128  5.1462039 
 80.0          0.019      292.56952  72.565657    519.0  -14.530972  19.589506  5.0585341 
 90.0          0.029      285.36347  92.936408    519.0  -14.18668   19.107012  4.9203316 
 100.0         0.039      275.29149  121.91127    519.0  -13.681587  18.432625  4.7510379 
                                                                                  
 1.0000003e8   99999.969  301.90216  225.03035    519.0  -11.279288  20.214389  8.9351011 
 1.0000004e8   99999.979  301.99266  220.86566    519.0  -11.33326   20.220449  8.8871881 
 1.0000005e8   99999.989  302.04158  215.55467    519.0  -11.406581  20.223724  8.8171428 
 1.0000006e8   99999.999  301.61379  210.565      519.0  -11.471215  20.195081  8.723866  
 1.00000061e8  100000.0   301.52726  210.15164    519.0  -11.475823  20.189287  8.7134637 
└──────────────┴───────────┴───────────┴───────────┴───┴───────┴────────────┴───────────┴───────────┘
>>> df.get_column('Time')
shape: (10_000_002,)
Series: 'Time' [f64]
[
        0.0
        0.009
        0.019
        0.029
        0.039
        
        99999.969
        99999.979
        99999.989
        99999.999
        100000.0
]
>>> df.get_column('Time').mean()
50000.00399999919
>>> df.get_column('Time').std()
28867.520676357886
# Example of getting the lines that start with a certain prefix in the log file
# Returns a list of strings.
>>> log_lammps_reader.log_starts_with('log.lammps', 'fix')
['fix WALL methane wall/region/tjatjopoulos pore 0.005547314165349033 3.565 0.4824 ${radius}',
 'fix WALL methane wall/region/tjatjopoulos pore 0.005547314165349033 3.565 0.4824 30',
 'fix NVT all nvt temp ${temp_sim} ${temp_sim} $(100.0*dt)',
 'fix NVT all nvt temp 298 ${temp_sim} $(100.0*dt)',
 'fix NVT all nvt temp 298 298 $(100.0*dt)',
 'fix NVT all nvt temp 298 298 0.10000000000000000555']

Rust API

Clone the repo and add it to your project

use log_lammps_reader::LogLammpsReader;

fn main() {
    let log_file_name = "log.lammps";
    // skipping minimization
    let run_number = Some(1);


    match LogLammpsReader::new(log_file_name.into(), run_number) {
        Ok(df) => println!("DataFrame read successfully: {:?}", df),
        Err(e) => eprintln!("Error reading DataFrame: {}", e),
    }
}

Build From Source

Alternatively, to build the Python module, follow these steps:

Requirements

  • Rust (latest stable version recommended)
  • Python 3.8 or later
  • Cargo (Rust package manager)
  1. Ensure you have maturin installed:

    pip install maturin # or use conda or micromamba
    
  2. Clone the repository

    git clone https://github.com/GeordyJ/log_lammps_reader.git && cd log_lammps_reader
    
  3. Compile the Rust packages and install the python module.

    maturin develop --release
    

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

log_lammps_reader-0.2.5.tar.gz (20.1 kB view details)

Uploaded Source

Built Distributions

log_lammps_reader-0.2.5-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (3.8 MB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

log_lammps_reader-0.2.5-pp310-pypy310_pp73-musllinux_1_2_i686.whl (3.9 MB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

log_lammps_reader-0.2.5-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (3.9 MB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

log_lammps_reader-0.2.5-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (3.6 MB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

log_lammps_reader-0.2.5-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (3.8 MB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

log_lammps_reader-0.2.5-pp39-pypy39_pp73-musllinux_1_2_i686.whl (3.9 MB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

log_lammps_reader-0.2.5-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (3.9 MB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

log_lammps_reader-0.2.5-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (3.6 MB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

log_lammps_reader-0.2.5-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl (3.8 MB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

log_lammps_reader-0.2.5-pp38-pypy38_pp73-musllinux_1_2_i686.whl (3.9 MB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

log_lammps_reader-0.2.5-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl (3.9 MB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

log_lammps_reader-0.2.5-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl (3.6 MB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

log_lammps_reader-0.2.5-cp312-none-win_amd64.whl (3.1 MB view details)

Uploaded CPython 3.12 Windows x86-64

log_lammps_reader-0.2.5-cp312-none-win32.whl (2.8 MB view details)

Uploaded CPython 3.12 Windows x86

log_lammps_reader-0.2.5-cp312-cp312-musllinux_1_2_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

log_lammps_reader-0.2.5-cp312-cp312-musllinux_1_2_i686.whl (3.9 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

log_lammps_reader-0.2.5-cp312-cp312-musllinux_1_2_armv7l.whl (3.9 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARMv7l

log_lammps_reader-0.2.5-cp312-cp312-musllinux_1_2_aarch64.whl (3.6 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

log_lammps_reader-0.2.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

log_lammps_reader-0.2.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.9 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

log_lammps_reader-0.2.5-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (3.9 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686

log_lammps_reader-0.2.5-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.6 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

log_lammps_reader-0.2.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.5 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

log_lammps_reader-0.2.5-cp312-cp312-macosx_11_0_arm64.whl (3.1 MB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

log_lammps_reader-0.2.5-cp312-cp312-macosx_10_12_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

log_lammps_reader-0.2.5-cp311-none-win_amd64.whl (3.1 MB view details)

Uploaded CPython 3.11 Windows x86-64

log_lammps_reader-0.2.5-cp311-none-win32.whl (2.8 MB view details)

Uploaded CPython 3.11 Windows x86

log_lammps_reader-0.2.5-cp311-cp311-musllinux_1_2_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

log_lammps_reader-0.2.5-cp311-cp311-musllinux_1_2_i686.whl (3.9 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

log_lammps_reader-0.2.5-cp311-cp311-musllinux_1_2_armv7l.whl (3.9 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARMv7l

log_lammps_reader-0.2.5-cp311-cp311-musllinux_1_2_aarch64.whl (3.6 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

log_lammps_reader-0.2.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

log_lammps_reader-0.2.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.9 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

log_lammps_reader-0.2.5-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (3.9 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

log_lammps_reader-0.2.5-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.6 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

log_lammps_reader-0.2.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.5 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

log_lammps_reader-0.2.5-cp311-cp311-macosx_11_0_arm64.whl (3.1 MB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

log_lammps_reader-0.2.5-cp311-cp311-macosx_10_12_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

log_lammps_reader-0.2.5-cp310-none-win_amd64.whl (3.1 MB view details)

Uploaded CPython 3.10 Windows x86-64

log_lammps_reader-0.2.5-cp310-none-win32.whl (2.8 MB view details)

Uploaded CPython 3.10 Windows x86

log_lammps_reader-0.2.5-cp310-cp310-musllinux_1_2_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

log_lammps_reader-0.2.5-cp310-cp310-musllinux_1_2_i686.whl (3.9 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

log_lammps_reader-0.2.5-cp310-cp310-musllinux_1_2_armv7l.whl (3.9 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARMv7l

log_lammps_reader-0.2.5-cp310-cp310-musllinux_1_2_aarch64.whl (3.6 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

log_lammps_reader-0.2.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

log_lammps_reader-0.2.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.9 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

log_lammps_reader-0.2.5-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (3.9 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

log_lammps_reader-0.2.5-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.6 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

log_lammps_reader-0.2.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.5 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

log_lammps_reader-0.2.5-cp310-cp310-macosx_11_0_arm64.whl (3.1 MB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

log_lammps_reader-0.2.5-cp39-none-win_amd64.whl (3.1 MB view details)

Uploaded CPython 3.9 Windows x86-64

log_lammps_reader-0.2.5-cp39-none-win32.whl (2.8 MB view details)

Uploaded CPython 3.9 Windows x86

log_lammps_reader-0.2.5-cp39-cp39-musllinux_1_2_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

log_lammps_reader-0.2.5-cp39-cp39-musllinux_1_2_i686.whl (3.9 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

log_lammps_reader-0.2.5-cp39-cp39-musllinux_1_2_armv7l.whl (3.9 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARMv7l

log_lammps_reader-0.2.5-cp39-cp39-musllinux_1_2_aarch64.whl (3.6 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

log_lammps_reader-0.2.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

log_lammps_reader-0.2.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.9 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

log_lammps_reader-0.2.5-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (3.9 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

log_lammps_reader-0.2.5-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.6 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

log_lammps_reader-0.2.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.5 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

log_lammps_reader-0.2.5-cp39-cp39-macosx_11_0_arm64.whl (3.1 MB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

log_lammps_reader-0.2.5-cp38-none-win_amd64.whl (3.1 MB view details)

Uploaded CPython 3.8 Windows x86-64

log_lammps_reader-0.2.5-cp38-none-win32.whl (2.8 MB view details)

Uploaded CPython 3.8 Windows x86

log_lammps_reader-0.2.5-cp38-cp38-musllinux_1_2_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

log_lammps_reader-0.2.5-cp38-cp38-musllinux_1_2_i686.whl (3.9 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

log_lammps_reader-0.2.5-cp38-cp38-musllinux_1_2_armv7l.whl (3.9 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARMv7l

log_lammps_reader-0.2.5-cp38-cp38-musllinux_1_2_aarch64.whl (3.6 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

log_lammps_reader-0.2.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

log_lammps_reader-0.2.5-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.9 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

log_lammps_reader-0.2.5-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (3.9 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

log_lammps_reader-0.2.5-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.6 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

log_lammps_reader-0.2.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.5 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

File details

Details for the file log_lammps_reader-0.2.5.tar.gz.

File metadata

  • Download URL: log_lammps_reader-0.2.5.tar.gz
  • Upload date:
  • Size: 20.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.7.1

File hashes

Hashes for log_lammps_reader-0.2.5.tar.gz
Algorithm Hash digest
SHA256 d224a8d41cf70a830c93798c0c93ffa8735bacd454a482544019bd4bd798df53
MD5 d3a884bdd895e7cb01f8afabd055fa62
BLAKE2b-256 1cddf97b02b22620a857901224453832281222edb9c08e5162d659fa3b193cfe

See more details on using hashes here.

File details

Details for the file log_lammps_reader-0.2.5-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for log_lammps_reader-0.2.5-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2901ba6d4b8135c9b323d7127ecd0550df929ff8f8769c36868d757eaa0cbc81
MD5 bb1ca16df51c6a84fab3a36edb914aca
BLAKE2b-256 8acff1b27d3e8301b133fbad4941dbb53847a2f812bff8dbb2fb43c3e8f11207

See more details on using hashes here.

File details

Details for the file log_lammps_reader-0.2.5-pp310-pypy310_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for log_lammps_reader-0.2.5-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6e8adb5386fe41fd5d27537bd4c28af54117a64df7ec981fb67ccdca1db21211
MD5 44657785b8bb27030b3a3982132f8037
BLAKE2b-256 4454cc3de8d62fe0d0ebfac0728c5e0412c4aa2d6fc9dd29e23d77cf36066aa7

See more details on using hashes here.

File details

Details for the file log_lammps_reader-0.2.5-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for log_lammps_reader-0.2.5-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 365f7dcb49e05d2e459cf09050b8bc90f7bc0bf2297736c7b82e3d384a72aac8
MD5 f5f2c962d9c7106de5da37c9b8b6d7e0
BLAKE2b-256 37eb36c20fe87784ef3f6a84a8869b0dd6fd1d274b8f425c7252bdd9d4db0ef8

See more details on using hashes here.

File details

Details for the file log_lammps_reader-0.2.5-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for log_lammps_reader-0.2.5-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d9e070708783785dac67c635a232445aab7d0cab89cac6143bf05a001a77c1f4
MD5 7df38c48a6748df7357f428ac4f4bb63
BLAKE2b-256 24ad82a53ab06a9b574d548f8de6ed1e4a045495e7c26d50b6f15cc8726b900e

See more details on using hashes here.

File details

Details for the file log_lammps_reader-0.2.5-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for log_lammps_reader-0.2.5-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 47b49e6d0ed1404006af3b8d83f3add5dd6f1622ba23bd1ab54e64a9d02775de
MD5 d24bfd8d6a97d409964ee42582bee342
BLAKE2b-256 1667aa1e46b7b1e237fcedbb6c1566a3cdb0c6c9657e079c50481a234b689482

See more details on using hashes here.

File details

Details for the file log_lammps_reader-0.2.5-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for log_lammps_reader-0.2.5-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 69fe213bd90154a68674e4d73d661f581dc854ac18d6f969b6768019d550d87f
MD5 1dcc7884a46ccf6adedda3b8f1b77fdd
BLAKE2b-256 672322aa494882b86e2b7544610633a78d3de665e0d6e76e682f169bf0b6aaf6

See more details on using hashes here.

File details

Details for the file log_lammps_reader-0.2.5-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for log_lammps_reader-0.2.5-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2335ebca65fb24df944f58c5176866438c41322ce589f7b58ef199362b902ad0
MD5 f36e03132c67bdb94ca841e157570772
BLAKE2b-256 8b1baaa2980ccde7fa1d6670917cf7dfaaaae766a08c3189befe55cb1fb119c1

See more details on using hashes here.

File details

Details for the file log_lammps_reader-0.2.5-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for log_lammps_reader-0.2.5-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8eb649c673a14ce8cbd382ad13cb359251f976da26ebcbb1bec69da1ebee0aa5
MD5 5ff537932d527d163d362a5133e64e7f
BLAKE2b-256 9a6633c7edec5118a76b06ee889eb7a288c8172e8956b1565170bfacd32cb886

See more details on using hashes here.

File details

Details for the file log_lammps_reader-0.2.5-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for log_lammps_reader-0.2.5-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 70b0f80e5307aa292fcb54cc78db711009a5fb389432df47cc0c362e3c74b801
MD5 9fb48c6973788c27fceb183b0d18d332
BLAKE2b-256 d9bcd3053121d01fc24b445a9acae90ee03595121866626d055f43413eba0b5e

See more details on using hashes here.

File details

Details for the file log_lammps_reader-0.2.5-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for log_lammps_reader-0.2.5-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d9ba99b1a9268946296251c9a153b5a8ccdb189b01c0dd86319e23c29e834f3d
MD5 962fda9e381a81ac25d3e8b9db8d3e77
BLAKE2b-256 b14bfba7e6527ccd47d060dd897478eb795642eeeb59c6128168d1e60e2ddbc2

See more details on using hashes here.

File details

Details for the file log_lammps_reader-0.2.5-pp39-pypy39_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for log_lammps_reader-0.2.5-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6c3bc1e2f92893b9d0b0446be43340135408c04d4047ed61aea8b76ffa5ff6bf
MD5 ce89c3697b5406cfae9d5291d611a849
BLAKE2b-256 222e98c604d25349f233b108b041d4bc601ec40d7963b108e2884719f0cff310

See more details on using hashes here.

File details

Details for the file log_lammps_reader-0.2.5-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for log_lammps_reader-0.2.5-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a6790210f0d2eff341bbefea286b4b7a29d7871f8abb78a15809cabb4411dffc
MD5 6b467544952203ad066526d086e3ed59
BLAKE2b-256 7d47002ef6c35eb808ce7b84209879437371bd27eec914490574fe91e65a2b13

See more details on using hashes here.

File details

Details for the file log_lammps_reader-0.2.5-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for log_lammps_reader-0.2.5-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 13c8a316007f9ead74aa2fe240b669124dfbe1f2c8115a3c8dbedd82ea6d0e49
MD5 82797745f421a4eb42e984e9475b1ac8
BLAKE2b-256 3a2ffe554b443d1af9e3b699cc99d5a90ed52e6b5f60b4ab4cee37d64a7ad632

See more details on using hashes here.

File details

Details for the file log_lammps_reader-0.2.5-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for log_lammps_reader-0.2.5-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f780689e6a99b421aac949298a569bf14cfaaa71027591e8817f95416edbfcaf
MD5 658baf8e4d18478b0d1f20c38448dcce
BLAKE2b-256 132cda9da406f90281f4ae8d6483801580d035729da994656f446ec2e499c21f

See more details on using hashes here.

File details

Details for the file log_lammps_reader-0.2.5-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for log_lammps_reader-0.2.5-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 721dc2c65dad3ce7e2cdc987eaba8907c21604da086b4587df4bd97a4c57781f
MD5 72bea36814f536d8d4d21e7be07bf2ce
BLAKE2b-256 798b9e007c9838d8294d76401b997f96925adeff90dab83e45723d43b851b38b

See more details on using hashes here.

File details

Details for the file log_lammps_reader-0.2.5-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for log_lammps_reader-0.2.5-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2c707fb44dfe325b5c9960ee2b7e984aeb9ed0e7c147ae02bab336f58b0029ed
MD5 3064a95ad58ec1afdc45a17bc37c0cad
BLAKE2b-256 acf4587960cb83958a6ef9b8c388e297431eb5d4757b1e8ac74e433543cd553d

See more details on using hashes here.

File details

Details for the file log_lammps_reader-0.2.5-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for log_lammps_reader-0.2.5-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d51cc61d1bc3cf2757708e9dfedf661a47b5ce82dbb70b65d2e1f8be03a51276
MD5 c373387919eb1b64a75e4a5e948ebc9e
BLAKE2b-256 cb7bb3348d3cdcec3ade9c8fc5ab2f78c553f67f0798e66d795e617b6a60c454

See more details on using hashes here.

File details

Details for the file log_lammps_reader-0.2.5-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for log_lammps_reader-0.2.5-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d07e28a3e3fd3834257923381ba7250d5f3f4d906c0e9c140d2dbaa3b4b41d26
MD5 f9b95b2b81b231f9c686694916c4ea18
BLAKE2b-256 21436e753dc14d05047efb6c07a0fbeb6a6cca8a2b4fa00f9238f49349e221b9

See more details on using hashes here.

File details

Details for the file log_lammps_reader-0.2.5-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for log_lammps_reader-0.2.5-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5ed964ca7d145196cbbf32eaf3d2486094c54cc8a31f658c28e2b381797f1cde
MD5 f07d86e618fcf61431836bd5dcc9c149
BLAKE2b-256 b499e9326e7de58f3f95437af30f5224eb63518147c7e6234a1bda2bc27eb1ef

See more details on using hashes here.

File details

Details for the file log_lammps_reader-0.2.5-pp38-pypy38_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for log_lammps_reader-0.2.5-pp38-pypy38_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bfe5e883a02bfd4507d1a334cf7efc1c42c578517c24152544121ffefad5866a
MD5 24061bd34c6d797a8b3fac61f9f97343
BLAKE2b-256 93f6983336e5b5fa1bd520b41d558000f74f67c617859f538635ece7d911fd2b

See more details on using hashes here.

File details

Details for the file log_lammps_reader-0.2.5-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for log_lammps_reader-0.2.5-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 667ffb3a22eb6501b6022ec8d48534ace04724efc3e981402be791b8811118ff
MD5 565823e199f83b1e5f516ff690f51937
BLAKE2b-256 f343784422ad73a90f2f906dbc9902da51d2998d73792949fd220974495c3eda

See more details on using hashes here.

File details

Details for the file log_lammps_reader-0.2.5-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for log_lammps_reader-0.2.5-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4f45f778aa325958c2219104f5b3c64f800750e4a688aa090d460bac21d188ee
MD5 a75262b770514b5f0db958689e108aa6
BLAKE2b-256 99ecd6c3a26142b54d57e74aee54b4d80b9ebb8ce4ab3877f57fbc378db7403d

See more details on using hashes here.

File details

Details for the file log_lammps_reader-0.2.5-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for log_lammps_reader-0.2.5-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d97413c9a2a6e4606d3951ed3beb77cc9614bd08b66739d17617eb6d4c9b99aa
MD5 4a61ed41f30e8b7096c914c260f2def5
BLAKE2b-256 cc81e4a56231e7c7d8cc1ad5f3a08636301e08c4a357e12b6a9e66b1c1da1a17

See more details on using hashes here.

File details

Details for the file log_lammps_reader-0.2.5-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for log_lammps_reader-0.2.5-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 89edd163c1f030e773d57789420397d8a1f3fcdb36a9cd47759e8004b5d9aefe
MD5 0aa85d6a0986230e27e1b058aa79851a
BLAKE2b-256 0279af047fe832f82d6084c56eb507954186fdd5f70147c0577692adda847b13

See more details on using hashes here.

File details

Details for the file log_lammps_reader-0.2.5-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for log_lammps_reader-0.2.5-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bfb1e6b7d84a97fa7a571b273686c86af6f7913f509eff9c5ee9c6afaa8e54c7
MD5 4a5a79416f8bbd3bdeb4397904503fb1
BLAKE2b-256 1d5d7fa4da7b919759f7ae6f0f42181c83d96c490a66249db64481c715ef13ad

See more details on using hashes here.

File details

Details for the file log_lammps_reader-0.2.5-cp312-none-win_amd64.whl.

File metadata

File hashes

Hashes for log_lammps_reader-0.2.5-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 ec9fe47a2001fba599f42c0d3d3dff21fd5d6468ec4bc200b27506781af3a4db
MD5 95e9a690f09b4eb5247167303474510a
BLAKE2b-256 f8ef41c1d5ac3876d52e81066bece3a98682da570e0ec5a52769b3a3b363c973

See more details on using hashes here.

File details

Details for the file log_lammps_reader-0.2.5-cp312-none-win32.whl.

File metadata

File hashes

Hashes for log_lammps_reader-0.2.5-cp312-none-win32.whl
Algorithm Hash digest
SHA256 94be7381d3cc71b3fc246d7f749773d3df68ebc3d5654793529ffd294bee4a59
MD5 4c585ceeb29ef189d1d624b8cb6aeb00
BLAKE2b-256 76f47584885774a173d73b66901b17f996bcc2060f07fd392bcdc433704c59e8

See more details on using hashes here.

File details

Details for the file log_lammps_reader-0.2.5-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for log_lammps_reader-0.2.5-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9298fda7756af8dbebdf21e3903dd588ffe187ed6edb85817f7467c541342972
MD5 648e9aeb6adc0c949d67b587582e9229
BLAKE2b-256 5a4b4dae900d4ec40b11445af5b7907ee45eb89bd6451bfeb50860176dd659fa

See more details on using hashes here.

File details

Details for the file log_lammps_reader-0.2.5-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for log_lammps_reader-0.2.5-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c5bdbcd125f0b65451116fb24c541be1003e00910f6b446650e45e5bcf652c92
MD5 ac4f132e16810e8c5442a6646f382e41
BLAKE2b-256 c58b3f6c72f71aaa37fc0e3f4b1618de82ce46e3a5d1bd35a7ea0939c6f2dc0b

See more details on using hashes here.

File details

Details for the file log_lammps_reader-0.2.5-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for log_lammps_reader-0.2.5-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 81753fe0f95b8f3f7f927d7184bacabe07bcf221ccf38f14fc33ac34bd0154ae
MD5 f100a8cc61ae583796e1f3add0327e50
BLAKE2b-256 064d4e5c1e72f2da3d6f25176f0927b7bc5ff70bdfb441a6498b6d428aec76ba

See more details on using hashes here.

File details

Details for the file log_lammps_reader-0.2.5-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for log_lammps_reader-0.2.5-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 20de3095ae686fd98c5c48ad9245d84f8e52b5ecdd6762cfd1dc0ab22b02642f
MD5 0b5c22122887a3761730ec775b555ab9
BLAKE2b-256 03c6a8d1c51548dcdc959b01a4fb9be5fbb7999308042da432d8c3c575f7aa7d

See more details on using hashes here.

File details

Details for the file log_lammps_reader-0.2.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for log_lammps_reader-0.2.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e197b9e96a0724543d6dbf6c363f17f8aa749e4912ed5151e49da30654c0e8ac
MD5 c8836ee4115e3763a833f3c16e07bacf
BLAKE2b-256 4b15f8e7c228e1605a7fef67f69d471a6cfeec42774823b2f7beeb631378412e

See more details on using hashes here.

File details

Details for the file log_lammps_reader-0.2.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for log_lammps_reader-0.2.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 932c2d186800e60aab68d857994c67c07e9ef70f3521f74b334e2ac43d56a558
MD5 14b977cd77386621655ee545468fb53e
BLAKE2b-256 aeb59a0e67af58366e10dfbebfa194e2e155db859577d5d433c8941deb78999e

See more details on using hashes here.

File details

Details for the file log_lammps_reader-0.2.5-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for log_lammps_reader-0.2.5-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9e9f30d3541d08670f9c8eeac222d5d634a6b6e2f5da02f3b3c98aab03cd8bce
MD5 fb6a796e05c994226132b7ae57758f73
BLAKE2b-256 8ddd2a2be1c799b34013e9c1d4c84f3b17d0c02ae1bace297b35b2113d6c1f10

See more details on using hashes here.

File details

Details for the file log_lammps_reader-0.2.5-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for log_lammps_reader-0.2.5-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 24298274d3d8fa14bf7d69bb1f577696ed0bd616d8bb03eea0ffec007df3b514
MD5 f1421e065931c2e8832696bd20d2a3c1
BLAKE2b-256 a3326fc0d3bb31db03e365e8e51334f549e251f10cbe3aead06f9b79c85b29d7

See more details on using hashes here.

File details

Details for the file log_lammps_reader-0.2.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for log_lammps_reader-0.2.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 29bc3080116017753ad321753dcb85e2dd072fad6722fc5ac8cc1653637864a0
MD5 9f38d68c3050d564f75db6cb70d83355
BLAKE2b-256 2c8a1e52e58117502d7be8d1f77486a4a0ed4bdb70645e07f44b14fcf8fa7dda

See more details on using hashes here.

File details

Details for the file log_lammps_reader-0.2.5-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for log_lammps_reader-0.2.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9da32457f8f573705415c87717db53fe37b724f37dea9c705cce3cf560bbb767
MD5 37faed0c8f3dc8eba95b94b3a1719b8b
BLAKE2b-256 25061b260c752ac24dbe68a6863a3f82344ffefc1dc9f2c9c7348011afa878b8

See more details on using hashes here.

File details

Details for the file log_lammps_reader-0.2.5-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for log_lammps_reader-0.2.5-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f3009ca32615932c2282e815a43e6326b55aa455b5b58976d6753f0cbfb346b6
MD5 abeb4e80815facfd77fa1e586539d721
BLAKE2b-256 3ebcc5280863f54b5afa5726afddf3c81d70b7aa76046329c327c9cec2890302

See more details on using hashes here.

File details

Details for the file log_lammps_reader-0.2.5-cp311-none-win_amd64.whl.

File metadata

File hashes

Hashes for log_lammps_reader-0.2.5-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 8f128cbeb9a85b656358c14e9a56891832fa5596a5b28f172c9c1d23095a9d43
MD5 e44c10995e2924af4ee4043d158cae00
BLAKE2b-256 23a746ec7393c5b8fbbcab47db7f6010a7bf5d142225eb64e99a121448dc41f4

See more details on using hashes here.

File details

Details for the file log_lammps_reader-0.2.5-cp311-none-win32.whl.

File metadata

File hashes

Hashes for log_lammps_reader-0.2.5-cp311-none-win32.whl
Algorithm Hash digest
SHA256 8a1cc78ffb0d27e90a1788ab2fef915f9acae6e1fb1baa7b1e5341658cf62be7
MD5 9bb473b5ab282a40ba88bb9b757cd1c8
BLAKE2b-256 dfc8d5e410301ebb7c6032de69e4da535a272e4918943a1501a1acd1852d423a

See more details on using hashes here.

File details

Details for the file log_lammps_reader-0.2.5-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for log_lammps_reader-0.2.5-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 09c443a22fcf191d0158fa2d7f9b427cd134e75a86c5e5f9c52ab98db45ad0b6
MD5 88f6fe6d52e1856679251eda78ea5e53
BLAKE2b-256 a66ea557b9a58433ea1388019f4677a7bcc57a5118e1bcaed86d983ccaa5fff4

See more details on using hashes here.

File details

Details for the file log_lammps_reader-0.2.5-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for log_lammps_reader-0.2.5-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3a4dcdecebe5fe4a61629df10d23566076d5aaab822594714f96586e9fd3aeb0
MD5 47f05c2e6d4487341c9968f6d0dae8d4
BLAKE2b-256 3e3d549bf5ab440cb245471396fe5c39c4a4861706f2681d70d78c2a44ef9ab7

See more details on using hashes here.

File details

Details for the file log_lammps_reader-0.2.5-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for log_lammps_reader-0.2.5-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 da71e0d5bc87e00ee0b4a6e5d03dd3fad23060e57893199561908e497d603bcf
MD5 d848fd26f778657b1cf233b963ba08a1
BLAKE2b-256 d8edd5cd69ff8b1d9d7ff1a27a4fef5e3d4596dc4390ad48bd376674657c8ba2

See more details on using hashes here.

File details

Details for the file log_lammps_reader-0.2.5-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for log_lammps_reader-0.2.5-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 438e52fc5ad18e78ca065e8c729c885fe6a1209fe2f5053a89eb7b287dbe3c6f
MD5 2a5849ec7947abedab512b018fc380fb
BLAKE2b-256 88f68ec2d86dc345f7a07ab3d923ded02d723f491cedf4ca20aeac59b2c6470d

See more details on using hashes here.

File details

Details for the file log_lammps_reader-0.2.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for log_lammps_reader-0.2.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6491a6b0b613bfda9e5269726a2ff110212c9ccf618ca8bc49b6be9c9ba0bc21
MD5 84a97111d9a6a5792f734b27e325e7e3
BLAKE2b-256 22b3cd428cfb06f82cf2fa98c21385fddddd72d64f2c00737bd4ea7f92f08f07

See more details on using hashes here.

File details

Details for the file log_lammps_reader-0.2.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for log_lammps_reader-0.2.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4544a922e82119be282143133bfa4cb51115e7c7b79e73a42f02d4f96e75bb27
MD5 92366053156e8c379e7216b2e2705e30
BLAKE2b-256 1c30eec64bfd6fe3d94707e83ab335643180fc8ad2c31c0c931754561f4057d7

See more details on using hashes here.

File details

Details for the file log_lammps_reader-0.2.5-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for log_lammps_reader-0.2.5-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 875571adc642972529814a5d2274151a55e83b2119b2e85db5593118665a0710
MD5 94995ab9bc4a31be608b1c0613cca6c8
BLAKE2b-256 063fb9dd8dc99ea9204bfb8d29251820c8f1d0954c685a1814d0c98962a9a506

See more details on using hashes here.

File details

Details for the file log_lammps_reader-0.2.5-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for log_lammps_reader-0.2.5-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ab387e5d32c8392f0c214ad483c6c4fd751245d7f17ef7357d558d56dc84d889
MD5 f84172e5c96795db4f84f4a87769f141
BLAKE2b-256 42d28cdf5cf24001ce968f10657bde68e97b9582d46c650206f7b198cb040267

See more details on using hashes here.

File details

Details for the file log_lammps_reader-0.2.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for log_lammps_reader-0.2.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 aaad6b320d8b687bc033fa377dfcef6323d5e608edece718b2725d645dc23f90
MD5 d57000215790036c39b816c2cc3847a6
BLAKE2b-256 54174436e4be8f71eae72a3ac7735f78767be679de6876dfd94a09375cef34b3

See more details on using hashes here.

File details

Details for the file log_lammps_reader-0.2.5-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for log_lammps_reader-0.2.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 eaa084da7a3dd11ced6df53e5dffc6759d03ee0c5051fb64307fbe90ac106a22
MD5 fc46bcb99fb9f05583b7f73a1f8c0735
BLAKE2b-256 0c0ac0269b69c21882a8c55b39da4ebd221ce7fdcd303181db088712495a7b28

See more details on using hashes here.

File details

Details for the file log_lammps_reader-0.2.5-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for log_lammps_reader-0.2.5-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b6ccec161d6f0fc205d16be5ab5861796334584612574f61407dabc7b487fc16
MD5 839d5477b3c64affcb879a328704f1f7
BLAKE2b-256 d4a54f2843d85f69ec7ff65960b0fbf8e64579f5e16d4293f2c78cd2de252b91

See more details on using hashes here.

File details

Details for the file log_lammps_reader-0.2.5-cp310-none-win_amd64.whl.

File metadata

File hashes

Hashes for log_lammps_reader-0.2.5-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 24e7e13c2f63a8e9e0e6bde96c4250e991baa7a01c3d681fc2f85923e388c1b4
MD5 059d50cf6fa518be1f90f3f3cd0ff463
BLAKE2b-256 47122a901df436480bf0b73e6eab0eb5d1fa5cb18450ed3398643fd2fb18264d

See more details on using hashes here.

File details

Details for the file log_lammps_reader-0.2.5-cp310-none-win32.whl.

File metadata

File hashes

Hashes for log_lammps_reader-0.2.5-cp310-none-win32.whl
Algorithm Hash digest
SHA256 a6ea6b2904a4ecf4300aececf8df143bd54ea963280cfc08b7ee2ddd76ee0f82
MD5 0f14259e10591ac54a827ba06823ff3e
BLAKE2b-256 c595d4a7f778264132c932cd9a16d3026b22a045794b13cd012fda64b246cd0a

See more details on using hashes here.

File details

Details for the file log_lammps_reader-0.2.5-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for log_lammps_reader-0.2.5-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 628a5e3ad612c94d649b88903c41868d15677d44e8674109eb78dc2d6af6d9cf
MD5 7e859f2394feaff859abe3778af01817
BLAKE2b-256 2dc3c2f0c8c92231b85a3be86a6456278e17a532f55f32f829ece245e4753409

See more details on using hashes here.

File details

Details for the file log_lammps_reader-0.2.5-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for log_lammps_reader-0.2.5-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 55136ae58bb68176694d61bb395ec23d029ca13c9b23cc4a4fd9910598a84f6d
MD5 926f79b5a0ad8af569330b06487c1046
BLAKE2b-256 0aa9b2ab96d342697e52637c4098c8669a51865d857c05d4d70c9671d408e83b

See more details on using hashes here.

File details

Details for the file log_lammps_reader-0.2.5-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for log_lammps_reader-0.2.5-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2e09bf383eb4204816bfd64d98fffe46941be3ac30bcd312dfa58b9321028baa
MD5 62563fcebe8e2397245386c71f0e30ad
BLAKE2b-256 df83af701039c9bf5ec56ecd27b6fb78d6ba99319b48a6a56c875ad3d60067d8

See more details on using hashes here.

File details

Details for the file log_lammps_reader-0.2.5-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for log_lammps_reader-0.2.5-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ef4b795835cddd2ad03788beefab39f74467f05ab032e6e2697b847345214836
MD5 cfc95819edb4d2b74b5babbc01a14204
BLAKE2b-256 fb9ad796f095326e7e379effd88aa0e083a7e8c359c05eb9723130d51ef80026

See more details on using hashes here.

File details

Details for the file log_lammps_reader-0.2.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for log_lammps_reader-0.2.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6e16b79538ff372334aca3bdec6ca851713ec9cb20929a90ec7e9f2631318ad3
MD5 3b998e6b8f6bf4eeaec65ccb3e6282ff
BLAKE2b-256 7c481c087dc2502aa88079fd9bc96f84824c449e0f93e8b37c1982b4a4212d44

See more details on using hashes here.

File details

Details for the file log_lammps_reader-0.2.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for log_lammps_reader-0.2.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0af897b34121f2889443e4ba5e6269ed5070a14402231c1a9a258e4f81b59d81
MD5 72796684000aae423bb53ac943870d0f
BLAKE2b-256 80f8cd67dbc2cbf1be6b1e82873b61adfd7c2b2d7f6b8b14ba2f81574df41d41

See more details on using hashes here.

File details

Details for the file log_lammps_reader-0.2.5-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for log_lammps_reader-0.2.5-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e3082a8f28ef309a38f49a157ced37651e86235d7ca7f6582d2a6b675d956d04
MD5 3c1976fe63eb8d2909069d67dd49a374
BLAKE2b-256 46dca3d772c84b175a14c55dbbf9a3201e7b76f6f3db6c9c8b5b7a7e91357551

See more details on using hashes here.

File details

Details for the file log_lammps_reader-0.2.5-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for log_lammps_reader-0.2.5-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 51a2c93866f8cb4c7cf77edbe0ee378e2247564747f5945aa1fc2e3bcc701cc1
MD5 77d119803392c4a2654b9e67f403e763
BLAKE2b-256 217c26b1b421cff45ded2a83f042002c34d81b743ba1d9844b438eb946a6adf4

See more details on using hashes here.

File details

Details for the file log_lammps_reader-0.2.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for log_lammps_reader-0.2.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 befa228496fc3c792a93d3792e7098af308fa00113517a6df3b0d074b2687797
MD5 7f7ba246da77cadf98580e3e4bbceace
BLAKE2b-256 99661c833f33271eafef1f263d353e1afd85f16fbc7fa1532b1b44b6e67f9761

See more details on using hashes here.

File details

Details for the file log_lammps_reader-0.2.5-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for log_lammps_reader-0.2.5-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7d416ddd7393557bef724cc6e4135d097daa6637c13076e8a28c46d5c212df7d
MD5 f101992035d9ab70eb24093cbca8e9cb
BLAKE2b-256 6412b7ead9fd2cc34e75f639d58c2f054a158d74419d5527ad5f0b65b293606c

See more details on using hashes here.

File details

Details for the file log_lammps_reader-0.2.5-cp39-none-win_amd64.whl.

File metadata

File hashes

Hashes for log_lammps_reader-0.2.5-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 5cb11c68ac0f922c5a88defe90f012c606653fec584a15b8c29cb20886da60bc
MD5 44307982ed2e14665e0b881e2c0192de
BLAKE2b-256 2525daa93cf8814e396a5085d1c14a889e9df26d7b8e91f71eb4cf79dc511c06

See more details on using hashes here.

File details

Details for the file log_lammps_reader-0.2.5-cp39-none-win32.whl.

File metadata

File hashes

Hashes for log_lammps_reader-0.2.5-cp39-none-win32.whl
Algorithm Hash digest
SHA256 b18e03f6ae9c42b371b637f9f95d36c7b0a8f7e2bc7e9ecc7583732cd561e13a
MD5 e29825310d254fddc815012ff967747c
BLAKE2b-256 79a44940c0ce5baaa828f5535fe83297d65ce476465eac24c2f609083dabb3f2

See more details on using hashes here.

File details

Details for the file log_lammps_reader-0.2.5-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for log_lammps_reader-0.2.5-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f097d4d110d64c0fdd978b62751af443e43258c39607a837e35c1af7a507995c
MD5 577643462f34cf5f0c282c843a13bc43
BLAKE2b-256 36a84396f940f67997af740028bfc1c9d529894c20483a29de445034140f5e07

See more details on using hashes here.

File details

Details for the file log_lammps_reader-0.2.5-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for log_lammps_reader-0.2.5-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fba7eabc600ce04e888a4bcfed7244ff12ba836da328202e69a3e9b8ed5cb006
MD5 2bbb516c21b6e57534bef616dd68fa17
BLAKE2b-256 19b6964f1d6b315b2e103bd19979253d357a3b9cd35125cf2f3a514228f95721

See more details on using hashes here.

File details

Details for the file log_lammps_reader-0.2.5-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for log_lammps_reader-0.2.5-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 bbe6df05388614ae50f5f4058c2d7cb9606b2f3fdf68aceaad5289720a7fcb18
MD5 4436bc77185211f249fbd1bf94d05497
BLAKE2b-256 0a3217143372c4fa7f59c603eb6258ec0968c7a696250ffbf9f752d45844e7ff

See more details on using hashes here.

File details

Details for the file log_lammps_reader-0.2.5-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for log_lammps_reader-0.2.5-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2221a69d434a36e0475c77b623de2d2a7c7b97f85ef62ae9f1505146f128d37a
MD5 e52e9b4a889316b77bdc72f188e0bc4a
BLAKE2b-256 913931a918ef8d5c8f135a3636d0237c66ca20974ce143134fe48876b67139a2

See more details on using hashes here.

File details

Details for the file log_lammps_reader-0.2.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for log_lammps_reader-0.2.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5f1525fd2131cd673c45cc1b53bd304ada2feb0a0c1684d1cd3615b9f1bf3e2d
MD5 115d8f37517e6c7d5f28886960efba5c
BLAKE2b-256 6afc07678db9702296dc4bd8165721b53d6e21a8f9ef2043d80bb314807f2311

See more details on using hashes here.

File details

Details for the file log_lammps_reader-0.2.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for log_lammps_reader-0.2.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ab69325419688c2b16e01cacaba85cfd7c0a021802fffae823a97529fbfbc975
MD5 f4d247791fb54a26c22a619185a7d779
BLAKE2b-256 be2df7683403c950c2a1417210465bef224dd1155a18c200f273959b77ef4e41

See more details on using hashes here.

File details

Details for the file log_lammps_reader-0.2.5-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for log_lammps_reader-0.2.5-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 603fe452e9f99fa6e0ecc2e4646cb18d0f177ad5edc358a5e17f82c3fd0a0fa2
MD5 3d48d718c4518a4b6db28fecd754fc8f
BLAKE2b-256 72cfdb910a40407d1041394da4491d3d83680644d0cbdb7d3a1b3a24119f3508

See more details on using hashes here.

File details

Details for the file log_lammps_reader-0.2.5-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for log_lammps_reader-0.2.5-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 229d56c581c3449faade446e474dc152f3d5ddcf64d0dbc76cbdb9bc19c8f159
MD5 fd6c762f7696a9aebf3c9ce6b37fb91c
BLAKE2b-256 ea3f7b0e7676b822326b3bc7264aa70c2d9f44cebd050b3e0a68841b265bf540

See more details on using hashes here.

File details

Details for the file log_lammps_reader-0.2.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for log_lammps_reader-0.2.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4e85d3fc37dfd802e6f944031af006889b6bc3e0f2dec7fea4d8bdf7cf891fcb
MD5 0eb85feaf574d600b2dc147c38939709
BLAKE2b-256 0fcc925719bc8d556aa43364db528619a2b2bee77887a0b07ed26e3bd8ce2010

See more details on using hashes here.

File details

Details for the file log_lammps_reader-0.2.5-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for log_lammps_reader-0.2.5-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8fa97d457a4dbcbcc8c1ac573831575d0adc4c02e0c37e97475f6fdb2b5479c2
MD5 d4ea4c1304ab47cf3b70807943d5126f
BLAKE2b-256 e097df1b345a493ff43c2b1bf3ef6fda92f8db241f0f8766bc1ad40e3f9bf489

See more details on using hashes here.

File details

Details for the file log_lammps_reader-0.2.5-cp38-none-win_amd64.whl.

File metadata

File hashes

Hashes for log_lammps_reader-0.2.5-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 00beba9ae4e25092eaa158a9ee69fe5f612cbdd137b4d3c0a76fc0da11402df5
MD5 485303f9a1e2daadf097ad908dc5a4cd
BLAKE2b-256 48648ce67bcd563ebbfd0a84b438489e3b454096db8d5974eefae33cb1b49203

See more details on using hashes here.

File details

Details for the file log_lammps_reader-0.2.5-cp38-none-win32.whl.

File metadata

File hashes

Hashes for log_lammps_reader-0.2.5-cp38-none-win32.whl
Algorithm Hash digest
SHA256 3bdc5634266a1c8f33ce9e9cc9cf605db4664a5d21195273f8836b941f4875b5
MD5 13d4454c48482b7135f7aeaaef92bbdd
BLAKE2b-256 dd445c459140f7b2fb3594fc9a4921cb9d386e446efe3912445974b9f735217f

See more details on using hashes here.

File details

Details for the file log_lammps_reader-0.2.5-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for log_lammps_reader-0.2.5-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f7c39f13831c49c27a0518718a5dbff325bb7a80419e8ebb797c8840dee92f1d
MD5 ef50f73a9100427db4a1c924c2e546b5
BLAKE2b-256 8de19b71f37d647d29c0bf10f663b9055add3d8a04e74818b5c4045d53dd399e

See more details on using hashes here.

File details

Details for the file log_lammps_reader-0.2.5-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for log_lammps_reader-0.2.5-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d1b057158d614acb83197564290ce2a9ef3b21f56299694747968abade36bcf6
MD5 18d1b6108780ae887af04b8834ebff8f
BLAKE2b-256 70b67a3e82b29f7ed067905815f44c76696aaa82d8e06b162aa5e9a933371a5e

See more details on using hashes here.

File details

Details for the file log_lammps_reader-0.2.5-cp38-cp38-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for log_lammps_reader-0.2.5-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ce09989f3fcf91b16056739c68d1f2e4107af3877ed40227a996e2a3eef42846
MD5 36dbfce88b5d885250041119f3245c74
BLAKE2b-256 59cb85d53b1234110dec1e89789b991e487334ae4f12d24bece50bbee68a9fef

See more details on using hashes here.

File details

Details for the file log_lammps_reader-0.2.5-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for log_lammps_reader-0.2.5-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2f68b7fda85f3a14d9bb3186d66d99f615caa9fd3d28fc496a7e932d648dd511
MD5 b133af567f81b8094e292d39f403a73b
BLAKE2b-256 435d8334b601d80b166501e757c483a4f10991d2ea5e1e80fa14bbeee163a7ad

See more details on using hashes here.

File details

Details for the file log_lammps_reader-0.2.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for log_lammps_reader-0.2.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 709a59c579ff1cc18b8bac3ebdaa5b3bb6bd4573da0168bd1b5495cbb688a163
MD5 2d6bb6a4cea2e9f4d40d5770ad1f6605
BLAKE2b-256 4215dfc7e5c2fda3c8361aab4bd995ccc3406550cebc15c8a4920210befaf1d5

See more details on using hashes here.

File details

Details for the file log_lammps_reader-0.2.5-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for log_lammps_reader-0.2.5-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9e55dc96050f793688ac3828ec4cf2e35bab70c3381a91dfcd55238ba341b9a4
MD5 0e9c32230c18fb4e6474125f2fb75d73
BLAKE2b-256 144d9c52558a7a1c28b144232ea71627d682aa7803eebae86ce2ad37472808b8

See more details on using hashes here.

File details

Details for the file log_lammps_reader-0.2.5-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for log_lammps_reader-0.2.5-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6595e5932587029d3ac4d45baeae4836fd7d6420d6af3373b0c02b81b319c854
MD5 f908a7106325e25f7ff79730151a8db3
BLAKE2b-256 9d169c1788dce09eb6dd776066f24203520bb4180f1b94662b1822d061620976

See more details on using hashes here.

File details

Details for the file log_lammps_reader-0.2.5-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for log_lammps_reader-0.2.5-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7c9f73a8d3d9121b7a59f01057554778ec16b7203f71f94d8b47d8770104d93c
MD5 adf1d3bf6c01c281d5e2bff4fb58cefb
BLAKE2b-256 e48c7635e2e1b5a351e7553e8d3ea28897b109c23f8507ea1fb25222da377a94

See more details on using hashes here.

File details

Details for the file log_lammps_reader-0.2.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for log_lammps_reader-0.2.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f2d78cdbe75213fe61cca71e12fb701f0c9be54c82c5379db51478591b403864
MD5 88e094bddfb8f14026ed6f6eb3a03db4
BLAKE2b-256 1a5d31d2fd6775c6b42a07dd2c403cc4219baa5d8fcf6a96da11d15ef42c0c36

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page