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.

In addition, this package can also read LAMMPS dump files and return a dictionary of Int and polars DataFrames, each DataFrame representing a single dump trajectories and the integer representing timestep.

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 and LAMMPS dump 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 ...').
  • Compiled code ensures that it does not any other dependencies at execution.

Installation

Using pip:

pip install log-lammps-reader

Alternatively look at build instructions to build the project.

Usage Examples

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

thermo_number = 0 # Choose the nth number of thermo run
df = log_lammps_reader.parse('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.parse('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'))

# Parse LAMMPS dump files
# Returns a dictionary of timesteps (Int) and trajectories (polars DataFrame)
complete_dump_arr = log_lammps_reder.parse_dump('log.dump')
for timestep, single_dump_df in complete_dump_arr.items():
    print(timestep) # timestep
    print(single_dump_df) # polars DataFrame

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.

```python
>>> import log_lammps_reader
>>> df = log_lammps_reader.parse('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 required_thermo_run_id = Some(1);


    match LogLammpsReader::parse(log_file_name.into(), required_thermo_run_id) {
        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.4.0.tar.gz (24.2 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

log_lammps_reader-0.4.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

log_lammps_reader-0.4.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (4.6 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

log_lammps_reader-0.4.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (4.7 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

log_lammps_reader-0.4.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (4.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

log_lammps_reader-0.4.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

log_lammps_reader-0.4.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (4.6 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

log_lammps_reader-0.4.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (4.7 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

log_lammps_reader-0.4.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (4.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

log_lammps_reader-0.4.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (4.6 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

log_lammps_reader-0.4.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (4.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

log_lammps_reader-0.4.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (4.6 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

log_lammps_reader-0.4.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (4.2 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

log_lammps_reader-0.4.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.0 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

log_lammps_reader-0.4.0-cp313-cp313-win_amd64.whl (3.7 MB view details)

Uploaded CPython 3.13Windows x86-64

log_lammps_reader-0.4.0-cp313-cp313-win32.whl (3.3 MB view details)

Uploaded CPython 3.13Windows x86

log_lammps_reader-0.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

log_lammps_reader-0.4.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (4.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

log_lammps_reader-0.4.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (4.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

log_lammps_reader-0.4.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (4.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

log_lammps_reader-0.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

log_lammps_reader-0.4.0-cp313-cp313-macosx_11_0_arm64.whl (3.6 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

log_lammps_reader-0.4.0-cp313-cp313-macosx_10_12_x86_64.whl (3.9 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

log_lammps_reader-0.4.0-cp312-cp312-win_amd64.whl (3.7 MB view details)

Uploaded CPython 3.12Windows x86-64

log_lammps_reader-0.4.0-cp312-cp312-win32.whl (3.3 MB view details)

Uploaded CPython 3.12Windows x86

log_lammps_reader-0.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

log_lammps_reader-0.4.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (4.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

log_lammps_reader-0.4.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (4.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

log_lammps_reader-0.4.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (4.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

log_lammps_reader-0.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

log_lammps_reader-0.4.0-cp312-cp312-macosx_11_0_arm64.whl (3.6 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

log_lammps_reader-0.4.0-cp312-cp312-macosx_10_12_x86_64.whl (3.9 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

log_lammps_reader-0.4.0-cp311-cp311-win_amd64.whl (3.7 MB view details)

Uploaded CPython 3.11Windows x86-64

log_lammps_reader-0.4.0-cp311-cp311-win32.whl (3.3 MB view details)

Uploaded CPython 3.11Windows x86

log_lammps_reader-0.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

log_lammps_reader-0.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (4.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

log_lammps_reader-0.4.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (4.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

log_lammps_reader-0.4.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (4.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

log_lammps_reader-0.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

log_lammps_reader-0.4.0-cp311-cp311-macosx_11_0_arm64.whl (3.6 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

log_lammps_reader-0.4.0-cp311-cp311-macosx_10_12_x86_64.whl (3.9 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

log_lammps_reader-0.4.0-cp310-cp310-win_amd64.whl (3.7 MB view details)

Uploaded CPython 3.10Windows x86-64

log_lammps_reader-0.4.0-cp310-cp310-win32.whl (3.3 MB view details)

Uploaded CPython 3.10Windows x86

log_lammps_reader-0.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

log_lammps_reader-0.4.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (4.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

log_lammps_reader-0.4.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (4.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

log_lammps_reader-0.4.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (4.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

log_lammps_reader-0.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

log_lammps_reader-0.4.0-cp39-cp39-win_amd64.whl (3.7 MB view details)

Uploaded CPython 3.9Windows x86-64

log_lammps_reader-0.4.0-cp39-cp39-win32.whl (3.3 MB view details)

Uploaded CPython 3.9Windows x86

log_lammps_reader-0.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

log_lammps_reader-0.4.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (4.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

log_lammps_reader-0.4.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (4.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

log_lammps_reader-0.4.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (4.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

log_lammps_reader-0.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

log_lammps_reader-0.4.0-cp38-cp38-win_amd64.whl (3.7 MB view details)

Uploaded CPython 3.8Windows x86-64

log_lammps_reader-0.4.0-cp38-cp38-win32.whl (3.3 MB view details)

Uploaded CPython 3.8Windows x86

log_lammps_reader-0.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

log_lammps_reader-0.4.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (4.6 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

log_lammps_reader-0.4.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (4.7 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

log_lammps_reader-0.4.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (4.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

log_lammps_reader-0.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.0 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

File details

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

File metadata

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

File hashes

Hashes for log_lammps_reader-0.4.0.tar.gz
Algorithm Hash digest
SHA256 06548a0d790255f373034dc1eec42e0f283773efa169977739c2ce61e6d7297f
MD5 bf8e119fa696d50dbee61c5ce297f95c
BLAKE2b-256 abb41be3e63846912d052deda95b458092cb6ec9d891505e1dca10fec2238e17

See more details on using hashes here.

File details

Details for the file log_lammps_reader-0.4.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for log_lammps_reader-0.4.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0b868d88aef511e1778507ef40664e62c7c0a9163b7be3634da268a30ce8ccf2
MD5 35e82a0a95b316ee58e3872f1d72fb29
BLAKE2b-256 6b42cea530d3ccce824ef97f0f5f96e0f29b3dfddda291223f208ab3fd7e3f12

See more details on using hashes here.

File details

Details for the file log_lammps_reader-0.4.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for log_lammps_reader-0.4.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8da4a58ade377abc4be7d5c6b17dc33b032fc4947923df1b5c5fd3a67e4600ac
MD5 67485062734a5b046acaba711ca10162
BLAKE2b-256 377af2ae8e987b6026af969eb765d6b45acd132dc367a44ebbcfef0a7d0e0a6a

See more details on using hashes here.

File details

Details for the file log_lammps_reader-0.4.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for log_lammps_reader-0.4.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5da7b212b06df20c58c144419df22424232bb0b30ad0c8c20825797d04caea42
MD5 fcfdee4fe9e8a34275937d762380a1e8
BLAKE2b-256 1d9150a83eff46bb7aa03f9fdf77400ef3261b1f260f9ed11dd740689e80a799

See more details on using hashes here.

File details

Details for the file log_lammps_reader-0.4.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for log_lammps_reader-0.4.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2d18436463890ad070289ea2a2017160efecf70896e1825db051a44dd89619ca
MD5 4609a717397e74167aaf406acb6b3f46
BLAKE2b-256 55d6de6a1fc65e087c3497616fd4b0e71b54f5a1b39f0a5e2e664d4a60230039

See more details on using hashes here.

File details

Details for the file log_lammps_reader-0.4.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for log_lammps_reader-0.4.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6c2142403c13cdaf9ac57c8a433cba4766a3d859abd40c0292319e6a15b42b33
MD5 324198457ff8179bbf5134f6f99008fb
BLAKE2b-256 7560a32631fb89c2016db5a6afe16d4496bcba17d93a21d1a6b49a0fba18ec7e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for log_lammps_reader-0.4.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d8dc4e9bd3803f81d3de0b4cbf002109303442defaa11afc23e0cc4d0820c4a8
MD5 319e9aa5df4d64cf282bd26b73d1e64d
BLAKE2b-256 477f817044e6120e1a0394cf75c07377721fdc1c0a513b43ce8f744d5ddf3728

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for log_lammps_reader-0.4.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5ed6481af3e3ae2e0776e20ff96fd2b9e4ddaf178eed8f86d9b12dad6b416057
MD5 3a1551fcde7cf1f8ddff122d16a7c376
BLAKE2b-256 f04e2aa76ff2ffd7e48e4e9effb9713f9bdc93d3f84aa7c9be66fca81f84ca21

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for log_lammps_reader-0.4.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d339986d9edd0c16094d472c143c5322033cd169ee08f2a4460f30b2f95e05e4
MD5 2b90ab411121724b2fba8514ad68ab0f
BLAKE2b-256 641d9a69d4bba6cd03649002a4582447c358e933e1f2bcbff130d3f95067eede

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for log_lammps_reader-0.4.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 baee923616d7a19763326cfc0c267fb84ed2d68642289d069e72ccfac4111163
MD5 faeea673bdb1b74538931888ebf4cfeb
BLAKE2b-256 1351ecef84ead9edb3a50e30388079096f84b956d9ddfd6627b62fe632381956

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for log_lammps_reader-0.4.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 efc39d9137d6f2f6f801fe7e934103b02c30089102b481c1159fc07148f2d2c7
MD5 b2d0f0e6452f65cb7a7bcde90a982881
BLAKE2b-256 f21dd167569bf75299e2b81a1fdfc68bc44781f21cd5b990b8ea9cb15d7ff1f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for log_lammps_reader-0.4.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 38167a24fdc81f513e11ce3385d20f66d0b63be9105677504a9ce9b9d4f014ff
MD5 2f597900cec22ec666f728d9e65b4ee5
BLAKE2b-256 ac67fa45363f03000f5fca9ae7f96b8665dc4f7866717b251860f33ba741e77b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for log_lammps_reader-0.4.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 226e68d93dfc14dd4fd501031e6dfed25410d90d66d737ac6dcd391ece544e3a
MD5 22a5b420ab1d33fde8b716a7127048ab
BLAKE2b-256 e880cb0d51182133699b0f77c3d5f1e223570285e8e840e5f5b3628abf1f4df5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for log_lammps_reader-0.4.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0e4144e928b37bf8948bd8992c841615eade6b6dbfce13f626bf432ee26a432a
MD5 fda6ecf3629c6a465cd6ad8e5a6a542b
BLAKE2b-256 0266ae27f219c4f4c092ea8f2cb16f8e19dd0721d8eed2b343a1af6ba897ecd1

See more details on using hashes here.

File details

Details for the file log_lammps_reader-0.4.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for log_lammps_reader-0.4.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 edcd2daf21f7c85498710dacfd0f52d26181a4dd3a57e4599338975999f83944
MD5 724d5a3fbc6ee82813343b08d4ea4d07
BLAKE2b-256 71921542be7d139497ffc1f429b4b56cf5f0403b59e7af6541e5ff79aa1670e0

See more details on using hashes here.

File details

Details for the file log_lammps_reader-0.4.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for log_lammps_reader-0.4.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 392230c25cc2731a3a8ee1fb0da175e355243014100dfcba05c0d72942a2a677
MD5 f38569e127aaf0c6d641b608258a259b
BLAKE2b-256 0b0adaabd1aabb6c94617823154fd8d8283a62fde7dfc6072677e10bb9404eec

See more details on using hashes here.

File details

Details for the file log_lammps_reader-0.4.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for log_lammps_reader-0.4.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2b91e73f5af1bf56b32ba6c17494aac453a5d290135cdcb86a42b8b5c354b819
MD5 4e42cd9c6cb98c496195201ceb29d980
BLAKE2b-256 492fe6728ca7ec868cb388b12f5d782882f05c38fc5ee1fc4d06d40914474673

See more details on using hashes here.

File details

Details for the file log_lammps_reader-0.4.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for log_lammps_reader-0.4.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 5f07f025da45aea7d4ab6985ffaf2e4ca435ab9841673ece266f0e30aebc424c
MD5 47f3767690dbf920c85e8fc7e177edd5
BLAKE2b-256 48f537d0e032b806144a0dd2a93163e635a0735bda48862be06eb5653bf64eb9

See more details on using hashes here.

File details

Details for the file log_lammps_reader-0.4.0-cp313-cp313-win32.whl.

File metadata

File hashes

Hashes for log_lammps_reader-0.4.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 bd3512a5f488680b1809bb9fea120b109a82cf2ab5cd98f610332838222a24b5
MD5 8d16c90256964814d1e59e502fd0276d
BLAKE2b-256 adfa56236cbba4f1603c668f8dcd09f58643f27e73246a95f29dc9750f673e94

See more details on using hashes here.

File details

Details for the file log_lammps_reader-0.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for log_lammps_reader-0.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5dabed1137b950447abc1a96b315ee121bcd57418f0177001cd67f1077e8ac01
MD5 bcc4b412210ed03859bba265b5ac6eb8
BLAKE2b-256 394fd36d9ac926435855d56f992092429cee1100086abd0796d39f46f44af0da

See more details on using hashes here.

File details

Details for the file log_lammps_reader-0.4.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for log_lammps_reader-0.4.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ebb235175e270dbf2989d0ff7f7046ff61c4c88a9253bbc5c0d38bdaf0ba1179
MD5 904145d808b81fd453c80762dc8c366b
BLAKE2b-256 56591d58a670c993417fd204130b6599ea8187f0332cbf64daf686c32b2f63b4

See more details on using hashes here.

File details

Details for the file log_lammps_reader-0.4.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for log_lammps_reader-0.4.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3bed54901ded9d9810c9809e1310475f5ba980641c97f6ef035b00e83a4c430c
MD5 115c27519b1a51b20578aeee959f1788
BLAKE2b-256 312d94df08daa30d3b0276554e8c9d82f3063ed5add555ae583d86c45d6a5c27

See more details on using hashes here.

File details

Details for the file log_lammps_reader-0.4.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for log_lammps_reader-0.4.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d7ca21283787d792af5d78f623c871602e796a8e6796058cab1cfcce27fe1d89
MD5 d617aee6650c108050f61424651597d3
BLAKE2b-256 c6852bc783969111a29fa804c5d74831ed85ac426ab68ab28edfa08ec38005e8

See more details on using hashes here.

File details

Details for the file log_lammps_reader-0.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for log_lammps_reader-0.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f80437d5e76dee7dc028cdecc4a632966e2128d7f6ba56096f2fa364d1af4edb
MD5 f60a28c32ae01bc097004f7f390e8b76
BLAKE2b-256 94f9b1e51e993808ac8bcb6f29f500ddd54d55575e97cf4a3983e6f18994b9b0

See more details on using hashes here.

File details

Details for the file log_lammps_reader-0.4.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for log_lammps_reader-0.4.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e604ce383788408c9f7098ce45fb1069568ad8b55c74b77f6c9607b6c323f39e
MD5 14fdcf54ab073d6a0ddb628e3e3905a2
BLAKE2b-256 a925896abb086be0a30c7c06a7a57c5a739b6c5e634d7829082a50d41add76a5

See more details on using hashes here.

File details

Details for the file log_lammps_reader-0.4.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for log_lammps_reader-0.4.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 edc36f619a1a5c4545fc59d003c8062a6b88073395daf141afb8491e08828fd1
MD5 e64f8876945ed5708410db32ebda1e02
BLAKE2b-256 7754ce2806da10342a181125fe83b04dd3a79abdffcabe51775610a98bb567f0

See more details on using hashes here.

File details

Details for the file log_lammps_reader-0.4.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for log_lammps_reader-0.4.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 2ab3c8a98aeecfebeee78e37bf243fbf827189a17ceb10dd22d2516c734c64a7
MD5 779189302ba66da3f28465ba4a71732d
BLAKE2b-256 3db71a123135ae112391811696928558853f08963828b91645bc06978078e53d

See more details on using hashes here.

File details

Details for the file log_lammps_reader-0.4.0-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for log_lammps_reader-0.4.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 1c163aa1992ac676904f47b5c590505a6be3def322c405cc37e2f830b9407150
MD5 0640d7909840922f287d60ed122376fa
BLAKE2b-256 32b34d4ea61ba0061953cb1f1f51a3e9ed5b64dba2df952f56c9c4b7fe393368

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for log_lammps_reader-0.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5519b9d9cb13fe245f59afec2db3e433f6bff2c7323c9f386670b9ee039b4878
MD5 433b365f792c5b10b09fb53e26fcddd0
BLAKE2b-256 bb8b8965319e61d9efc69950180a8f33ccc369a069719dcdc3776fc1ef4221d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for log_lammps_reader-0.4.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7a3bc41b91c701951d32b0262304dd5ace62d3d362c7082d873432008ad3a16c
MD5 bb80ab7b2f831f5d550c901d39e550e2
BLAKE2b-256 68979ddd101c9827b03af88f0b1f28c899d82489150afe15061053c3fbf99eae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for log_lammps_reader-0.4.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6b662769a4113ab5217c3bec07a77c3e4464e02e03de1f479e462aa3f56d2758
MD5 11cb0adc55a88fa7de24edce5cf127f1
BLAKE2b-256 c5a465372489f8579854fe63a99340f74305a52806ededd1eeaeb87f5de9c0dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for log_lammps_reader-0.4.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fd061972fe3719795f8ff286aa28b15e34a82b1bc5d5d49e1e3bc2279b8d62e8
MD5 d7afedbf20a129284985e430402c979f
BLAKE2b-256 01033e56581d7ae8411c1f13060b390c5c17a87994f92a12e6410f404803b6cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for log_lammps_reader-0.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8f206ed84769e48d55cb0ff0dae9f449be5af3fbc934c8f8aacf081d066cac30
MD5 bb1be7d99978cc385eca3ca9956f3178
BLAKE2b-256 d7da137774c82163bd2489892c80b46fe6f0dd514043c3eb362e088f790538f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for log_lammps_reader-0.4.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cb2d1d352744d429dcedf14f6c2b77ba7c9645c5058c4e13ea7a94a03cd30a00
MD5 13b9fb0d63baeb0cf239c97d7f6c21ee
BLAKE2b-256 ee3755c0f9b036cfc81959e8e23f7ff14afcc63161cf768cd5e8c7837a805ddc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for log_lammps_reader-0.4.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fc4ca1dddef37e1fa94bd975cdef066acae89f0d18aacf1453a71326c7057958
MD5 826bd23231fa4d71caad69e30eef8874
BLAKE2b-256 2d9ff62ec496bfc82c4cd2062e63a2b45e21dcda86eb96eae9345b3b92e582b6

See more details on using hashes here.

File details

Details for the file log_lammps_reader-0.4.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for log_lammps_reader-0.4.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 76cd7f82cc2f6400c51d0576cd4a81f6e360becf8d98d904fe870e3589be2f5a
MD5 8b6d8cc9ebce6fac76a60cdc81b569dd
BLAKE2b-256 0b928c594a366e96a1f63af39fbf0eba56e13a5a70dcb00331c2db81c29b7558

See more details on using hashes here.

File details

Details for the file log_lammps_reader-0.4.0-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for log_lammps_reader-0.4.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 843205a329d03335e4057d6fa295ec5f7eb2b506a0b521ecc53c9fec7b09592a
MD5 9260e0df7a9b5ba9f6da116bcc6d9621
BLAKE2b-256 700caa4ca6fa856a4144604f8951c76a48f01db45bd87202176c84ea4ea82b97

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for log_lammps_reader-0.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cb7a085b7508a2e684c416ce4dc5677db2fea135a774da12b378d8542b0e7298
MD5 fc781b72f5e86939a04033aea28eee11
BLAKE2b-256 916e1de417a56d322cb5c24b00ee364db446c79c68aece774e5eaca35a7987d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for log_lammps_reader-0.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d29467873e88dc0402dc737c43b13459bf60a6fa16336ec38eecf784db137ffe
MD5 cd948ca67a172a991bf0dc4c2d7583c5
BLAKE2b-256 3c6df6f63eb28b4696dcea29a80a016ea1cdc1165dc30938df900d276ad292e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for log_lammps_reader-0.4.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1825776b7a3e3e9a5856194621bbbbac4554ee21ce5bf1bebb7fcdbab86fc6e6
MD5 df1d952ab4be8c6b5999e9a11f10739f
BLAKE2b-256 dde8ea070c4ca3be8f03b0e8fdb5a10c4cd0c1293bf63e950c4c98e135912fa8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for log_lammps_reader-0.4.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 100abe34b96884e8e5041c17b463acc27b08661d127c2eba65361f1fbde5152b
MD5 695aab3597517dde9ba8ebad6578a09c
BLAKE2b-256 c526ca31bfeb7783ed7a7ae687e1ccfbeea5c14b2fb25b286d556ec8801337c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for log_lammps_reader-0.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9e109f5d9708e2038cd2b0271048345b9f64199fd05802c9f371b77724c37ba9
MD5 44434d9f926044f461841a470447e8ab
BLAKE2b-256 60cb0f6653c2ddacd3c30765c45f179c4d92dca62e3614dd9f982ca6ee63ab43

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for log_lammps_reader-0.4.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ff9c47b89209e952b4c593433025cb52dc883d110c82099667ef18a9c217b959
MD5 f853bca50424b7989a3b12f9cfa1ed72
BLAKE2b-256 7d6c83ba095e17c48720daf93982ee3810210dc8175f61874b4f740249f8e70a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for log_lammps_reader-0.4.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 85950753ce72644a44f39a38fb56b6dd73130b991698289a1211635dc15aa24a
MD5 b1162ec63dc14f09d2bf21f6922bab34
BLAKE2b-256 de3e7793c37804071e37d2bcb6d856dc6b3397a24d46991884453be4a906f72c

See more details on using hashes here.

File details

Details for the file log_lammps_reader-0.4.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for log_lammps_reader-0.4.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 020914b7a6c468f3f8f62725ed57e8d21c71bfa85dbe253a49a185fd8e3be189
MD5 fc948679e0aca0bbf7524c59ea2e85ef
BLAKE2b-256 c73fe5a55e788093d9bc7b4420ada269bb28ebc9f1a3352f067724935c4dd2a7

See more details on using hashes here.

File details

Details for the file log_lammps_reader-0.4.0-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for log_lammps_reader-0.4.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 f80285eb35fa87b96cb831f4ed6477a568b0112a3eb17897e518127ae9996886
MD5 7efab4feee9db7e33a55a0675adf0301
BLAKE2b-256 abc36df6a6d1c97cddd0655f222a8dba7518ba7cb79bf1cae03b1f7bd3f839cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for log_lammps_reader-0.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f1d24249cd652ebbb9ecf2eba359233527ab849a56afc5691839294ad8781223
MD5 4d69589d07ca26b829eefa97b39e1978
BLAKE2b-256 df9415b8924407807bda68165f407a84d7ce8f470ef8cdb5518c537bdc45379c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for log_lammps_reader-0.4.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6ff13500f3653416f1b4f3bbd20756cf8265d403dcf18a33a53b34ee55403919
MD5 9230fbed85341b15b643d69401a03c61
BLAKE2b-256 53e7f1a7605c8e1e37bf3e1f6c0c031341f0e57f6c04ad8796c5b27e53f6f696

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for log_lammps_reader-0.4.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9bf68cabadf5009be840b2b5c0061bf08608b07bb0bfaaea103be720cd7d2ef5
MD5 39337ede2acc146850117d40023db462
BLAKE2b-256 5e111442cd59dedc75117a69af5d3a19b82a0d747e031f4d2de56f01a13188ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for log_lammps_reader-0.4.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 936d36efc67e1cff51d87508a26efa540cd9f89869e83ff6a88b6789b6bb0756
MD5 000a216b2611b3dff6e0bcad4b442e9b
BLAKE2b-256 717b117e94a395347f817dad81595b6498756dc0a04c9368b47480d6768c3e8a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for log_lammps_reader-0.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c4938a5be8122db0d241885646da44dc5c9f733a4472ed0ce940f2a338b7a4df
MD5 bda43d86a192cc0ec57c9b68dde0bd1f
BLAKE2b-256 a9e9974cb5f706bd3b90c6295a3977870f154c1bc6e6ff901c2f96d73af43839

See more details on using hashes here.

File details

Details for the file log_lammps_reader-0.4.0-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for log_lammps_reader-0.4.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 a7e0e053cd424a1fd5e872e12c395952f4bff1a937dec28ed866ff597750db9d
MD5 f21372dfe35530d253424f4de577ee76
BLAKE2b-256 15ff59e3c8babd20b60639983fa24b728eaafa3bf2fc0eefae7224a7d468567b

See more details on using hashes here.

File details

Details for the file log_lammps_reader-0.4.0-cp39-cp39-win32.whl.

File metadata

File hashes

Hashes for log_lammps_reader-0.4.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 3c73e94188dd71ca29cb7078a1711e05561933a4ad84931232d051c77a57c23c
MD5 fe27aff62659d75f321cef35f7791f70
BLAKE2b-256 a0d9cf1153ae37a84664cf841796f83698d548fa1c6a598d9c1de25e2161e2dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for log_lammps_reader-0.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5215a142bea9a3fa71589fa79401e168d226f3ac4b7e99cf40b96e236cd2e2d4
MD5 7127741e6443b43f01f24f4ebf87058a
BLAKE2b-256 5033e990e74574813f0f9e10969b8def2aad8a6cdba96f16d8a23a961ebea344

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for log_lammps_reader-0.4.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 af743a605022ab85b1491b08689c957aa21e19f90514b87cc1547e1f79bd59ca
MD5 8277c9d6ff8335f2155c8861efb7c6bd
BLAKE2b-256 00602d32392a69f6093b225e2c21a22e3397eee808f4a8b3f554b6eba2c92a29

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for log_lammps_reader-0.4.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 698acff487638ee441b59530fc4f0f4b63d945fbe89471fcd4dc6470e44d5193
MD5 d5dfda0ee904714361b067b3e668a16b
BLAKE2b-256 d29b61b93a5d5cbb0b39953d626cdfffd5c5b7872e4add0b2041b2e56f38cc65

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for log_lammps_reader-0.4.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d0359829e424d9932db511f09c66104c37aa4f16f50ad0cf48672521d99f1e17
MD5 e30ba86fb9c1d6b7341aa85a7faa0e89
BLAKE2b-256 612ba30630eefef3800870c57b1e9f55a687810432c888dd86dd297a13369754

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for log_lammps_reader-0.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 70490fe7ba49a64dffa65204f263926cf3364d9fa559636ca4546629c0fb346f
MD5 07498ca6e737ad7ea4c91d57c96b5e47
BLAKE2b-256 f89bc6a9d837fb813fb03243f32852e06a2e65ea73934d791d8ac6cef87b85f8

See more details on using hashes here.

File details

Details for the file log_lammps_reader-0.4.0-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for log_lammps_reader-0.4.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 4557006ae63298ec77acf0dc3c6fe6e071b557738529e870efbc6b75da612537
MD5 b8fe24fb6eeb9fdb8e4189a97004855e
BLAKE2b-256 0b9b9f83d3ee7dd99134d68be0afeb34ef03849f18d2479bc3c90a024638ab4a

See more details on using hashes here.

File details

Details for the file log_lammps_reader-0.4.0-cp38-cp38-win32.whl.

File metadata

File hashes

Hashes for log_lammps_reader-0.4.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 8725f5024a575320465c9dfb28e2d9de19cadc95c4d318f684f76641c1c37f6f
MD5 af592334ed39a42009aa040123949b58
BLAKE2b-256 9919a64745365c0f25d3a59bddc5ecda8c1d8342b03cd84ac8a79865c8033c93

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for log_lammps_reader-0.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8ad29c2657ada14afb4e5aecfacb0735313b93043060611e565352285a2daa8c
MD5 7f77c94d30c80032c578b1d1ef9179ad
BLAKE2b-256 22626e798f9cdfbbdc76dca85dcccca9ecbd260488b398a403350e6f88790009

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for log_lammps_reader-0.4.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 afc8219ce1f2632281f7649c19248b66412e852bb7bb9dbe93ae3cbaf3eaac31
MD5 3bacf1d197d1186c33794d69e2b86142
BLAKE2b-256 1f2b419f1fffa9749bc973eddbae7fd9150a0647e95592dfc8cee5a5ca6fbd85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for log_lammps_reader-0.4.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4c646ae8ac4f449020e4739d5484e1fe4047fb8bf2bb795482312842abc91259
MD5 05a027eb01a6c475113e68ecd5d9ebff
BLAKE2b-256 a9dfa57012fbf999652d7a75fe2fd92ace49de4c56d2f20fc0abb526d3b446fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for log_lammps_reader-0.4.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0686d0f282563493187430ec02d3d37979e5816120867b35fb1bb31ad853ae7c
MD5 3e7926d3f79386fa28c17696f4eb4d73
BLAKE2b-256 4714d42d9761b76273515f2ec6ffd5166eb2428d89c17211e998cf119f837df9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for log_lammps_reader-0.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a24556b1d952caeb5051c26d5b19eaa83798443fb97f703db4f4ea41504019d2
MD5 3111d840d597ba2d6413d3e3f01db0f4
BLAKE2b-256 9767e71a6363ba421c484757e655c63f3968b8bba6e40f1e891fc450ae08d611

See more details on using hashes here.

Supported by

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