# 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](https://pola.rs/) library. This project leverages [PyO3](https://pyo3.rs/) 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
- Exposes functionality to Python through a PyO3 module
- 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
## Installation
Using pip:
```bash
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 get the useful data start with `run_number = 1`.
### Build For Python
```python
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.
```python
>>> 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
Clone the repo and add it to your project
```rust
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:
```bash
pip install maturin # or use conda or micromamba
```
2. Compile the Rust packages and install the python module.
```bash
maturin develop --release
```
Raw data
{
"_id": null,
"home_page": null,
"name": "log-lammps-reader",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.8",
"maintainer_email": null,
"keywords": "lammps, lammps logfile, lammps log, log reader, polars rust",
"author": null,
"author_email": "Geordy Jomon <gj82@njit.edu>",
"download_url": "https://files.pythonhosted.org/packages/7b/cb/fa1a7cda3ada2f2cf052f21629bf51b8424048d1ed57d371f58c0727138b/log_lammps_reader-0.2.3.tar.gz",
"platform": null,
"description": "# Log LAMMPS Reader\n\nLog LAMMPS Reader is a high-performance Rust library and Python extension for reading LAMMPS log files and converting them into DataFrames using the [Polars](https://pola.rs/) library. This project leverages [PyO3](https://pyo3.rs/) to create a Python module that interfaces with Rust code, ensuring both speed and efficiency.\n\nThis 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.\n\nIt 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.\n\n## Features\n\n- **High-speed** reading of LAMMPS log files\n- Converts log data into Polars DataFrames\n- Exposes functionality to Python through a PyO3 module\n- Gets thermo data for multiple thermo runs\n- Better data parsing, skips rows if they are invalid (e.g missing newline, non-numeric characters in the log)\n- Only stores the needed thermo run data specified by user\n- Also able to get lines in the log file which starts with a certain string prefix\n\n## Installation\n\nUsing pip:\n\n```bash\npip install log-lammps-reader\n```\n\nAlternatively look at build instructions to build the project.\n\n## Usage Examples\n\n- Note the `run_number = 0` gives the first data output which might include the minimization run.\n- To get the useful data start with `run_number = 1`.\n\n\n### Build For Python\n\n```python\nimport log_lammps_reader\n\nthermo_number = 0 # Choose the nth number of thermo run\ndf = log_lammps_reader.new('log.lammps') # polars DataFrame for 1st thermo run\n# usually the minimization run\n\n# Or choose the nth number of thermo run (default n = 0)\n# n = 0 might consider the MPI minimization data, so in most cases\n# start with n = 1\ndf = log_lammps_reader.new('log.lammps', n) \ntime = df.get_column('Time') # Get any thermo column\ntime_squared = time ** 2 # use broadcasting operations similar to numpy\n\n# Use polars to filter the results.\nimport polars as pl\nequilibrated_df = df.filter(pl.col('Time') > 1) \n\n# Convert data to numpy if needed\nimport numpy as np\nstep = np.array(df.get_column('Step'))\n\n# Get lines in the log that start with a prefix string\nfixes_list = log_lammps_reader.log_starts_with('log.lammps', 'fix')\n```\n\nExample of a DataFrame for a LAMMPS log file.\n\n```python\n>>> import log_lammps_reader\n>>> df = log_lammps_reader.new('log.lammps', 1)\n>>> df\nshape: (10_000_002, 10)\n\u250c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u252c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u252c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u252c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u252c\u2500\u2500\u2500\u252c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u252c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u252c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u252c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2510\n\u2502 Step \u2506 Time \u2506 Temp \u2506 Press \u2506 \u2026 \u2506 Atoms \u2506 PotEng \u2506 KinEng \u2506 TotEng \u2502\n\u2502 --- \u2506 --- \u2506 --- \u2506 --- \u2506 \u2506 --- \u2506 --- \u2506 --- \u2506 --- \u2502\n\u2502 f64 \u2506 f64 \u2506 f64 \u2506 f64 \u2506 \u2506 f64 \u2506 f64 \u2506 f64 \u2506 f64 \u2502\n\u255e\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u256a\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u256a\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u256a\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u256a\u2550\u2550\u2550\u256a\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u256a\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u256a\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u256a\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2561\n\u2502 61.0 \u2506 0.0 \u2506 298.0 \u2506 57.20028 \u2506 \u2026 \u2506 519.0 \u2506 -14.776112 \u2506 19.953113 \u2506 5.1770012 \u2502\n\u2502 70.0 \u2506 0.009 \u2506 296.73074 \u2506 60.840723 \u2506 \u2026 \u2506 519.0 \u2506 -14.721924 \u2506 19.868128 \u2506 5.1462039 \u2502\n\u2502 80.0 \u2506 0.019 \u2506 292.56952 \u2506 72.565657 \u2506 \u2026 \u2506 519.0 \u2506 -14.530972 \u2506 19.589506 \u2506 5.0585341 \u2502\n\u2502 90.0 \u2506 0.029 \u2506 285.36347 \u2506 92.936408 \u2506 \u2026 \u2506 519.0 \u2506 -14.18668 \u2506 19.107012 \u2506 4.9203316 \u2502\n\u2502 100.0 \u2506 0.039 \u2506 275.29149 \u2506 121.91127 \u2506 \u2026 \u2506 519.0 \u2506 -13.681587 \u2506 18.432625 \u2506 4.7510379 \u2502\n\u2502 \u2026 \u2506 \u2026 \u2506 \u2026 \u2506 \u2026 \u2506 \u2026 \u2506 \u2026 \u2506 \u2026 \u2506 \u2026 \u2506 \u2026 \u2502\n\u2502 1.0000003e8 \u2506 99999.969 \u2506 301.90216 \u2506 225.03035 \u2506 \u2026 \u2506 519.0 \u2506 -11.279288 \u2506 20.214389 \u2506 8.9351011 \u2502\n\u2502 1.0000004e8 \u2506 99999.979 \u2506 301.99266 \u2506 220.86566 \u2506 \u2026 \u2506 519.0 \u2506 -11.33326 \u2506 20.220449 \u2506 8.8871881 \u2502\n\u2502 1.0000005e8 \u2506 99999.989 \u2506 302.04158 \u2506 215.55467 \u2506 \u2026 \u2506 519.0 \u2506 -11.406581 \u2506 20.223724 \u2506 8.8171428 \u2502\n\u2502 1.0000006e8 \u2506 99999.999 \u2506 301.61379 \u2506 210.565 \u2506 \u2026 \u2506 519.0 \u2506 -11.471215 \u2506 20.195081 \u2506 8.723866 \u2502\n\u2502 1.00000061e8 \u2506 100000.0 \u2506 301.52726 \u2506 210.15164 \u2506 \u2026 \u2506 519.0 \u2506 -11.475823 \u2506 20.189287 \u2506 8.7134637 \u2502\n\u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\n>>> df.get_column('Time')\nshape: (10_000_002,)\nSeries: 'Time' [f64]\n[\n 0.0\n 0.009\n 0.019\n 0.029\n 0.039\n \u2026\n 99999.969\n 99999.979\n 99999.989\n 99999.999\n 100000.0\n]\n>>> df.get_column('Time').mean()\n50000.00399999919\n>>> df.get_column('Time').std()\n28867.520676357886\n# Example of getting the lines that start with a certain prefix in the log file\n# Returns a list of strings.\n>>> log_lammps_reader.log_starts_with('log.lammps', 'fix')\n['fix WALL methane wall/region/tjatjopoulos pore 0.005547314165349033 3.565 0.4824 ${radius}',\n 'fix WALL methane wall/region/tjatjopoulos pore 0.005547314165349033 3.565 0.4824 30',\n 'fix NVT all nvt temp ${temp_sim} ${temp_sim} $(100.0*dt)',\n 'fix NVT all nvt temp 298 ${temp_sim} $(100.0*dt)',\n 'fix NVT all nvt temp 298 298 $(100.0*dt)',\n 'fix NVT all nvt temp 298 298 0.10000000000000000555']\n```\n\n### Rust\n\nClone the repo and add it to your project\n\n```rust\nuse log_lammps_reader::LogLammpsReader;\n\nfn main() {\n let log_file_name = \"log.lammps\";\n // skipping minimization\n let run_number = Some(1);\n\n\n match LogLammpsReader::new(log_file_name.into(), run_number) {\n Ok(df) => println!(\"DataFrame read successfully: {:?}\", df),\n Err(e) => eprintln!(\"Error reading DataFrame: {}\", e),\n }\n}\n```\n\n## Build From Source\n\nAlternatively, to build the Python module, follow these steps:\n\n### Requirements\n\n- Rust (latest stable version recommended)\n- Python 3.8 or later\n- Cargo (Rust package manager)\n\n1. Ensure you have `maturin` installed:\n\n ```bash\n pip install maturin # or use conda or micromamba\n ```\n\n2. Compile the Rust packages and install the python module.\n\n ```bash\n maturin develop --release\n ```\n\n",
"bugtrack_url": null,
"license": "MIT License",
"summary": "High-performance Rust library and Python extension for reading LAMMPS log files",
"version": "0.2.3",
"project_urls": {
"Issues": "https://github.com/GeordyJ/log_lammps_reader/issues",
"Repository": "https://github.com/GeordyJ/log_lammps_reader"
},
"split_keywords": [
"lammps",
" lammps logfile",
" lammps log",
" log reader",
" polars rust"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "2bf2a0fc99b521fa827adc46da82e467acf5806513aa2478b450feec3451e8c1",
"md5": "354b5a3248b1333b5312b919e8ae171b",
"sha256": "eabe00780a063692e5b2043a8bf9b0fd43250f9789647c4aad281f5042ecde09"
},
"downloads": -1,
"filename": "log_lammps_reader-0.2.3-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "354b5a3248b1333b5312b919e8ae171b",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 3037222,
"upload_time": "2024-08-11T16:00:09",
"upload_time_iso_8601": "2024-08-11T16:00:09.878667Z",
"url": "https://files.pythonhosted.org/packages/2b/f2/a0fc99b521fa827adc46da82e467acf5806513aa2478b450feec3451e8c1/log_lammps_reader-0.2.3-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a604c25a453bab588d50ac289bf3f66aa4c63a5165fcbc448ef234946d63cb45",
"md5": "25e331ec590e593e1fc644b52c1480c1",
"sha256": "ad1784918796be80befd59dde58b7893a50f04855f381055fbb9d81e3933b4d8"
},
"downloads": -1,
"filename": "log_lammps_reader-0.2.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "25e331ec590e593e1fc644b52c1480c1",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 3469679,
"upload_time": "2024-08-11T15:59:03",
"upload_time_iso_8601": "2024-08-11T15:59:03.130748Z",
"url": "https://files.pythonhosted.org/packages/a6/04/c25a453bab588d50ac289bf3f66aa4c63a5165fcbc448ef234946d63cb45/log_lammps_reader-0.2.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9ce42c437340a02d23bda4f63a493b90e7b8e09ee6d6dd9b0ce7ad6971775b27",
"md5": "a99a3fad94930d4c51fb9ffe8bf776c4",
"sha256": "9a7b6899dc1f433e3b782acbfc782e37a610287c2bc5ec72959edae2c53e41aa"
},
"downloads": -1,
"filename": "log_lammps_reader-0.2.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "a99a3fad94930d4c51fb9ffe8bf776c4",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 3611062,
"upload_time": "2024-08-11T15:59:18",
"upload_time_iso_8601": "2024-08-11T15:59:18.549190Z",
"url": "https://files.pythonhosted.org/packages/9c/e4/2c437340a02d23bda4f63a493b90e7b8e09ee6d6dd9b0ce7ad6971775b27/log_lammps_reader-0.2.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8820ac8525262ffee0a86d91ce2b9c1ccad80236018cc511d08fbd0673269690",
"md5": "7e75ff3cfc4e993fe7da11e1b2e6eb48",
"sha256": "81a0619fda63ef17fc973030c3ba6f70114beef5d9a80a6c2b4795f35c5f3313"
},
"downloads": -1,
"filename": "log_lammps_reader-0.2.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "7e75ff3cfc4e993fe7da11e1b2e6eb48",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 3870105,
"upload_time": "2024-08-11T15:59:46",
"upload_time_iso_8601": "2024-08-11T15:59:46.216474Z",
"url": "https://files.pythonhosted.org/packages/88/20/ac8525262ffee0a86d91ce2b9c1ccad80236018cc511d08fbd0673269690/log_lammps_reader-0.2.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d511ea67164d2edbe8a99f532bdf9711417a183dcb5ecb4c8111ae81d62c87c6",
"md5": "0dcd66f8e6a1143d5915d38b0388eb9e",
"sha256": "1cb34a6a31f26ee2a7982028adf26c709165a48276f96312846d85633e73a1b0"
},
"downloads": -1,
"filename": "log_lammps_reader-0.2.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "0dcd66f8e6a1143d5915d38b0388eb9e",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 3863121,
"upload_time": "2024-08-11T15:59:32",
"upload_time_iso_8601": "2024-08-11T15:59:32.426060Z",
"url": "https://files.pythonhosted.org/packages/d5/11/ea67164d2edbe8a99f532bdf9711417a183dcb5ecb4c8111ae81d62c87c6/log_lammps_reader-0.2.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ea754a02f4e1b4637476195d2e4a267fe0eaf4bc7292d556f7021a0a8f8d8cb7",
"md5": "0f9d95690b03f96bdf6e8f30905d0698",
"sha256": "88f4754e2860a010ac0d3fa5be81eaec1bdb3f76aa523af344f7c73f7523489f"
},
"downloads": -1,
"filename": "log_lammps_reader-0.2.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "0f9d95690b03f96bdf6e8f30905d0698",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 3619065,
"upload_time": "2024-08-11T15:59:56",
"upload_time_iso_8601": "2024-08-11T15:59:56.551275Z",
"url": "https://files.pythonhosted.org/packages/ea/75/4a02f4e1b4637476195d2e4a267fe0eaf4bc7292d556f7021a0a8f8d8cb7/log_lammps_reader-0.2.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e3debce2193262137b521bc10fb8166dc91fb509cb2706e20952d5ce083a261e",
"md5": "88ab516dc52f384b667245245d59b02d",
"sha256": "ec0b5e3cea8b0b0130631d25a5e2e621a444011954ab2fb62de938dc59b1bd9b"
},
"downloads": -1,
"filename": "log_lammps_reader-0.2.3-cp310-cp310-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "88ab516dc52f384b667245245d59b02d",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 3604108,
"upload_time": "2024-08-11T16:00:19",
"upload_time_iso_8601": "2024-08-11T16:00:19.462112Z",
"url": "https://files.pythonhosted.org/packages/e3/de/bce2193262137b521bc10fb8166dc91fb509cb2706e20952d5ce083a261e/log_lammps_reader-0.2.3-cp310-cp310-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ccc3bf61d37bfe7630e57714b4f2ca5e6347318e2a66efb9110c4ffa92bd1f35",
"md5": "89ef97cd610458bcd59c13ffd534447e",
"sha256": "b3b4536aff643197679ee58375afda76201c7e72dfbf66369ba4a19896a38ed7"
},
"downloads": -1,
"filename": "log_lammps_reader-0.2.3-cp310-cp310-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "89ef97cd610458bcd59c13ffd534447e",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 3871505,
"upload_time": "2024-08-11T16:00:34",
"upload_time_iso_8601": "2024-08-11T16:00:34.029377Z",
"url": "https://files.pythonhosted.org/packages/cc/c3/bf61d37bfe7630e57714b4f2ca5e6347318e2a66efb9110c4ffa92bd1f35/log_lammps_reader-0.2.3-cp310-cp310-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "81d8281e57b2463f6f215d61404ee8c473688fd3b7575d25d2263f0232c97b80",
"md5": "1423c1de950ffe7e07381da6c068f0ca",
"sha256": "e1aa62df40a41ad83ec2c9abc4288753c37afd48aae50f9bcad7ce2c13cd17a6"
},
"downloads": -1,
"filename": "log_lammps_reader-0.2.3-cp310-cp310-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "1423c1de950ffe7e07381da6c068f0ca",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 3876916,
"upload_time": "2024-08-11T16:00:49",
"upload_time_iso_8601": "2024-08-11T16:00:49.274398Z",
"url": "https://files.pythonhosted.org/packages/81/d8/281e57b2463f6f215d61404ee8c473688fd3b7575d25d2263f0232c97b80/log_lammps_reader-0.2.3-cp310-cp310-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7d5320602d10c50484edcf8591c4cc06f4e4b0dc25d464e0b1718b12cebfa37a",
"md5": "8dd133af9e1d5c7baeb77ad2e4a8dc0a",
"sha256": "ea3b9551325166ed96dcb4ac3e1d5bfe43132673e6693c11a517d7e7a2a0f16e"
},
"downloads": -1,
"filename": "log_lammps_reader-0.2.3-cp310-cp310-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "8dd133af9e1d5c7baeb77ad2e4a8dc0a",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 3797007,
"upload_time": "2024-08-11T16:01:02",
"upload_time_iso_8601": "2024-08-11T16:01:02.683702Z",
"url": "https://files.pythonhosted.org/packages/7d/53/20602d10c50484edcf8591c4cc06f4e4b0dc25d464e0b1718b12cebfa37a/log_lammps_reader-0.2.3-cp310-cp310-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "babbd33e85e038cd611aa07b9d2360c0142d10fae251c88b653aa4d02ff8b408",
"md5": "45c9b1f3c997010340a908e06376ecf2",
"sha256": "982fb3bb4ac7947307708c4cf623ee6b2b86054b7807169b4956dcf9ce7c992b"
},
"downloads": -1,
"filename": "log_lammps_reader-0.2.3-cp310-none-win32.whl",
"has_sig": false,
"md5_digest": "45c9b1f3c997010340a908e06376ecf2",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 2741266,
"upload_time": "2024-08-11T16:01:24",
"upload_time_iso_8601": "2024-08-11T16:01:24.969355Z",
"url": "https://files.pythonhosted.org/packages/ba/bb/d33e85e038cd611aa07b9d2360c0142d10fae251c88b653aa4d02ff8b408/log_lammps_reader-0.2.3-cp310-none-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "dc51f60fe46a0e5ae340ace49b30beed3b0f879fc5adcdd463022e368206dd65",
"md5": "20b2dbf73a11fe050e6a0d08b806521e",
"sha256": "f15a68255e92bf57160c1aa24732a7b1b13cc588629ee4d072bebe35a58546d9"
},
"downloads": -1,
"filename": "log_lammps_reader-0.2.3-cp310-none-win_amd64.whl",
"has_sig": false,
"md5_digest": "20b2dbf73a11fe050e6a0d08b806521e",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 3125439,
"upload_time": "2024-08-11T16:01:17",
"upload_time_iso_8601": "2024-08-11T16:01:17.157252Z",
"url": "https://files.pythonhosted.org/packages/dc/51/f60fe46a0e5ae340ace49b30beed3b0f879fc5adcdd463022e368206dd65/log_lammps_reader-0.2.3-cp310-none-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "57fded2b859e90aaea290fc30f3af74a315b2c0465fb155a2368f46bb27c658d",
"md5": "f355054278279cb7b384ae6eabe7fbe8",
"sha256": "ef6c79db0574402d03afa919faaf6b99a017f4b31b7b2a8de5c63cab4b890a91"
},
"downloads": -1,
"filename": "log_lammps_reader-0.2.3-cp311-cp311-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "f355054278279cb7b384ae6eabe7fbe8",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 3209495,
"upload_time": "2024-08-11T16:00:16",
"upload_time_iso_8601": "2024-08-11T16:00:16.591819Z",
"url": "https://files.pythonhosted.org/packages/57/fd/ed2b859e90aaea290fc30f3af74a315b2c0465fb155a2368f46bb27c658d/log_lammps_reader-0.2.3-cp311-cp311-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "081e0167a540f402e3e075bca763e971861d739da6f64b0808100306d8846c93",
"md5": "3332b3dc9f04b19197ff1353f1aaf4d6",
"sha256": "ee4dcae22fc356cd4250955d770c9877fc66c7c10a5c50dec252e7dab80ca990"
},
"downloads": -1,
"filename": "log_lammps_reader-0.2.3-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "3332b3dc9f04b19197ff1353f1aaf4d6",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 3037091,
"upload_time": "2024-08-11T16:00:11",
"upload_time_iso_8601": "2024-08-11T16:00:11.355177Z",
"url": "https://files.pythonhosted.org/packages/08/1e/0167a540f402e3e075bca763e971861d739da6f64b0808100306d8846c93/log_lammps_reader-0.2.3-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "abb3c13af57ff890ff8b6530d428082228de1ac302a7935f9cbce4c2335efa9e",
"md5": "be42ba2a91452e3be4f8067af7093438",
"sha256": "8a8a3aa7ef475f925782ff3896f3d7212700e7b4d30b7f183b832d7fb48f4bcb"
},
"downloads": -1,
"filename": "log_lammps_reader-0.2.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "be42ba2a91452e3be4f8067af7093438",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 3469580,
"upload_time": "2024-08-11T15:59:05",
"upload_time_iso_8601": "2024-08-11T15:59:05.365570Z",
"url": "https://files.pythonhosted.org/packages/ab/b3/c13af57ff890ff8b6530d428082228de1ac302a7935f9cbce4c2335efa9e/log_lammps_reader-0.2.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ef7673d2951613367b2a01f765ad025e0e6a3515dab694ce2d0ce2c94bd63166",
"md5": "026de8ef88769756760a423822dfcb41",
"sha256": "ca1e6486f54700ca5e92959156da40bffeb410382955c4c011106d2312f5d080"
},
"downloads": -1,
"filename": "log_lammps_reader-0.2.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "026de8ef88769756760a423822dfcb41",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 3610698,
"upload_time": "2024-08-11T15:59:20",
"upload_time_iso_8601": "2024-08-11T15:59:20.354211Z",
"url": "https://files.pythonhosted.org/packages/ef/76/73d2951613367b2a01f765ad025e0e6a3515dab694ce2d0ce2c94bd63166/log_lammps_reader-0.2.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0610e65d4c9e29d83b830672bf8c2e36838402de7449b8d0856228c4643bd603",
"md5": "65e0d24a117d6e438086877b5b1c8d65",
"sha256": "d5298698def48cc0ff93902a9b0ad62b7e154fd1c8417694d3c74224e448d4e1"
},
"downloads": -1,
"filename": "log_lammps_reader-0.2.3-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "65e0d24a117d6e438086877b5b1c8d65",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 3870060,
"upload_time": "2024-08-11T15:59:47",
"upload_time_iso_8601": "2024-08-11T15:59:47.835535Z",
"url": "https://files.pythonhosted.org/packages/06/10/e65d4c9e29d83b830672bf8c2e36838402de7449b8d0856228c4643bd603/log_lammps_reader-0.2.3-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "420f24a4b291b5fb80d68edd89155cf12c19b158458b5cacd60a943fb5247228",
"md5": "8d25f4c5b24939da08b9ce2cf18c8622",
"sha256": "38cdacda4cf8f67e3df960f975b930ba57576687c48065fc07481cbf27e3972f"
},
"downloads": -1,
"filename": "log_lammps_reader-0.2.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "8d25f4c5b24939da08b9ce2cf18c8622",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 3862967,
"upload_time": "2024-08-11T15:59:34",
"upload_time_iso_8601": "2024-08-11T15:59:34.001806Z",
"url": "https://files.pythonhosted.org/packages/42/0f/24a4b291b5fb80d68edd89155cf12c19b158458b5cacd60a943fb5247228/log_lammps_reader-0.2.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "14cce6dc0df40a3fa9b1e49d679129882918ddd503da4c914fc9de0d6bd40cd9",
"md5": "f17e5c82a2de5ff6764794a01dabbe82",
"sha256": "a96266af9536f281f3e0a8c763a3406f3949fa4205938659c8bf65c92e861601"
},
"downloads": -1,
"filename": "log_lammps_reader-0.2.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "f17e5c82a2de5ff6764794a01dabbe82",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 3618981,
"upload_time": "2024-08-11T15:59:59",
"upload_time_iso_8601": "2024-08-11T15:59:59.336205Z",
"url": "https://files.pythonhosted.org/packages/14/cc/e6dc0df40a3fa9b1e49d679129882918ddd503da4c914fc9de0d6bd40cd9/log_lammps_reader-0.2.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4d693a566884dab2a6c3af6db3b9ae3dcd3f816ab6f2d64ae859123c4f3400c4",
"md5": "fe288225d45f2e2d2dd641b435e5131b",
"sha256": "95461c5ff656f7c0c3046f76c862f0c5702fc46f6c81f8fa7d1f712c6b965aae"
},
"downloads": -1,
"filename": "log_lammps_reader-0.2.3-cp311-cp311-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "fe288225d45f2e2d2dd641b435e5131b",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 3603728,
"upload_time": "2024-08-11T16:00:20",
"upload_time_iso_8601": "2024-08-11T16:00:20.989971Z",
"url": "https://files.pythonhosted.org/packages/4d/69/3a566884dab2a6c3af6db3b9ae3dcd3f816ab6f2d64ae859123c4f3400c4/log_lammps_reader-0.2.3-cp311-cp311-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "49a9d1a461b53208c533ce9459b9beaafab44ca3c7fafe308d832ca934320ce0",
"md5": "6d4c31ee90f26b5d3a5d50326ff41b9d",
"sha256": "23560756e0a00a76740b9debc43a35cfee23f2c4c075484b968b18eb3b3fe355"
},
"downloads": -1,
"filename": "log_lammps_reader-0.2.3-cp311-cp311-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "6d4c31ee90f26b5d3a5d50326ff41b9d",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 3870982,
"upload_time": "2024-08-11T16:00:36",
"upload_time_iso_8601": "2024-08-11T16:00:36.310027Z",
"url": "https://files.pythonhosted.org/packages/49/a9/d1a461b53208c533ce9459b9beaafab44ca3c7fafe308d832ca934320ce0/log_lammps_reader-0.2.3-cp311-cp311-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9f00306a1973f1f8357bd86d6ca4351f35975403d09fbd34d43f512b259f60b5",
"md5": "5290545704dce493dd6fde769d974219",
"sha256": "7d5a3453c700d7f87908e981ef52abd33fcbee8ce6be22e38b323528c4e6f040"
},
"downloads": -1,
"filename": "log_lammps_reader-0.2.3-cp311-cp311-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "5290545704dce493dd6fde769d974219",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 3876551,
"upload_time": "2024-08-11T16:00:50",
"upload_time_iso_8601": "2024-08-11T16:00:50.720667Z",
"url": "https://files.pythonhosted.org/packages/9f/00/306a1973f1f8357bd86d6ca4351f35975403d09fbd34d43f512b259f60b5/log_lammps_reader-0.2.3-cp311-cp311-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8017d6373c7f234aad2de9633b1f79429d05baacc79b78494273f5ff63bad0fe",
"md5": "0cf2584b6b644d04450be28afc4b266a",
"sha256": "cc08e5298bef130d28bb214c741d78df77f6d919bc11b7d1726834a852158cd2"
},
"downloads": -1,
"filename": "log_lammps_reader-0.2.3-cp311-cp311-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "0cf2584b6b644d04450be28afc4b266a",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 3797182,
"upload_time": "2024-08-11T16:01:04",
"upload_time_iso_8601": "2024-08-11T16:01:04.457516Z",
"url": "https://files.pythonhosted.org/packages/80/17/d6373c7f234aad2de9633b1f79429d05baacc79b78494273f5ff63bad0fe/log_lammps_reader-0.2.3-cp311-cp311-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "37b842780d5b339d9a412e87c520aa9d25323a4388c5db1782fcbb8ac20ae058",
"md5": "59ea06aac4d96eebd6f9c7ce9cea52e6",
"sha256": "95dad0eed1cfcd2cb3a11b121863e7e60ec76bd7e5c22d351f8655f04056d55a"
},
"downloads": -1,
"filename": "log_lammps_reader-0.2.3-cp311-none-win32.whl",
"has_sig": false,
"md5_digest": "59ea06aac4d96eebd6f9c7ce9cea52e6",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 2741076,
"upload_time": "2024-08-11T16:01:26",
"upload_time_iso_8601": "2024-08-11T16:01:26.381322Z",
"url": "https://files.pythonhosted.org/packages/37/b8/42780d5b339d9a412e87c520aa9d25323a4388c5db1782fcbb8ac20ae058/log_lammps_reader-0.2.3-cp311-none-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "db28dcb618a33178fcf77c997084c9a9d8ffdf0f54389f90d80b12ad94fdc35b",
"md5": "080164989131acdddcd1606a2f155c73",
"sha256": "747b33a4ce7b0fbdc6f2d699313f1c13ea67152dbce0b61907ee0315d9dbad97"
},
"downloads": -1,
"filename": "log_lammps_reader-0.2.3-cp311-none-win_amd64.whl",
"has_sig": false,
"md5_digest": "080164989131acdddcd1606a2f155c73",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 3125029,
"upload_time": "2024-08-11T16:01:18",
"upload_time_iso_8601": "2024-08-11T16:01:18.610442Z",
"url": "https://files.pythonhosted.org/packages/db/28/dcb618a33178fcf77c997084c9a9d8ffdf0f54389f90d80b12ad94fdc35b/log_lammps_reader-0.2.3-cp311-none-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "eb3b338fd45f9fec838adc86e0b824f633594fc1d0215fad8317616a68910505",
"md5": "bda9d5b2ad35fba9f1ea06e2f4233d66",
"sha256": "a5aae7a7ee73d134cb8097fa8a3c8c3c955270d3cd0ae43ac2320533ccfc3bbf"
},
"downloads": -1,
"filename": "log_lammps_reader-0.2.3-cp312-cp312-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "bda9d5b2ad35fba9f1ea06e2f4233d66",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 3209708,
"upload_time": "2024-08-11T16:00:17",
"upload_time_iso_8601": "2024-08-11T16:00:17.957469Z",
"url": "https://files.pythonhosted.org/packages/eb/3b/338fd45f9fec838adc86e0b824f633594fc1d0215fad8317616a68910505/log_lammps_reader-0.2.3-cp312-cp312-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1e900f5371e9626b21dc8ada50e5dd64459b1d21f327ce3b3cbcf354c0f75fc2",
"md5": "ce31202efbe8f2037502e535f2cab70d",
"sha256": "c6090ae6a6628167c2da906127e15e45a52c60c849bc4b58420e59b3bcee6d29"
},
"downloads": -1,
"filename": "log_lammps_reader-0.2.3-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "ce31202efbe8f2037502e535f2cab70d",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 3037367,
"upload_time": "2024-08-11T16:00:13",
"upload_time_iso_8601": "2024-08-11T16:00:13.387686Z",
"url": "https://files.pythonhosted.org/packages/1e/90/0f5371e9626b21dc8ada50e5dd64459b1d21f327ce3b3cbcf354c0f75fc2/log_lammps_reader-0.2.3-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "97c58e5755ac7c6b55d4af1cf850d796de22f8db13906c21bd72bf2e4b3be31e",
"md5": "471f4f505a81060d7eb053da521a344c",
"sha256": "9d811ed9b80f9cee22f976cfa28db930647d97d4e871ffaa2ed0263dd4977519"
},
"downloads": -1,
"filename": "log_lammps_reader-0.2.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "471f4f505a81060d7eb053da521a344c",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 3469528,
"upload_time": "2024-08-11T15:59:07",
"upload_time_iso_8601": "2024-08-11T15:59:07.339329Z",
"url": "https://files.pythonhosted.org/packages/97/c5/8e5755ac7c6b55d4af1cf850d796de22f8db13906c21bd72bf2e4b3be31e/log_lammps_reader-0.2.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "de7321a8bc3d2d8adac73c1ca11694fb6e3415a7da28ea1377f009d5dbc98921",
"md5": "7f1d646511181d0293478e3e80029dea",
"sha256": "0e4bad5bc0b898499b75377b0836d79c6d048200fc59c1e58b8bd172c626f97f"
},
"downloads": -1,
"filename": "log_lammps_reader-0.2.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "7f1d646511181d0293478e3e80029dea",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 3610307,
"upload_time": "2024-08-11T15:59:22",
"upload_time_iso_8601": "2024-08-11T15:59:22.411476Z",
"url": "https://files.pythonhosted.org/packages/de/73/21a8bc3d2d8adac73c1ca11694fb6e3415a7da28ea1377f009d5dbc98921/log_lammps_reader-0.2.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8c42857c884cd83e4ca009b1b2c654060bdefb6e1d906efcc89baff7e79b6bc1",
"md5": "fd3d54da271cfff45094aebddb6e6a10",
"sha256": "43a4c150c8065829c3c6e6da8685b21f65a3cb0a3148da6d1c589dd1561bfac1"
},
"downloads": -1,
"filename": "log_lammps_reader-0.2.3-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "fd3d54da271cfff45094aebddb6e6a10",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 3870452,
"upload_time": "2024-08-11T15:59:49",
"upload_time_iso_8601": "2024-08-11T15:59:49.336153Z",
"url": "https://files.pythonhosted.org/packages/8c/42/857c884cd83e4ca009b1b2c654060bdefb6e1d906efcc89baff7e79b6bc1/log_lammps_reader-0.2.3-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a23e785ab9be8779ee3744ae47ce7bffe39830adc4716e8b36d22ff6a5aaf8f5",
"md5": "8ebfcf10d41acbd4032d6014039409a1",
"sha256": "c76ed436be03768a19b9ea744d0c32fd8ced8e2ca4441c866da5b8ac6e0fd61b"
},
"downloads": -1,
"filename": "log_lammps_reader-0.2.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "8ebfcf10d41acbd4032d6014039409a1",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 3862527,
"upload_time": "2024-08-11T15:59:35",
"upload_time_iso_8601": "2024-08-11T15:59:35.360560Z",
"url": "https://files.pythonhosted.org/packages/a2/3e/785ab9be8779ee3744ae47ce7bffe39830adc4716e8b36d22ff6a5aaf8f5/log_lammps_reader-0.2.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "883b346f884a70c76a29952918da5e33d5cf2b973153bf5b6018aca99e89553f",
"md5": "d66c8a38ea5ef84b6ab746b24c69aacb",
"sha256": "34cf484820e7ed91c31f709653c5d0f4b4001299e8f7ce9819b70884e2953d00"
},
"downloads": -1,
"filename": "log_lammps_reader-0.2.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "d66c8a38ea5ef84b6ab746b24c69aacb",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 3619295,
"upload_time": "2024-08-11T16:00:00",
"upload_time_iso_8601": "2024-08-11T16:00:00.951075Z",
"url": "https://files.pythonhosted.org/packages/88/3b/346f884a70c76a29952918da5e33d5cf2b973153bf5b6018aca99e89553f/log_lammps_reader-0.2.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "64d3ea85cda2a00c6742c17d76ccad1564f105aaba2bb108f3dde065fd70f9d9",
"md5": "24faea7ff625e1ebb961da45e7889162",
"sha256": "5f56e10ccf6d2703c35b0f8f98bdbc3f7645d8d8a596c76961dd162c7ccf28be"
},
"downloads": -1,
"filename": "log_lammps_reader-0.2.3-cp312-cp312-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "24faea7ff625e1ebb961da45e7889162",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 3603866,
"upload_time": "2024-08-11T16:00:22",
"upload_time_iso_8601": "2024-08-11T16:00:22.847713Z",
"url": "https://files.pythonhosted.org/packages/64/d3/ea85cda2a00c6742c17d76ccad1564f105aaba2bb108f3dde065fd70f9d9/log_lammps_reader-0.2.3-cp312-cp312-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1c0c23ce13927ba4fea63cbc8d0181486180fe5792d09c218a2d1c7d2fd01785",
"md5": "4b5bc95695131d1229aac373b570e5c8",
"sha256": "052860da97e1178dbed1cc9691be167db4199a28c659c33bbb6916ba852f4831"
},
"downloads": -1,
"filename": "log_lammps_reader-0.2.3-cp312-cp312-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "4b5bc95695131d1229aac373b570e5c8",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 3871313,
"upload_time": "2024-08-11T16:00:38",
"upload_time_iso_8601": "2024-08-11T16:00:38.437318Z",
"url": "https://files.pythonhosted.org/packages/1c/0c/23ce13927ba4fea63cbc8d0181486180fe5792d09c218a2d1c7d2fd01785/log_lammps_reader-0.2.3-cp312-cp312-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2eb4b00423a0c0bb76f9ebd86fa550d7738305a4cf5bff9633548e47d827154f",
"md5": "fec90504b0083755b6d1f597566040f3",
"sha256": "f6a0f6bc079af8fa4ffd69764474329206777705be717c473b8bd4e8b5361408"
},
"downloads": -1,
"filename": "log_lammps_reader-0.2.3-cp312-cp312-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "fec90504b0083755b6d1f597566040f3",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 3876742,
"upload_time": "2024-08-11T16:00:52",
"upload_time_iso_8601": "2024-08-11T16:00:52.706837Z",
"url": "https://files.pythonhosted.org/packages/2e/b4/b00423a0c0bb76f9ebd86fa550d7738305a4cf5bff9633548e47d827154f/log_lammps_reader-0.2.3-cp312-cp312-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ab7142a94b3c57daa6ac1e165a92b656cd80ba4d1ebbeedd7f56dcf0a33c1304",
"md5": "b15955fee7eb13f5d499b5acd32be4ff",
"sha256": "499ce94e26e6f062c24a96ff9bea038fc02229c4980e49a89a14d00c1c562d07"
},
"downloads": -1,
"filename": "log_lammps_reader-0.2.3-cp312-cp312-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "b15955fee7eb13f5d499b5acd32be4ff",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 3795660,
"upload_time": "2024-08-11T16:01:05",
"upload_time_iso_8601": "2024-08-11T16:01:05.927357Z",
"url": "https://files.pythonhosted.org/packages/ab/71/42a94b3c57daa6ac1e165a92b656cd80ba4d1ebbeedd7f56dcf0a33c1304/log_lammps_reader-0.2.3-cp312-cp312-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "301eda81caf3ff6b9389dca34c56faf3de02b58205d5e17e1fdb3f34e48363f6",
"md5": "89159b66d652d8b476c341478720d69d",
"sha256": "2c7d38ef4161924731a4569f3e5c09331553ac2bd86ce417d34d9547b46e197f"
},
"downloads": -1,
"filename": "log_lammps_reader-0.2.3-cp312-none-win32.whl",
"has_sig": false,
"md5_digest": "89159b66d652d8b476c341478720d69d",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 2740893,
"upload_time": "2024-08-11T16:01:28",
"upload_time_iso_8601": "2024-08-11T16:01:28.202798Z",
"url": "https://files.pythonhosted.org/packages/30/1e/da81caf3ff6b9389dca34c56faf3de02b58205d5e17e1fdb3f34e48363f6/log_lammps_reader-0.2.3-cp312-none-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4bb2add3bdfea01bfae1c015a5b830f3dc9f75db4d5ff53793e1f0d53682d9ae",
"md5": "784860d3e753600b3aa01101feb448ef",
"sha256": "d022e0a6c52e90ee150332e3ead0624ed32d33b0893d45147dfed8b7563ef1f8"
},
"downloads": -1,
"filename": "log_lammps_reader-0.2.3-cp312-none-win_amd64.whl",
"has_sig": false,
"md5_digest": "784860d3e753600b3aa01101feb448ef",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 3125323,
"upload_time": "2024-08-11T16:01:20",
"upload_time_iso_8601": "2024-08-11T16:01:20.331294Z",
"url": "https://files.pythonhosted.org/packages/4b/b2/add3bdfea01bfae1c015a5b830f3dc9f75db4d5ff53793e1f0d53682d9ae/log_lammps_reader-0.2.3-cp312-none-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1518fd98c5ffd405a8a5eaf0b9ca31c6069c2b5168e2d4d1e9bc4899499d0f15",
"md5": "59ce42ccc8c41d46e4eb6a3f0468c499",
"sha256": "1578fad14d4d698e5c760d0c6d69ef803414e99201fd16415174140d2c81a9d9"
},
"downloads": -1,
"filename": "log_lammps_reader-0.2.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "59ce42ccc8c41d46e4eb6a3f0468c499",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 3469378,
"upload_time": "2024-08-11T15:59:09",
"upload_time_iso_8601": "2024-08-11T15:59:09.168312Z",
"url": "https://files.pythonhosted.org/packages/15/18/fd98c5ffd405a8a5eaf0b9ca31c6069c2b5168e2d4d1e9bc4899499d0f15/log_lammps_reader-0.2.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "56961903013c8b021bed7f738931e4efaccf3f2e68e97079602398a969f16059",
"md5": "9f00edb691646de37e386f4972ec0de1",
"sha256": "4538ad6a62482dcde6f26b4fa844887613380f8331b788bc84e8e48b4fcf0d0d"
},
"downloads": -1,
"filename": "log_lammps_reader-0.2.3-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "9f00edb691646de37e386f4972ec0de1",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 3610164,
"upload_time": "2024-08-11T15:59:23",
"upload_time_iso_8601": "2024-08-11T15:59:23.871628Z",
"url": "https://files.pythonhosted.org/packages/56/96/1903013c8b021bed7f738931e4efaccf3f2e68e97079602398a969f16059/log_lammps_reader-0.2.3-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "dc874fade8e5aba3c479946f0cebb48489183c59ecc251ca8adfab8ef5d85114",
"md5": "d11662ba872288033fd0cd31a0fc3b8c",
"sha256": "19d2bda74c07ab449117bb16eb0b48d81f700c1387ccfcee494e2f8f3aadf65d"
},
"downloads": -1,
"filename": "log_lammps_reader-0.2.3-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "d11662ba872288033fd0cd31a0fc3b8c",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 3870815,
"upload_time": "2024-08-11T15:59:50",
"upload_time_iso_8601": "2024-08-11T15:59:50.700356Z",
"url": "https://files.pythonhosted.org/packages/dc/87/4fade8e5aba3c479946f0cebb48489183c59ecc251ca8adfab8ef5d85114/log_lammps_reader-0.2.3-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7d9bd6118e65596cc6e74d73b1d30c5b27dbab6d3aeb8de7a7cee3ee455210d2",
"md5": "b7dea2a7a1d0278adc886021c913660a",
"sha256": "b33b2696b961eaf8f88dc4b6e7a584332cb7244000a15916a11f6f31eeb767eb"
},
"downloads": -1,
"filename": "log_lammps_reader-0.2.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "b7dea2a7a1d0278adc886021c913660a",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 3862652,
"upload_time": "2024-08-11T15:59:37",
"upload_time_iso_8601": "2024-08-11T15:59:37.449968Z",
"url": "https://files.pythonhosted.org/packages/7d/9b/d6118e65596cc6e74d73b1d30c5b27dbab6d3aeb8de7a7cee3ee455210d2/log_lammps_reader-0.2.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e8fde59b34af6a3d36fc29b47b0b3e2458daf40f9986f99150c987734ac836fb",
"md5": "850797c7b51949cf82f3eeada114c4d2",
"sha256": "987c08486d799342854835b75323494208cfe2c0adeb110f697f925a5ed86377"
},
"downloads": -1,
"filename": "log_lammps_reader-0.2.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "850797c7b51949cf82f3eeada114c4d2",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 3619033,
"upload_time": "2024-08-11T16:00:02",
"upload_time_iso_8601": "2024-08-11T16:00:02.400547Z",
"url": "https://files.pythonhosted.org/packages/e8/fd/e59b34af6a3d36fc29b47b0b3e2458daf40f9986f99150c987734ac836fb/log_lammps_reader-0.2.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "198a377fcdb29faae8f0b995174b5a593ccaa6e13e8646545d285ab841cdcd41",
"md5": "fe8795500c537e351b7647b15fcb0d81",
"sha256": "2e605e48d3b98ff07928adbfd6ddd51047f4769e7cbaeb9e2f61ec4efcb1b35e"
},
"downloads": -1,
"filename": "log_lammps_reader-0.2.3-cp38-cp38-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "fe8795500c537e351b7647b15fcb0d81",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 3603566,
"upload_time": "2024-08-11T16:00:24",
"upload_time_iso_8601": "2024-08-11T16:00:24.369830Z",
"url": "https://files.pythonhosted.org/packages/19/8a/377fcdb29faae8f0b995174b5a593ccaa6e13e8646545d285ab841cdcd41/log_lammps_reader-0.2.3-cp38-cp38-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "fa2fd76dd6aba703a733976ea02095452255cd7d5feb89276139dcd429a39d8c",
"md5": "df1c0167ae271b23c67fce420304de0b",
"sha256": "d73c279d079201388222ae52c40b0e7cbf8b5da85b3382146fcb55d92ed2c266"
},
"downloads": -1,
"filename": "log_lammps_reader-0.2.3-cp38-cp38-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "df1c0167ae271b23c67fce420304de0b",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 3870738,
"upload_time": "2024-08-11T16:00:39",
"upload_time_iso_8601": "2024-08-11T16:00:39.880585Z",
"url": "https://files.pythonhosted.org/packages/fa/2f/d76dd6aba703a733976ea02095452255cd7d5feb89276139dcd429a39d8c/log_lammps_reader-0.2.3-cp38-cp38-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0d45c40381cabfccb8ed80ef183ad7158c385566a66825d43d88c26223a78557",
"md5": "25248c9fabcd0fa0cea883123bbbca51",
"sha256": "9afa6e82f8b69b13c400dd1e32b7e96ea724c0cc6b69eee3a91c2a42319228b7"
},
"downloads": -1,
"filename": "log_lammps_reader-0.2.3-cp38-cp38-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "25248c9fabcd0fa0cea883123bbbca51",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 3876922,
"upload_time": "2024-08-11T16:00:54",
"upload_time_iso_8601": "2024-08-11T16:00:54.412132Z",
"url": "https://files.pythonhosted.org/packages/0d/45/c40381cabfccb8ed80ef183ad7158c385566a66825d43d88c26223a78557/log_lammps_reader-0.2.3-cp38-cp38-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e971cc78be505c8e8b3979469d721a95b37bb1f1138f830b50cac0ee20bcf800",
"md5": "aef1080713d677b485aabf86087db010",
"sha256": "aeae7f841f2c02edd22b62975604c60ebe1beb772862f3b70784f6860b377cc7"
},
"downloads": -1,
"filename": "log_lammps_reader-0.2.3-cp38-cp38-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "aef1080713d677b485aabf86087db010",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 3796532,
"upload_time": "2024-08-11T16:01:07",
"upload_time_iso_8601": "2024-08-11T16:01:07.670804Z",
"url": "https://files.pythonhosted.org/packages/e9/71/cc78be505c8e8b3979469d721a95b37bb1f1138f830b50cac0ee20bcf800/log_lammps_reader-0.2.3-cp38-cp38-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8aea7fcee54cef98d6ffef78006c48b5a464bbd33933998b48548e2140e16c0c",
"md5": "cdeff87c9e0605398f6ddd7cb29a2726",
"sha256": "8513ea4266a337a5465bd6a456885cc5951fbe4a9be512c1ef4faa58e069619f"
},
"downloads": -1,
"filename": "log_lammps_reader-0.2.3-cp38-none-win32.whl",
"has_sig": false,
"md5_digest": "cdeff87c9e0605398f6ddd7cb29a2726",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 2740936,
"upload_time": "2024-08-11T16:01:29",
"upload_time_iso_8601": "2024-08-11T16:01:29.982934Z",
"url": "https://files.pythonhosted.org/packages/8a/ea/7fcee54cef98d6ffef78006c48b5a464bbd33933998b48548e2140e16c0c/log_lammps_reader-0.2.3-cp38-none-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c9b5ac4d76ae839164466984046c3d837aed95701d557d5d380e2baa5e5dab87",
"md5": "881fa3f4b5a425f9c5c751241a0b6ef2",
"sha256": "be242e64c4e494a1001d25109a56e41e2cc1610e838398306156a1f0194bbf61"
},
"downloads": -1,
"filename": "log_lammps_reader-0.2.3-cp38-none-win_amd64.whl",
"has_sig": false,
"md5_digest": "881fa3f4b5a425f9c5c751241a0b6ef2",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 3124969,
"upload_time": "2024-08-11T16:01:21",
"upload_time_iso_8601": "2024-08-11T16:01:21.835125Z",
"url": "https://files.pythonhosted.org/packages/c9/b5/ac4d76ae839164466984046c3d837aed95701d557d5d380e2baa5e5dab87/log_lammps_reader-0.2.3-cp38-none-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7bd5c4d5add5aefa43e86d01f5ec34981fcb4c7dc7ccd56617740b74a89102f6",
"md5": "4ae9aa2535cc06dd3e0253852be0b9a8",
"sha256": "91ef941ecb673666c80a0a7b9d6cbbbaa845cbfaaf6ec23db3fd6f09fb494626"
},
"downloads": -1,
"filename": "log_lammps_reader-0.2.3-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "4ae9aa2535cc06dd3e0253852be0b9a8",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 3037786,
"upload_time": "2024-08-11T16:00:15",
"upload_time_iso_8601": "2024-08-11T16:00:15.173353Z",
"url": "https://files.pythonhosted.org/packages/7b/d5/c4d5add5aefa43e86d01f5ec34981fcb4c7dc7ccd56617740b74a89102f6/log_lammps_reader-0.2.3-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8b6909341368e1f5696a7efa3e6e589c6d3aa990556483044ca287d3e6eba444",
"md5": "465b431ccd97a9e439413a82bc481167",
"sha256": "978933ff1f8131837a818aabb1c37c12ac9aecaef0f84d3de71859eb78ffe418"
},
"downloads": -1,
"filename": "log_lammps_reader-0.2.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "465b431ccd97a9e439413a82bc481167",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 3470356,
"upload_time": "2024-08-11T15:59:11",
"upload_time_iso_8601": "2024-08-11T15:59:11.073428Z",
"url": "https://files.pythonhosted.org/packages/8b/69/09341368e1f5696a7efa3e6e589c6d3aa990556483044ca287d3e6eba444/log_lammps_reader-0.2.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "90c9158c0227e50887ab0786b47e78a120ab2a10fe29fc8ae8005541b5a56fc5",
"md5": "bc66a913920f904580682bee000ae0d0",
"sha256": "0dc86cd1df72f198e939d2a70f182ee6bc46caf97ac51a502932cff86f38e51b"
},
"downloads": -1,
"filename": "log_lammps_reader-0.2.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "bc66a913920f904580682bee000ae0d0",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 3611008,
"upload_time": "2024-08-11T15:59:25",
"upload_time_iso_8601": "2024-08-11T15:59:25.500425Z",
"url": "https://files.pythonhosted.org/packages/90/c9/158c0227e50887ab0786b47e78a120ab2a10fe29fc8ae8005541b5a56fc5/log_lammps_reader-0.2.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "de20c25775fee5aad29f165f94296c7a852592c3f654ee8d6e9b701d759ef123",
"md5": "e022e3d039646e22362efc2c9cd4b9dd",
"sha256": "d1a8333b1017267f31bd467d18c6ae64a665d8749ebdb627a5151d7faf77b269"
},
"downloads": -1,
"filename": "log_lammps_reader-0.2.3-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "e022e3d039646e22362efc2c9cd4b9dd",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 3870878,
"upload_time": "2024-08-11T15:59:52",
"upload_time_iso_8601": "2024-08-11T15:59:52.178627Z",
"url": "https://files.pythonhosted.org/packages/de/20/c25775fee5aad29f165f94296c7a852592c3f654ee8d6e9b701d759ef123/log_lammps_reader-0.2.3-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "52ec3218f5525b7a2fe72d0f4af34df2a5622db43a4f727bcaa634bc305d08e9",
"md5": "1138b6f179337291b5d8576312452287",
"sha256": "2807d5c296f7abba3d839dce0d9ee84bf4616fcd9c00e5d0a6807e3c4937db39"
},
"downloads": -1,
"filename": "log_lammps_reader-0.2.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "1138b6f179337291b5d8576312452287",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 3862250,
"upload_time": "2024-08-11T15:59:38",
"upload_time_iso_8601": "2024-08-11T15:59:38.994009Z",
"url": "https://files.pythonhosted.org/packages/52/ec/3218f5525b7a2fe72d0f4af34df2a5622db43a4f727bcaa634bc305d08e9/log_lammps_reader-0.2.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e76a643ee9d88fdc34d41c1be2ac2f18dcf5930455678d996f996b4fc9f34750",
"md5": "72cd33f9c021a330a0f2a31a06909f90",
"sha256": "dc9180624941a8ef2d0c211daa8c2a538cc45b48f0cd5be0732d44a3b4392efb"
},
"downloads": -1,
"filename": "log_lammps_reader-0.2.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "72cd33f9c021a330a0f2a31a06909f90",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 3619306,
"upload_time": "2024-08-11T16:00:04",
"upload_time_iso_8601": "2024-08-11T16:00:04.563215Z",
"url": "https://files.pythonhosted.org/packages/e7/6a/643ee9d88fdc34d41c1be2ac2f18dcf5930455678d996f996b4fc9f34750/log_lammps_reader-0.2.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2ffc706f096001f0b7f346a5a1e4639a6c5da583507fa935269decdbde8288cf",
"md5": "c6c6b6970064829584062436ac9bc484",
"sha256": "7158d50e65585c86699356ce4462a18928c7c052de64165fdd2b99c57a35b92b"
},
"downloads": -1,
"filename": "log_lammps_reader-0.2.3-cp39-cp39-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "c6c6b6970064829584062436ac9bc484",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 3604351,
"upload_time": "2024-08-11T16:00:26",
"upload_time_iso_8601": "2024-08-11T16:00:26.377606Z",
"url": "https://files.pythonhosted.org/packages/2f/fc/706f096001f0b7f346a5a1e4639a6c5da583507fa935269decdbde8288cf/log_lammps_reader-0.2.3-cp39-cp39-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "92a9aac971b92e42c9a1f4359f04cffa865c3fe99a23582ceeaca8789a8fc876",
"md5": "0f1d62914ced00fab5e701d881b03af1",
"sha256": "816cc29d5fe1c47113689024c9f507ef2a9f48b4ab250b9205899738c6383327"
},
"downloads": -1,
"filename": "log_lammps_reader-0.2.3-cp39-cp39-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "0f1d62914ced00fab5e701d881b03af1",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 3871619,
"upload_time": "2024-08-11T16:00:41",
"upload_time_iso_8601": "2024-08-11T16:00:41.755265Z",
"url": "https://files.pythonhosted.org/packages/92/a9/aac971b92e42c9a1f4359f04cffa865c3fe99a23582ceeaca8789a8fc876/log_lammps_reader-0.2.3-cp39-cp39-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "eb78cf89b71b30184935b5ca0fd7805c377ce66dbd7f02fed03d66e9243f9c6b",
"md5": "e0f15cdc72bd32ccff9c5c8a08616ab9",
"sha256": "0cd7135f5e5d1eb25afbd8cde53272284e08220b70aaa6808dc97d12f4c9eeab"
},
"downloads": -1,
"filename": "log_lammps_reader-0.2.3-cp39-cp39-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "e0f15cdc72bd32ccff9c5c8a08616ab9",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 3877264,
"upload_time": "2024-08-11T16:00:55",
"upload_time_iso_8601": "2024-08-11T16:00:55.919548Z",
"url": "https://files.pythonhosted.org/packages/eb/78/cf89b71b30184935b5ca0fd7805c377ce66dbd7f02fed03d66e9243f9c6b/log_lammps_reader-0.2.3-cp39-cp39-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "80c143b7818566f741dd3a5872f9f3b0797771a11206b325d3216e9ab83a092e",
"md5": "5120ad5f76dccecee5b729f3cc9ead67",
"sha256": "1b488092a91cc7dd478bb36a008827707a01ef3bd03e2c7ccd2e4e75b28902f3"
},
"downloads": -1,
"filename": "log_lammps_reader-0.2.3-cp39-cp39-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "5120ad5f76dccecee5b729f3cc9ead67",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 3797367,
"upload_time": "2024-08-11T16:01:09",
"upload_time_iso_8601": "2024-08-11T16:01:09.448348Z",
"url": "https://files.pythonhosted.org/packages/80/c1/43b7818566f741dd3a5872f9f3b0797771a11206b325d3216e9ab83a092e/log_lammps_reader-0.2.3-cp39-cp39-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c86a6293ea6c17dae24b43d02f0d5f5bee5b8353ce7b62954a44a87e01f00e7d",
"md5": "a6c981e97fb4e8f9adf98f7b29c5da29",
"sha256": "b4174b265ede3d073c0617d4a8398a05c75fd09053f4acfbb2aa2e90d6c79561"
},
"downloads": -1,
"filename": "log_lammps_reader-0.2.3-cp39-none-win32.whl",
"has_sig": false,
"md5_digest": "a6c981e97fb4e8f9adf98f7b29c5da29",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 2741213,
"upload_time": "2024-08-11T16:01:31",
"upload_time_iso_8601": "2024-08-11T16:01:31.607984Z",
"url": "https://files.pythonhosted.org/packages/c8/6a/6293ea6c17dae24b43d02f0d5f5bee5b8353ce7b62954a44a87e01f00e7d/log_lammps_reader-0.2.3-cp39-none-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3590d96abce74226b5d327312b7a7687472392c346cf4a143397b582bec748c8",
"md5": "cbe502a20aa80bfca8874459fc652d4f",
"sha256": "2b53d7dd1a1aebe056d0a4282d8e73fffbbed99e521fc6a50c153605ece16477"
},
"downloads": -1,
"filename": "log_lammps_reader-0.2.3-cp39-none-win_amd64.whl",
"has_sig": false,
"md5_digest": "cbe502a20aa80bfca8874459fc652d4f",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 3125069,
"upload_time": "2024-08-11T16:01:23",
"upload_time_iso_8601": "2024-08-11T16:01:23.376306Z",
"url": "https://files.pythonhosted.org/packages/35/90/d96abce74226b5d327312b7a7687472392c346cf4a143397b582bec748c8/log_lammps_reader-0.2.3-cp39-none-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "efc4c7b3b4966b74ffbe65bf7dfd0820a89a596495261e74cb14171758579953",
"md5": "5e4613f3415d0c8996f49d6231cac154",
"sha256": "3cfa1f74ef5eb5d37a690e29d4b7ba60e880a599d0349c485f0cd1ac832e2a18"
},
"downloads": -1,
"filename": "log_lammps_reader-0.2.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "5e4613f3415d0c8996f49d6231cac154",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 3471601,
"upload_time": "2024-08-11T15:59:13",
"upload_time_iso_8601": "2024-08-11T15:59:13.054897Z",
"url": "https://files.pythonhosted.org/packages/ef/c4/c7b3b4966b74ffbe65bf7dfd0820a89a596495261e74cb14171758579953/log_lammps_reader-0.2.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b6620522caf6663af998d7560c73b3a09ecd2e339419e9894cee97de58ff67d4",
"md5": "c2b13e856ca79cbdfdafe66aa2ef74f5",
"sha256": "319d93fa56dfc41421b58be22e47fa127a88311a35cfb400816f68dbbab3387c"
},
"downloads": -1,
"filename": "log_lammps_reader-0.2.3-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "c2b13e856ca79cbdfdafe66aa2ef74f5",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 3611092,
"upload_time": "2024-08-11T15:59:27",
"upload_time_iso_8601": "2024-08-11T15:59:27.398453Z",
"url": "https://files.pythonhosted.org/packages/b6/62/0522caf6663af998d7560c73b3a09ecd2e339419e9894cee97de58ff67d4/log_lammps_reader-0.2.3-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "417168d8feb78b463fd38f5723055325c6b396e17dcca16297e5f4f9d82af56a",
"md5": "41e82c08d5df0788ed19f2dcd20ba1cf",
"sha256": "e8623485bbd1b8ade874f52007f603a3125df390939b99d6e44ad9d6e2a9fd80"
},
"downloads": -1,
"filename": "log_lammps_reader-0.2.3-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "41e82c08d5df0788ed19f2dcd20ba1cf",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 3872133,
"upload_time": "2024-08-11T15:59:53",
"upload_time_iso_8601": "2024-08-11T15:59:53.650244Z",
"url": "https://files.pythonhosted.org/packages/41/71/68d8feb78b463fd38f5723055325c6b396e17dcca16297e5f4f9d82af56a/log_lammps_reader-0.2.3-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ff49b9d16d7795b6943917c74fa08d064383e0de7b9850473b7a4a9dda24be11",
"md5": "f313b8f59f2a2d27cd967944d7432ecf",
"sha256": "2c9e9d4327c97c19878f14cba81e4bfbb3f1d5aad04df6b3cc3147cbd06267fd"
},
"downloads": -1,
"filename": "log_lammps_reader-0.2.3-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "f313b8f59f2a2d27cd967944d7432ecf",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 3864391,
"upload_time": "2024-08-11T15:59:41",
"upload_time_iso_8601": "2024-08-11T15:59:41.149723Z",
"url": "https://files.pythonhosted.org/packages/ff/49/b9d16d7795b6943917c74fa08d064383e0de7b9850473b7a4a9dda24be11/log_lammps_reader-0.2.3-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1fbba7f4811abdc6b02757d6d713a389fd7517edf629c06625022ddf1b7c56c7",
"md5": "9d467c3a4d4c90a40fa400e9ed77bf2a",
"sha256": "a94f71aff4a2fcfdb781c01f9984883152cd978b571121c753a1056b58144719"
},
"downloads": -1,
"filename": "log_lammps_reader-0.2.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "9d467c3a4d4c90a40fa400e9ed77bf2a",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 3620104,
"upload_time": "2024-08-11T16:00:06",
"upload_time_iso_8601": "2024-08-11T16:00:06.319773Z",
"url": "https://files.pythonhosted.org/packages/1f/bb/a7f4811abdc6b02757d6d713a389fd7517edf629c06625022ddf1b7c56c7/log_lammps_reader-0.2.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7c719df001a20c89d05188f0dcdd2aef625197b50349fcb56fba7401ed3e3a0f",
"md5": "b80298ab125f9c5a60c23ec6052fb72c",
"sha256": "980869e145850829e3e3442674b50493e4246a12a4f2823810fba96d30a29e2e"
},
"downloads": -1,
"filename": "log_lammps_reader-0.2.3-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "b80298ab125f9c5a60c23ec6052fb72c",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 3605339,
"upload_time": "2024-08-11T16:00:27",
"upload_time_iso_8601": "2024-08-11T16:00:27.889092Z",
"url": "https://files.pythonhosted.org/packages/7c/71/9df001a20c89d05188f0dcdd2aef625197b50349fcb56fba7401ed3e3a0f/log_lammps_reader-0.2.3-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ce94527bc5b4c659b4dfb9845167c2c11debb0163e356b03b54c54f9849e69df",
"md5": "39d3f0cffeed1bc2eb6c661b28de67bf",
"sha256": "106dcae113f02dbefb18c4a2a497a4e6c04bb39aaae1a418adf76d34aede7f28"
},
"downloads": -1,
"filename": "log_lammps_reader-0.2.3-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "39d3f0cffeed1bc2eb6c661b28de67bf",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 3872538,
"upload_time": "2024-08-11T16:00:43",
"upload_time_iso_8601": "2024-08-11T16:00:43.734243Z",
"url": "https://files.pythonhosted.org/packages/ce/94/527bc5b4c659b4dfb9845167c2c11debb0163e356b03b54c54f9849e69df/log_lammps_reader-0.2.3-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e161cdb40eb269c2e87384857c7e41001b7cbde33348258d762848e06b096678",
"md5": "f95ff7754afaa446795c372b1f075a45",
"sha256": "6b0eac2cef8cc27718c28c367609931419fb792e75bd67418eeedb6522f59c79"
},
"downloads": -1,
"filename": "log_lammps_reader-0.2.3-pp310-pypy310_pp73-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "f95ff7754afaa446795c372b1f075a45",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 3878162,
"upload_time": "2024-08-11T16:00:57",
"upload_time_iso_8601": "2024-08-11T16:00:57.304174Z",
"url": "https://files.pythonhosted.org/packages/e1/61/cdb40eb269c2e87384857c7e41001b7cbde33348258d762848e06b096678/log_lammps_reader-0.2.3-pp310-pypy310_pp73-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8a89ab22ba658edeff6ac51068712dbbcb9f423abefbac02e6a850d9f0064e80",
"md5": "d51802178a0ccc72090ebdc09bc308bf",
"sha256": "c5ae12af846a9f48a430d6f5affaa4faad825adc6b729053f605c2c70f86996c"
},
"downloads": -1,
"filename": "log_lammps_reader-0.2.3-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "d51802178a0ccc72090ebdc09bc308bf",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 3797276,
"upload_time": "2024-08-11T16:01:11",
"upload_time_iso_8601": "2024-08-11T16:01:11.374828Z",
"url": "https://files.pythonhosted.org/packages/8a/89/ab22ba658edeff6ac51068712dbbcb9f423abefbac02e6a850d9f0064e80/log_lammps_reader-0.2.3-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "485f74ddcfdcbb2052836859a72d8cb8d03cdf9292bbf98cda02547d72ad6e1c",
"md5": "402aaed05093b22146fb0d3a4b1c7685",
"sha256": "0c399ebf9360dc1c9be63a061d04fd4a86f95290f0434ae8382633fc6c01dd92"
},
"downloads": -1,
"filename": "log_lammps_reader-0.2.3-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "402aaed05093b22146fb0d3a4b1c7685",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.8",
"size": 3471121,
"upload_time": "2024-08-11T15:59:14",
"upload_time_iso_8601": "2024-08-11T15:59:14.893388Z",
"url": "https://files.pythonhosted.org/packages/48/5f/74ddcfdcbb2052836859a72d8cb8d03cdf9292bbf98cda02547d72ad6e1c/log_lammps_reader-0.2.3-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5526ebb4f744414b1f8906f3a7671e1a16441f1ce65b5249a8939bb96161a646",
"md5": "04c7f763f338dd20d258f86c67ad5175",
"sha256": "8467fe690121acc167ee5720095b9ee5269f458ce658cbd5eab20a2504ddcf55"
},
"downloads": -1,
"filename": "log_lammps_reader-0.2.3-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "04c7f763f338dd20d258f86c67ad5175",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.8",
"size": 3610753,
"upload_time": "2024-08-11T15:59:28",
"upload_time_iso_8601": "2024-08-11T15:59:28.763229Z",
"url": "https://files.pythonhosted.org/packages/55/26/ebb4f744414b1f8906f3a7671e1a16441f1ce65b5249a8939bb96161a646/log_lammps_reader-0.2.3-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "40e5f1fd60d20f5c458cc1c5744df61c33ae88a4e1b72e51c389a9e02743ae23",
"md5": "dd9c32ab26aa75fa1d07e8c4ae6dbcf3",
"sha256": "b9f2503d720b6a6f38039e4a73ffb109a597fdfef90859b8320a4a31eb5f5336"
},
"downloads": -1,
"filename": "log_lammps_reader-0.2.3-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "dd9c32ab26aa75fa1d07e8c4ae6dbcf3",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.8",
"size": 3864475,
"upload_time": "2024-08-11T15:59:43",
"upload_time_iso_8601": "2024-08-11T15:59:43.080045Z",
"url": "https://files.pythonhosted.org/packages/40/e5/f1fd60d20f5c458cc1c5744df61c33ae88a4e1b72e51c389a9e02743ae23/log_lammps_reader-0.2.3-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2c16e62e8c2650da7ac86d09ed27038a8f9ba6c512e75d995a629e1c5ffeb032",
"md5": "d493f9d312abc551a459ae1f220394e1",
"sha256": "ae4b3eaf6c38bea9a065c3e210efd7ddefd20fa514b5b41f29042adc19184254"
},
"downloads": -1,
"filename": "log_lammps_reader-0.2.3-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "d493f9d312abc551a459ae1f220394e1",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.8",
"size": 3605038,
"upload_time": "2024-08-11T16:00:29",
"upload_time_iso_8601": "2024-08-11T16:00:29.465919Z",
"url": "https://files.pythonhosted.org/packages/2c/16/e62e8c2650da7ac86d09ed27038a8f9ba6c512e75d995a629e1c5ffeb032/log_lammps_reader-0.2.3-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c42f7e4d9a673ca437e02f93eab2c6d63416d0adf8f26224f470f058ed7fff81",
"md5": "945e5bd940ce9c8afbdaf349db4b6d46",
"sha256": "61fac8c4c8b59b3dfb4ce10194a77b240051bb86ab835b768f5e03af4714018e"
},
"downloads": -1,
"filename": "log_lammps_reader-0.2.3-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "945e5bd940ce9c8afbdaf349db4b6d46",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.8",
"size": 3871695,
"upload_time": "2024-08-11T16:00:45",
"upload_time_iso_8601": "2024-08-11T16:00:45.717739Z",
"url": "https://files.pythonhosted.org/packages/c4/2f/7e4d9a673ca437e02f93eab2c6d63416d0adf8f26224f470f058ed7fff81/log_lammps_reader-0.2.3-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8ed71dcd6cf38f5e621bf6127ce1a06e05c1070733785a309c43235d21bf79f5",
"md5": "3cf4b2059ae556270ff8f462216bfe3e",
"sha256": "45c38d751cd08f4feddb0ba6190ad43ec90e74e77d98ea007e89df8272a6f17e"
},
"downloads": -1,
"filename": "log_lammps_reader-0.2.3-pp38-pypy38_pp73-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "3cf4b2059ae556270ff8f462216bfe3e",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.8",
"size": 3877536,
"upload_time": "2024-08-11T16:00:58",
"upload_time_iso_8601": "2024-08-11T16:00:58.994709Z",
"url": "https://files.pythonhosted.org/packages/8e/d7/1dcd6cf38f5e621bf6127ce1a06e05c1070733785a309c43235d21bf79f5/log_lammps_reader-0.2.3-pp38-pypy38_pp73-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "191969b150923b64a757bf02b6dd61f1b3c582f7bf80eb4fd90660d3f91d8803",
"md5": "156a3b9c5021fae9fba15de10c0dce56",
"sha256": "a2db796440aad9504db8b8b486859fd5777c470825117fd0d79205444ac7baf2"
},
"downloads": -1,
"filename": "log_lammps_reader-0.2.3-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "156a3b9c5021fae9fba15de10c0dce56",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.8",
"size": 3797452,
"upload_time": "2024-08-11T16:01:12",
"upload_time_iso_8601": "2024-08-11T16:01:12.822672Z",
"url": "https://files.pythonhosted.org/packages/19/19/69b150923b64a757bf02b6dd61f1b3c582f7bf80eb4fd90660d3f91d8803/log_lammps_reader-0.2.3-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2822407ff8d9523828449121bbb1637a70d861fa14d2717ba310825454973a38",
"md5": "bf95f4350dff17b19d45592a48a39929",
"sha256": "ba1d83da045bd572d2c4c2b3354154de19351bda6ea8d97f814e6e29a15e47c1"
},
"downloads": -1,
"filename": "log_lammps_reader-0.2.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "bf95f4350dff17b19d45592a48a39929",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 3471479,
"upload_time": "2024-08-11T15:59:16",
"upload_time_iso_8601": "2024-08-11T15:59:16.727442Z",
"url": "https://files.pythonhosted.org/packages/28/22/407ff8d9523828449121bbb1637a70d861fa14d2717ba310825454973a38/log_lammps_reader-0.2.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "fcb1a222a7fc52897acf0716c8643c939b14557f72075913f0791ed433b478cd",
"md5": "1fd904c12f7d9c3bafe21ccf8ae6bff7",
"sha256": "170a9e08d757a5caa4117484cefedbb075956f48b471e8aae31d9160de8e0101"
},
"downloads": -1,
"filename": "log_lammps_reader-0.2.3-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "1fd904c12f7d9c3bafe21ccf8ae6bff7",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 3610856,
"upload_time": "2024-08-11T15:59:30",
"upload_time_iso_8601": "2024-08-11T15:59:30.751598Z",
"url": "https://files.pythonhosted.org/packages/fc/b1/a222a7fc52897acf0716c8643c939b14557f72075913f0791ed433b478cd/log_lammps_reader-0.2.3-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ffef539480fb980cbf2516be34acd71241356c9c90a5715fcf59b8ce994a5b4c",
"md5": "c9afb061e7b6fbfafa23d2a0351886bc",
"sha256": "4d0f862c3ea9cc472dca582601219d9c37cc8d98c52e29a1c9669fd76f7be857"
},
"downloads": -1,
"filename": "log_lammps_reader-0.2.3-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "c9afb061e7b6fbfafa23d2a0351886bc",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 3871322,
"upload_time": "2024-08-11T15:59:55",
"upload_time_iso_8601": "2024-08-11T15:59:55.102561Z",
"url": "https://files.pythonhosted.org/packages/ff/ef/539480fb980cbf2516be34acd71241356c9c90a5715fcf59b8ce994a5b4c/log_lammps_reader-0.2.3-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e3b135bebfb2b86b9d4cf4937dde68e24d21fb092692604b3c862a669c469b2d",
"md5": "643300bf37b6665bea18147e89cf8e5f",
"sha256": "cd9db5a48720728c8e5fbd606ae3aafdd8361f1ec11281490f3822d6f4b78169"
},
"downloads": -1,
"filename": "log_lammps_reader-0.2.3-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "643300bf37b6665bea18147e89cf8e5f",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 3864393,
"upload_time": "2024-08-11T15:59:44",
"upload_time_iso_8601": "2024-08-11T15:59:44.524343Z",
"url": "https://files.pythonhosted.org/packages/e3/b1/35bebfb2b86b9d4cf4937dde68e24d21fb092692604b3c862a669c469b2d/log_lammps_reader-0.2.3-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0e5807a82524797416443a4e7ce82ad4d85d6fa0932bcab1c0b6e60e25a33ae9",
"md5": "a2e44d142f54df2a8cf3979af54798d0",
"sha256": "c5c6b8dd724ce27c2e6aa404d9541ac442a15e3ab433725506e4d3dd3e893693"
},
"downloads": -1,
"filename": "log_lammps_reader-0.2.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "a2e44d142f54df2a8cf3979af54798d0",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 3620136,
"upload_time": "2024-08-11T16:00:08",
"upload_time_iso_8601": "2024-08-11T16:00:08.450525Z",
"url": "https://files.pythonhosted.org/packages/0e/58/07a82524797416443a4e7ce82ad4d85d6fa0932bcab1c0b6e60e25a33ae9/log_lammps_reader-0.2.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7f7a7a5612b58fb89c6a4311bc7d0bda52b84895c70f275ac582457837037b68",
"md5": "d39eaf2fe275bc976713dc876d5920b4",
"sha256": "9128d487f2ab28ce4db908a6d0341e293818f6a6ecbfb358018195a569288289"
},
"downloads": -1,
"filename": "log_lammps_reader-0.2.3-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "d39eaf2fe275bc976713dc876d5920b4",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 3604787,
"upload_time": "2024-08-11T16:00:31",
"upload_time_iso_8601": "2024-08-11T16:00:31.961086Z",
"url": "https://files.pythonhosted.org/packages/7f/7a/7a5612b58fb89c6a4311bc7d0bda52b84895c70f275ac582457837037b68/log_lammps_reader-0.2.3-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "78a25b13bee16e01d52b962fd809013e08a409b8aeff10f6dcb8a74731d091bf",
"md5": "762186bc1e60b20189c8a77f7ce63fe8",
"sha256": "482d2661389a606b037fb69f18834bc6a51ab19f515bd10b2e2a9efdd16dda59"
},
"downloads": -1,
"filename": "log_lammps_reader-0.2.3-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "762186bc1e60b20189c8a77f7ce63fe8",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 3871959,
"upload_time": "2024-08-11T16:00:47",
"upload_time_iso_8601": "2024-08-11T16:00:47.546680Z",
"url": "https://files.pythonhosted.org/packages/78/a2/5b13bee16e01d52b962fd809013e08a409b8aeff10f6dcb8a74731d091bf/log_lammps_reader-0.2.3-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3fd251d97d5e1d1599e638289a5267464d8c604954ab51252a95201e455e3bd2",
"md5": "fd10bf58b5814c7265c2590f8894a3a8",
"sha256": "b742ac5f44f8da081f576296250588f8ccf3e59c8961eba3772e9b7a56cf15a4"
},
"downloads": -1,
"filename": "log_lammps_reader-0.2.3-pp39-pypy39_pp73-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "fd10bf58b5814c7265c2590f8894a3a8",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 3877428,
"upload_time": "2024-08-11T16:01:00",
"upload_time_iso_8601": "2024-08-11T16:01:00.873933Z",
"url": "https://files.pythonhosted.org/packages/3f/d2/51d97d5e1d1599e638289a5267464d8c604954ab51252a95201e455e3bd2/log_lammps_reader-0.2.3-pp39-pypy39_pp73-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "244b39c5747b028d7eab7a36bc56874c436025babf1ee2e67e94bde363b260de",
"md5": "13a2c5a3d815b2ffca57992feeed853e",
"sha256": "7a111c22db985741b84c479fb7e1f054c6d44c9c48a676f1351b2e516589b5a4"
},
"downloads": -1,
"filename": "log_lammps_reader-0.2.3-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "13a2c5a3d815b2ffca57992feeed853e",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 3797715,
"upload_time": "2024-08-11T16:01:14",
"upload_time_iso_8601": "2024-08-11T16:01:14.360873Z",
"url": "https://files.pythonhosted.org/packages/24/4b/39c5747b028d7eab7a36bc56874c436025babf1ee2e67e94bde363b260de/log_lammps_reader-0.2.3-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7bcbfa1a7cda3ada2f2cf052f21629bf51b8424048d1ed57d371f58c0727138b",
"md5": "7db92248f0197c53cb8f64636aed2996",
"sha256": "ec9621647afa2cb9f619d6623d802b212b78877cfd576ce84fc8119f0870b16e"
},
"downloads": -1,
"filename": "log_lammps_reader-0.2.3.tar.gz",
"has_sig": false,
"md5_digest": "7db92248f0197c53cb8f64636aed2996",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.8",
"size": 19589,
"upload_time": "2024-08-11T16:01:15",
"upload_time_iso_8601": "2024-08-11T16:01:15.760611Z",
"url": "https://files.pythonhosted.org/packages/7b/cb/fa1a7cda3ada2f2cf052f21629bf51b8424048d1ed57d371f58c0727138b/log_lammps_reader-0.2.3.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-08-11 16:01:15",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "GeordyJ",
"github_project": "log_lammps_reader",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "log-lammps-reader"
}