# 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
- 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:
```bash
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`.
```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 API
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 required_thermo_run_id = Some(1);
match LogLammpsReader::new(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:
```bash
pip install maturin # or use conda or micromamba
```
2. Clone the repository
```bash
git clone https://github.com/GeordyJ/log_lammps_reader.git && cd log_lammps_reader
```
3. 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/04/29/97587bf9fb791e92b467fe2800797182e9fa5f06f49addf11da6745fbe64/log_lammps_reader-0.3.2.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- Easily convert DataFrame into other formats like json, csv, parquet etc using polars\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 (e.g 'fix ...')\n- Compiled code ensures that it does not any other dependencies at execution.\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 `required_thermo_run_id = 0` gives the first data output which might include the minimization run.\n- To exclude minimization data, start with `required_thermo_run_id = 1`.\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 API\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 required_thermo_run_id = Some(1);\n\n\n match LogLammpsReader::new(log_file_name.into(), required_thermo_run_id) {\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. Clone the repository\n\n ```bash\n git clone https://github.com/GeordyJ/log_lammps_reader.git && cd log_lammps_reader\n ```\n\n3. 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.3.2",
"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": "73d4c547326365c39b53e1ee62cae9dccaeac6146f6bd694277d8f8d77c79180",
"md5": "784a32bca191902658b86b6667059033",
"sha256": "067774f50759e2b58c7502858caaa38bd11c4702f0e812a7ad14d61096b889f6"
},
"downloads": -1,
"filename": "log_lammps_reader-0.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "784a32bca191902658b86b6667059033",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 3980229,
"upload_time": "2025-02-09T22:47:11",
"upload_time_iso_8601": "2025-02-09T22:47:11.283913Z",
"url": "https://files.pythonhosted.org/packages/73/d4/c547326365c39b53e1ee62cae9dccaeac6146f6bd694277d8f8d77c79180/log_lammps_reader-0.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7a6c20a535f01c9fcb4721a3d1dd04bb9a504536ec71e1469ade6251f844c01a",
"md5": "746336153c99f09175829d8df47566a5",
"sha256": "a0e1e26becc4987caedf8e4c928824be1db8c7d4f066eac42ca321bed9ed3d66"
},
"downloads": -1,
"filename": "log_lammps_reader-0.3.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "746336153c99f09175829d8df47566a5",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 4192598,
"upload_time": "2025-02-09T22:47:35",
"upload_time_iso_8601": "2025-02-09T22:47:35.505263Z",
"url": "https://files.pythonhosted.org/packages/7a/6c/20a535f01c9fcb4721a3d1dd04bb9a504536ec71e1469ade6251f844c01a/log_lammps_reader-0.3.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a6cf8f5e8fead4d9ddcc36218885a8e1493387274a32155ce71f57fb97197e7c",
"md5": "6cb2a6ac828d839b3810d955b5aab35e",
"sha256": "176870b4f417ac906d5ed026f654026743bb4252af1e984b066c7a02c1787faa"
},
"downloads": -1,
"filename": "log_lammps_reader-0.3.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "6cb2a6ac828d839b3810d955b5aab35e",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 4622597,
"upload_time": "2025-02-09T22:48:22",
"upload_time_iso_8601": "2025-02-09T22:48:22.607034Z",
"url": "https://files.pythonhosted.org/packages/a6/cf/8f5e8fead4d9ddcc36218885a8e1493387274a32155ce71f57fb97197e7c/log_lammps_reader-0.3.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "cbf41e0a15cbb3bbe1b7a926e403bbee5dd7bbfe33cbafcdaf2088963ff6c89c",
"md5": "dd0755d4494a0ce3c404a1f06493ec07",
"sha256": "2e5978129b7860e27db04ea872ecac6437d3cd80724a27c95879b2beeb5ce8ae"
},
"downloads": -1,
"filename": "log_lammps_reader-0.3.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "dd0755d4494a0ce3c404a1f06493ec07",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 4519107,
"upload_time": "2025-02-09T22:48:01",
"upload_time_iso_8601": "2025-02-09T22:48:01.043333Z",
"url": "https://files.pythonhosted.org/packages/cb/f4/1e0a15cbb3bbe1b7a926e403bbee5dd7bbfe33cbafcdaf2088963ff6c89c/log_lammps_reader-0.3.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8811a6462fd51893636e0b06b962f89f169fa1506eb6c03d2c1ed47033fdd136",
"md5": "af5d6713ffd4686dca5747f6577b9747",
"sha256": "d4df2edf4e2bcdea6df3019e1b44191fe80a095e023543458aa305977bc93065"
},
"downloads": -1,
"filename": "log_lammps_reader-0.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "af5d6713ffd4686dca5747f6577b9747",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 4244181,
"upload_time": "2025-02-09T22:48:40",
"upload_time_iso_8601": "2025-02-09T22:48:40.930708Z",
"url": "https://files.pythonhosted.org/packages/88/11/a6462fd51893636e0b06b962f89f169fa1506eb6c03d2c1ed47033fdd136/log_lammps_reader-0.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4c161f545757e845b5c56082f2048746d881466bae18384c2838386801eb6dee",
"md5": "99d3bebf662136b07b9358caa845f0f4",
"sha256": "8937df526d85b3b8724ea4e0d572323e46fa4a113e84e69ef174c934c0da23a6"
},
"downloads": -1,
"filename": "log_lammps_reader-0.3.2-cp310-cp310-win32.whl",
"has_sig": false,
"md5_digest": "99d3bebf662136b07b9358caa845f0f4",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 3322242,
"upload_time": "2025-02-09T22:49:29",
"upload_time_iso_8601": "2025-02-09T22:49:29.231227Z",
"url": "https://files.pythonhosted.org/packages/4c/16/1f545757e845b5c56082f2048746d881466bae18384c2838386801eb6dee/log_lammps_reader-0.3.2-cp310-cp310-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "02a2fb1ef52d8c7a1af07dc18f2b6ae73466c30855031cd62b73c79bce04ea39",
"md5": "1f8daf92bd50d18dd32ed62d46aa7d63",
"sha256": "90b072f62bcfa00dc1e5ad0137cf6a75f96cfa3e4a6ede626a3713949dc1d1a1"
},
"downloads": -1,
"filename": "log_lammps_reader-0.3.2-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "1f8daf92bd50d18dd32ed62d46aa7d63",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 3665959,
"upload_time": "2025-02-09T22:49:15",
"upload_time_iso_8601": "2025-02-09T22:49:15.157438Z",
"url": "https://files.pythonhosted.org/packages/02/a2/fb1ef52d8c7a1af07dc18f2b6ae73466c30855031cd62b73c79bce04ea39/log_lammps_reader-0.3.2-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "678bb975eba1fb9bda9774daf7619c820fcfb051e8e8bc76ac12a5e931d87cab",
"md5": "74dc6897eada814e3a93c49e3b8e8d1a",
"sha256": "7a23fbe98869befa87e0a84688b279a1742f1e97d2db098062a49c0a338f8633"
},
"downloads": -1,
"filename": "log_lammps_reader-0.3.2-cp311-cp311-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "74dc6897eada814e3a93c49e3b8e8d1a",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 3868436,
"upload_time": "2025-02-09T22:49:04",
"upload_time_iso_8601": "2025-02-09T22:49:04.326025Z",
"url": "https://files.pythonhosted.org/packages/67/8b/b975eba1fb9bda9774daf7619c820fcfb051e8e8bc76ac12a5e931d87cab/log_lammps_reader-0.3.2-cp311-cp311-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d52dd48a7cf3682704883dc7093a537fd9aad3756b0c22da73de83df20507b77",
"md5": "00fa14bee75725f34fbf791705a9f44b",
"sha256": "c43a296192456d9f52bfa94ab2ca6647085d05ecdfd212d7b3fc95696b44cf93"
},
"downloads": -1,
"filename": "log_lammps_reader-0.3.2-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "00fa14bee75725f34fbf791705a9f44b",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 3611517,
"upload_time": "2025-02-09T22:48:57",
"upload_time_iso_8601": "2025-02-09T22:48:57.382883Z",
"url": "https://files.pythonhosted.org/packages/d5/2d/d48a7cf3682704883dc7093a537fd9aad3756b0c22da73de83df20507b77/log_lammps_reader-0.3.2-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0fea230e487e58bb2a369703861b11bcd40f23796ade36ad0c21ae31c8ed88b3",
"md5": "7eb0e2b8383e3833358f65f965b2e45d",
"sha256": "c5d9d4cbacf51c973db2056d08877c2c1492ae2cfc40cc23c034a7a438350a7b"
},
"downloads": -1,
"filename": "log_lammps_reader-0.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "7eb0e2b8383e3833358f65f965b2e45d",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 3979917,
"upload_time": "2025-02-09T22:47:14",
"upload_time_iso_8601": "2025-02-09T22:47:14.428510Z",
"url": "https://files.pythonhosted.org/packages/0f/ea/230e487e58bb2a369703861b11bcd40f23796ade36ad0c21ae31c8ed88b3/log_lammps_reader-0.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1949cc02c988ef79108e36738a5f71aac5147e7c4f6de0bd65695205d80c058d",
"md5": "84ed9d879112c245b7f732fecb899beb",
"sha256": "d22a98410e6e5d34a3bba45406da7e4f152b98673e4b5139ba3edc9adbbf5d0b"
},
"downloads": -1,
"filename": "log_lammps_reader-0.3.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "84ed9d879112c245b7f732fecb899beb",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 4192607,
"upload_time": "2025-02-09T22:47:39",
"upload_time_iso_8601": "2025-02-09T22:47:39.205927Z",
"url": "https://files.pythonhosted.org/packages/19/49/cc02c988ef79108e36738a5f71aac5147e7c4f6de0bd65695205d80c058d/log_lammps_reader-0.3.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "20d959e86eaac6560a9ba209e263728db8419b02d558e98200c497b9d4d697b5",
"md5": "1c8112a2a00d2a1ad83eb0d91fc9ee13",
"sha256": "059112df1ad4b51c9ee34ad0a1aa91cb39b9b3c2ab253ac9b003cef7eb9a4033"
},
"downloads": -1,
"filename": "log_lammps_reader-0.3.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "1c8112a2a00d2a1ad83eb0d91fc9ee13",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 4622311,
"upload_time": "2025-02-09T22:48:25",
"upload_time_iso_8601": "2025-02-09T22:48:25.540113Z",
"url": "https://files.pythonhosted.org/packages/20/d9/59e86eaac6560a9ba209e263728db8419b02d558e98200c497b9d4d697b5/log_lammps_reader-0.3.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8f5e5d8a2ad76b9e9e71171d0c1bfe180d6ffa81797f3e702e6e28dc46b32c56",
"md5": "34693c6cb2ac9215a03567e8cfdb6383",
"sha256": "b211b3e84596e6eb83ad1038ee7e29755017ca042cd7ef2d1cecf1fcb0273bac"
},
"downloads": -1,
"filename": "log_lammps_reader-0.3.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "34693c6cb2ac9215a03567e8cfdb6383",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 4518998,
"upload_time": "2025-02-09T22:48:03",
"upload_time_iso_8601": "2025-02-09T22:48:03.188496Z",
"url": "https://files.pythonhosted.org/packages/8f/5e/5d8a2ad76b9e9e71171d0c1bfe180d6ffa81797f3e702e6e28dc46b32c56/log_lammps_reader-0.3.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3e34a0cb008ec911c708acaeed7abcdb90c813081cfe70105eb97d7fe083a44d",
"md5": "0de320dd8614525aee6505968f112dcf",
"sha256": "b1e05f080711f76ec346987d8c5a502f59c01474506a3ef82836a12a1d3272aa"
},
"downloads": -1,
"filename": "log_lammps_reader-0.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "0de320dd8614525aee6505968f112dcf",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 4243890,
"upload_time": "2025-02-09T22:48:43",
"upload_time_iso_8601": "2025-02-09T22:48:43.091097Z",
"url": "https://files.pythonhosted.org/packages/3e/34/a0cb008ec911c708acaeed7abcdb90c813081cfe70105eb97d7fe083a44d/log_lammps_reader-0.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "60f9c1cae18a12980c497870665de52f7c5bba70f5d919b0560581c4b73c4dce",
"md5": "8b20bb9aeb1d9ed204719206d2aa1688",
"sha256": "28cfa4e31fd661ca80dfe283df4bc734d7b2e6c9f7ea8c483e998269632fb8aa"
},
"downloads": -1,
"filename": "log_lammps_reader-0.3.2-cp311-cp311-win32.whl",
"has_sig": false,
"md5_digest": "8b20bb9aeb1d9ed204719206d2aa1688",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 3321978,
"upload_time": "2025-02-09T22:49:31",
"upload_time_iso_8601": "2025-02-09T22:49:31.768078Z",
"url": "https://files.pythonhosted.org/packages/60/f9/c1cae18a12980c497870665de52f7c5bba70f5d919b0560581c4b73c4dce/log_lammps_reader-0.3.2-cp311-cp311-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e58841db565b64f8d33965272371843aa9cb947fea5a3fe7856730a672da0dbe",
"md5": "2062b9682445d548a05f20d70793ea59",
"sha256": "4ab9c7d96702e0449fa87d576f7fa9351edad414a88e72a91068efa6b28cb2d7"
},
"downloads": -1,
"filename": "log_lammps_reader-0.3.2-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "2062b9682445d548a05f20d70793ea59",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 3665782,
"upload_time": "2025-02-09T22:49:17",
"upload_time_iso_8601": "2025-02-09T22:49:17.986208Z",
"url": "https://files.pythonhosted.org/packages/e5/88/41db565b64f8d33965272371843aa9cb947fea5a3fe7856730a672da0dbe/log_lammps_reader-0.3.2-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3df176105925123ccf1b9dd08e15be5ad0c1f20d1229a063a42d31fbb9a2a886",
"md5": "bfadb7a4486d7334b98924649a96539c",
"sha256": "9cd10f3910f4f0df2b82338907f9b1fe2172007ae752573f382c4f52c55e8cbc"
},
"downloads": -1,
"filename": "log_lammps_reader-0.3.2-cp312-cp312-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "bfadb7a4486d7334b98924649a96539c",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 3864958,
"upload_time": "2025-02-09T22:49:08",
"upload_time_iso_8601": "2025-02-09T22:49:08.334241Z",
"url": "https://files.pythonhosted.org/packages/3d/f1/76105925123ccf1b9dd08e15be5ad0c1f20d1229a063a42d31fbb9a2a886/log_lammps_reader-0.3.2-cp312-cp312-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ca826292ea7581a9416fef80fed179f5d5eac3fab235e44e43d666f0a9a581a5",
"md5": "274676c46ba5583a8df91fb9394703fb",
"sha256": "acf8155163026b74fd6361eb65d8d2066c6f105a87fa658e7bcb5ac761c539ba"
},
"downloads": -1,
"filename": "log_lammps_reader-0.3.2-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "274676c46ba5583a8df91fb9394703fb",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 3609369,
"upload_time": "2025-02-09T22:48:59",
"upload_time_iso_8601": "2025-02-09T22:48:59.341825Z",
"url": "https://files.pythonhosted.org/packages/ca/82/6292ea7581a9416fef80fed179f5d5eac3fab235e44e43d666f0a9a581a5/log_lammps_reader-0.3.2-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a21128ae3d1f9ead1617ba3f4d54e42a1dcd6639cf01aca4df84ad6a97a64873",
"md5": "28d91278728da31b8465abdc09f5a3cd",
"sha256": "5fec310eec3e198186ff46ed3f82466eab28ac02de8b940db6bffb8fd7f12d93"
},
"downloads": -1,
"filename": "log_lammps_reader-0.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "28d91278728da31b8465abdc09f5a3cd",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 3979099,
"upload_time": "2025-02-09T22:47:17",
"upload_time_iso_8601": "2025-02-09T22:47:17.332038Z",
"url": "https://files.pythonhosted.org/packages/a2/11/28ae3d1f9ead1617ba3f4d54e42a1dcd6639cf01aca4df84ad6a97a64873/log_lammps_reader-0.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "df2806af70f1ea7ac25220dd123eeb660dd61c59f38b69a539580da9c1322ac3",
"md5": "8b6283aa827274d6d5485dae888102e0",
"sha256": "6548cb75abfa231f59d0fd373ed18952f3f911e27f714e8ff68c2b8f5f61a024"
},
"downloads": -1,
"filename": "log_lammps_reader-0.3.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "8b6283aa827274d6d5485dae888102e0",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 4192973,
"upload_time": "2025-02-09T22:47:42",
"upload_time_iso_8601": "2025-02-09T22:47:42.687862Z",
"url": "https://files.pythonhosted.org/packages/df/28/06af70f1ea7ac25220dd123eeb660dd61c59f38b69a539580da9c1322ac3/log_lammps_reader-0.3.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8a3389dc18aa093019dbdb04b089a37ee14346b9bf7f2c5f5e4998e41240fa62",
"md5": "a9c41949d51aca8df1d0957e18aa0b10",
"sha256": "342bda679c56b1f5200adbe3a34d71b671be8ede19abfe3d6fca926a89d10320"
},
"downloads": -1,
"filename": "log_lammps_reader-0.3.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "a9c41949d51aca8df1d0957e18aa0b10",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 4622397,
"upload_time": "2025-02-09T22:48:27",
"upload_time_iso_8601": "2025-02-09T22:48:27.789435Z",
"url": "https://files.pythonhosted.org/packages/8a/33/89dc18aa093019dbdb04b089a37ee14346b9bf7f2c5f5e4998e41240fa62/log_lammps_reader-0.3.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f6eaaee3286e16dd280a79011bbddda9fc0d6d353b389dbad7d4a336e7adf0fe",
"md5": "95fac55eefa216cd93611d41b1b861da",
"sha256": "d8c397d32458395d468783446492fb3c9afab99fc1b3491d3983b5746a90ede9"
},
"downloads": -1,
"filename": "log_lammps_reader-0.3.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "95fac55eefa216cd93611d41b1b861da",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 4516584,
"upload_time": "2025-02-09T22:48:05",
"upload_time_iso_8601": "2025-02-09T22:48:05.396378Z",
"url": "https://files.pythonhosted.org/packages/f6/ea/aee3286e16dd280a79011bbddda9fc0d6d353b389dbad7d4a336e7adf0fe/log_lammps_reader-0.3.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "bfefeb4e32da5c7665c74b3cc0379853d351271006fb026ad855cf5cc6d80cc8",
"md5": "4baae9c8f7e057d40409f5eb131fb4bc",
"sha256": "31df4eb92ab6d0dc41f6152b75766fe6b048bb69915e8485d04b1b88fdf586b1"
},
"downloads": -1,
"filename": "log_lammps_reader-0.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "4baae9c8f7e057d40409f5eb131fb4bc",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 4244416,
"upload_time": "2025-02-09T22:48:45",
"upload_time_iso_8601": "2025-02-09T22:48:45.394810Z",
"url": "https://files.pythonhosted.org/packages/bf/ef/eb4e32da5c7665c74b3cc0379853d351271006fb026ad855cf5cc6d80cc8/log_lammps_reader-0.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "39812c3c7263e01d6898d639ce34366e9cd0f1e2258f9d260b0c87a054edaadf",
"md5": "32d09261b22c856298ee8110ee8167d1",
"sha256": "578e640880f34a619907c7c9c8896df4685e8743ec00cccf1019a4b326a9c5d4"
},
"downloads": -1,
"filename": "log_lammps_reader-0.3.2-cp312-cp312-win32.whl",
"has_sig": false,
"md5_digest": "32d09261b22c856298ee8110ee8167d1",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 3321945,
"upload_time": "2025-02-09T22:49:33",
"upload_time_iso_8601": "2025-02-09T22:49:33.856299Z",
"url": "https://files.pythonhosted.org/packages/39/81/2c3c7263e01d6898d639ce34366e9cd0f1e2258f9d260b0c87a054edaadf/log_lammps_reader-0.3.2-cp312-cp312-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "681ee19bcc91cdfe67724dafa5e59d0cb14dd077c6708c146d24118eba4a7222",
"md5": "c75776ab84ba4c93620617da8bfd6d77",
"sha256": "4bba1b3d1dbe1a8b09b1b2f74b5c5b2127019929ce6e0678952db6f3fe3fe381"
},
"downloads": -1,
"filename": "log_lammps_reader-0.3.2-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "c75776ab84ba4c93620617da8bfd6d77",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 3665588,
"upload_time": "2025-02-09T22:49:20",
"upload_time_iso_8601": "2025-02-09T22:49:20.093045Z",
"url": "https://files.pythonhosted.org/packages/68/1e/e19bcc91cdfe67724dafa5e59d0cb14dd077c6708c146d24118eba4a7222/log_lammps_reader-0.3.2-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c8a6cc34439271635e9d55354e9f2e47c193f441e688e4e2fdce6b47dbc7aba6",
"md5": "107d130cf8eb722cef0c4c674894a0e9",
"sha256": "64dce52e131109da60b72ae7cf1b67194dc964631ff2129c8cf3f758611d15ba"
},
"downloads": -1,
"filename": "log_lammps_reader-0.3.2-cp313-cp313-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "107d130cf8eb722cef0c4c674894a0e9",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 3865020,
"upload_time": "2025-02-09T22:49:11",
"upload_time_iso_8601": "2025-02-09T22:49:11.236295Z",
"url": "https://files.pythonhosted.org/packages/c8/a6/cc34439271635e9d55354e9f2e47c193f441e688e4e2fdce6b47dbc7aba6/log_lammps_reader-0.3.2-cp313-cp313-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "097814b5facc5df6f662683af94b9bc1342db897a837ee6c15771bdd5c67809c",
"md5": "b3a24e0e1feead7f0ba02733e4bbbcde",
"sha256": "e5544d60cf1bac6533a4ddc1c2a0a94fae9deb81d3b340b11181801a6e393da4"
},
"downloads": -1,
"filename": "log_lammps_reader-0.3.2-cp313-cp313-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "b3a24e0e1feead7f0ba02733e4bbbcde",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 3609433,
"upload_time": "2025-02-09T22:49:01",
"upload_time_iso_8601": "2025-02-09T22:49:01.284045Z",
"url": "https://files.pythonhosted.org/packages/09/78/14b5facc5df6f662683af94b9bc1342db897a837ee6c15771bdd5c67809c/log_lammps_reader-0.3.2-cp313-cp313-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8912c38d502b2747be07c9bf57b71acc16b73d84479eb5c02eb14ac678734c2e",
"md5": "c083e4b636d55a8d4ab8651a6f85fc8a",
"sha256": "219c52f0d2395345646be6300b5b4212ebf5bad8893488eb5f6b247164ac190a"
},
"downloads": -1,
"filename": "log_lammps_reader-0.3.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "c083e4b636d55a8d4ab8651a6f85fc8a",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 3978753,
"upload_time": "2025-02-09T22:47:19",
"upload_time_iso_8601": "2025-02-09T22:47:19.988039Z",
"url": "https://files.pythonhosted.org/packages/89/12/c38d502b2747be07c9bf57b71acc16b73d84479eb5c02eb14ac678734c2e/log_lammps_reader-0.3.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3b437d6dbcd1f4422c9af467abadd3876f35adf92025375e5af91160934676a7",
"md5": "6f497bc9138f44e9aef9c49474750d23",
"sha256": "282b5832eacb84b886eef51226fc17b3bbff7f4518073c577208d4e057263164"
},
"downloads": -1,
"filename": "log_lammps_reader-0.3.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "6f497bc9138f44e9aef9c49474750d23",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 4192300,
"upload_time": "2025-02-09T22:47:45",
"upload_time_iso_8601": "2025-02-09T22:47:45.560926Z",
"url": "https://files.pythonhosted.org/packages/3b/43/7d6dbcd1f4422c9af467abadd3876f35adf92025375e5af91160934676a7/log_lammps_reader-0.3.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "718982ffac3c4b3769c3100a1b635714a480fb5f73b4b6ddd3ee62e92c68f9c1",
"md5": "c5c9f024c0df8b864b9efcfdf8746c5d",
"sha256": "4a18b1e4cd8c5cd18f53973863679c2252c03f77121fc47129602941df72c210"
},
"downloads": -1,
"filename": "log_lammps_reader-0.3.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "c5c9f024c0df8b864b9efcfdf8746c5d",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 4621743,
"upload_time": "2025-02-09T22:48:29",
"upload_time_iso_8601": "2025-02-09T22:48:29.763633Z",
"url": "https://files.pythonhosted.org/packages/71/89/82ffac3c4b3769c3100a1b635714a480fb5f73b4b6ddd3ee62e92c68f9c1/log_lammps_reader-0.3.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a10fbd502077a8c4f1fa248a886f3dce9e7f822166a561471cb7fa587fe81ef4",
"md5": "35ef547ae2d40daf829124f164ea9226",
"sha256": "f88ff3ca95248953c5e0dc4b97d0ac87622bb72566f73e9ca9cb4468d40cb661"
},
"downloads": -1,
"filename": "log_lammps_reader-0.3.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "35ef547ae2d40daf829124f164ea9226",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 4516614,
"upload_time": "2025-02-09T22:48:07",
"upload_time_iso_8601": "2025-02-09T22:48:07.485307Z",
"url": "https://files.pythonhosted.org/packages/a1/0f/bd502077a8c4f1fa248a886f3dce9e7f822166a561471cb7fa587fe81ef4/log_lammps_reader-0.3.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2902c106b73482f5437f76dcc6e2b15331f628755f27d87a3af583a2ab7e6522",
"md5": "23d20d3259c3e747c3a19468a870483e",
"sha256": "49856df3f441bd30e21d44dc49f602342b03a030952377a0541deb9eaf45cf00"
},
"downloads": -1,
"filename": "log_lammps_reader-0.3.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "23d20d3259c3e747c3a19468a870483e",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 4244504,
"upload_time": "2025-02-09T22:48:48",
"upload_time_iso_8601": "2025-02-09T22:48:48.155049Z",
"url": "https://files.pythonhosted.org/packages/29/02/c106b73482f5437f76dcc6e2b15331f628755f27d87a3af583a2ab7e6522/log_lammps_reader-0.3.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "14e7f7c0d43538fb4f9462db127b39dc6b1fe88a64e881a851f151ee64490a3c",
"md5": "5ae29ee6d3dcc23f0349b4c8e68b3658",
"sha256": "041485b0e0f77ad78e4eeea2ca5113b14a20f7ce13681301acc11a597d4e2583"
},
"downloads": -1,
"filename": "log_lammps_reader-0.3.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "5ae29ee6d3dcc23f0349b4c8e68b3658",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 3978743,
"upload_time": "2025-02-09T22:47:22",
"upload_time_iso_8601": "2025-02-09T22:47:22.977836Z",
"url": "https://files.pythonhosted.org/packages/14/e7/f7c0d43538fb4f9462db127b39dc6b1fe88a64e881a851f151ee64490a3c/log_lammps_reader-0.3.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a8449e010a64543b32dae66c85658004b2766ca49cf50ec4a37dbb770c22f029",
"md5": "b3ebb93b244adbe30919214b2c13e67a",
"sha256": "f85403788e9fcbc7bf406675e378c130b2df1b62e6ed5db3352b2877221b17f1"
},
"downloads": -1,
"filename": "log_lammps_reader-0.3.2-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "b3ebb93b244adbe30919214b2c13e67a",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 4190867,
"upload_time": "2025-02-09T22:47:48",
"upload_time_iso_8601": "2025-02-09T22:47:48.396828Z",
"url": "https://files.pythonhosted.org/packages/a8/44/9e010a64543b32dae66c85658004b2766ca49cf50ec4a37dbb770c22f029/log_lammps_reader-0.3.2-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "59717b7e93ab47a9e0d14cf8d1f7e199effc623f5decb9c63d7fcac85a690c07",
"md5": "0766171102cd096b2fcd581d84fdac3c",
"sha256": "99696778f2534300e648e61ca8ab9f064335e32881eb6f2724082ab87036d408"
},
"downloads": -1,
"filename": "log_lammps_reader-0.3.2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "0766171102cd096b2fcd581d84fdac3c",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 4516895,
"upload_time": "2025-02-09T22:48:09",
"upload_time_iso_8601": "2025-02-09T22:48:09.597858Z",
"url": "https://files.pythonhosted.org/packages/59/71/7b7e93ab47a9e0d14cf8d1f7e199effc623f5decb9c63d7fcac85a690c07/log_lammps_reader-0.3.2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4bbb8c3765b828a9c0ff728479a140154aa0cc9f8319c5b580a2c98bbb0446e0",
"md5": "59aaee4f7362b79c6bc49c9556d09443",
"sha256": "1a2086ff25c5af86665cece09b53ab1a0586773d489a7b1ca3037ca500efc09e"
},
"downloads": -1,
"filename": "log_lammps_reader-0.3.2-cp313-cp313-win32.whl",
"has_sig": false,
"md5_digest": "59aaee4f7362b79c6bc49c9556d09443",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 3322321,
"upload_time": "2025-02-09T22:49:35",
"upload_time_iso_8601": "2025-02-09T22:49:35.776528Z",
"url": "https://files.pythonhosted.org/packages/4b/bb/8c3765b828a9c0ff728479a140154aa0cc9f8319c5b580a2c98bbb0446e0/log_lammps_reader-0.3.2-cp313-cp313-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d282807cf2b2ab3adb6baca12769685ad0a5038d190dda711984ae8865b080de",
"md5": "cb822c892deb21966dbf0352a2f099e9",
"sha256": "560d8b0fbfee05b320f3c8f82f5f13e5fc6e624593845d4af985799427b6750f"
},
"downloads": -1,
"filename": "log_lammps_reader-0.3.2-cp313-cp313-win_amd64.whl",
"has_sig": false,
"md5_digest": "cb822c892deb21966dbf0352a2f099e9",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 3665846,
"upload_time": "2025-02-09T22:49:22",
"upload_time_iso_8601": "2025-02-09T22:49:22.893094Z",
"url": "https://files.pythonhosted.org/packages/d2/82/807cf2b2ab3adb6baca12769685ad0a5038d190dda711984ae8865b080de/log_lammps_reader-0.3.2-cp313-cp313-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d25797ee452860eec91e4e8683afa0cd915d80b8be8ab14b96212e873e0a55a3",
"md5": "58ea4c287a7c1a419cd0c1a12321e186",
"sha256": "783e641529af0441d42b0126d17db978d7a7d594cfa5d61c8ebbb7a65de9697a"
},
"downloads": -1,
"filename": "log_lammps_reader-0.3.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "58ea4c287a7c1a419cd0c1a12321e186",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 3980680,
"upload_time": "2025-02-09T22:47:25",
"upload_time_iso_8601": "2025-02-09T22:47:25.830236Z",
"url": "https://files.pythonhosted.org/packages/d2/57/97ee452860eec91e4e8683afa0cd915d80b8be8ab14b96212e873e0a55a3/log_lammps_reader-0.3.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ee83de6651885abaa4f2af53129c61e8967244ae141281d4317deb5702aa559a",
"md5": "dd0559e5028db7f70e9202b902ca5d61",
"sha256": "3df2b5d295f680ce383cd750a1bb863fdcfa02846294a73d15276b597852d3a1"
},
"downloads": -1,
"filename": "log_lammps_reader-0.3.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "dd0559e5028db7f70e9202b902ca5d61",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 4192824,
"upload_time": "2025-02-09T22:47:51",
"upload_time_iso_8601": "2025-02-09T22:47:51.261242Z",
"url": "https://files.pythonhosted.org/packages/ee/83/de6651885abaa4f2af53129c61e8967244ae141281d4317deb5702aa559a/log_lammps_reader-0.3.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3bbb0e2eb8578a697787fd09116368f5d61def80a09dca98e2ad14a1c176116b",
"md5": "bdbaf8be5e25b4553bbc97169f714b74",
"sha256": "4174b14089524ca4d979a9d8893d135ffd7679207bffc18bcefc44ceeb7088d8"
},
"downloads": -1,
"filename": "log_lammps_reader-0.3.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "bdbaf8be5e25b4553bbc97169f714b74",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 4622640,
"upload_time": "2025-02-09T22:48:32",
"upload_time_iso_8601": "2025-02-09T22:48:32.637408Z",
"url": "https://files.pythonhosted.org/packages/3b/bb/0e2eb8578a697787fd09116368f5d61def80a09dca98e2ad14a1c176116b/log_lammps_reader-0.3.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b730426a8b9404698a08bec3e52a8a99717469776682eb82dc98269266e940a8",
"md5": "d6077326a901d83b61b6e9974a5dad1a",
"sha256": "da7d0aa976f82585105ea46cf7b88b101289a006c1136611fb72fe47255d7cbe"
},
"downloads": -1,
"filename": "log_lammps_reader-0.3.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "d6077326a901d83b61b6e9974a5dad1a",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 4518907,
"upload_time": "2025-02-09T22:48:11",
"upload_time_iso_8601": "2025-02-09T22:48:11.687970Z",
"url": "https://files.pythonhosted.org/packages/b7/30/426a8b9404698a08bec3e52a8a99717469776682eb82dc98269266e940a8/log_lammps_reader-0.3.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "87a0aa926b56e49e4cca558398cdf7c310567c71110010cf7aff7a29b14fde54",
"md5": "8f6f07e46cda6c9baec0fe27a1f08cf7",
"sha256": "5c2595fda4f05e2b671043bf1648feb133020c61032e8f5cfbc2549fc7e8488e"
},
"downloads": -1,
"filename": "log_lammps_reader-0.3.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "8f6f07e46cda6c9baec0fe27a1f08cf7",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 4244108,
"upload_time": "2025-02-09T22:48:50",
"upload_time_iso_8601": "2025-02-09T22:48:50.289357Z",
"url": "https://files.pythonhosted.org/packages/87/a0/aa926b56e49e4cca558398cdf7c310567c71110010cf7aff7a29b14fde54/log_lammps_reader-0.3.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5ad1b3fd776b42a7822f9329ab29c3beab0e6318eae0a6c2241f7cf4e7b8ef04",
"md5": "46ba96d43e69e4a0458fa162a82b76ba",
"sha256": "85f30bcb356914cad8eb54cfc483340e770f4b26c32e339e107d5ca5e784e575"
},
"downloads": -1,
"filename": "log_lammps_reader-0.3.2-cp38-cp38-win32.whl",
"has_sig": false,
"md5_digest": "46ba96d43e69e4a0458fa162a82b76ba",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 3322234,
"upload_time": "2025-02-09T22:49:38",
"upload_time_iso_8601": "2025-02-09T22:49:38.408315Z",
"url": "https://files.pythonhosted.org/packages/5a/d1/b3fd776b42a7822f9329ab29c3beab0e6318eae0a6c2241f7cf4e7b8ef04/log_lammps_reader-0.3.2-cp38-cp38-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "173d27ccb63851d05e82ba88f9eae177077fbf7889d52c9d4ed8adb18f3e667d",
"md5": "bfb017c4e43ee592382f7313e1097ed9",
"sha256": "9d3e51f2695dd215ca4014c0c72e7a6fde00c59afb814bdddbae984bdb403741"
},
"downloads": -1,
"filename": "log_lammps_reader-0.3.2-cp38-cp38-win_amd64.whl",
"has_sig": false,
"md5_digest": "bfb017c4e43ee592382f7313e1097ed9",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 3666430,
"upload_time": "2025-02-09T22:49:24",
"upload_time_iso_8601": "2025-02-09T22:49:24.915807Z",
"url": "https://files.pythonhosted.org/packages/17/3d/27ccb63851d05e82ba88f9eae177077fbf7889d52c9d4ed8adb18f3e667d/log_lammps_reader-0.3.2-cp38-cp38-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "fac5b10dfb2cafd7ed997ee9ddc2b72f3d6ca3c7ae4ba2e792a24f241f7d60e6",
"md5": "d0a9a49f10008a72837f534132b26e06",
"sha256": "ca5d9f6e6314d367bacd146f85a9a3a22d61f0ef45b6b93d7dc8e64768fd6c69"
},
"downloads": -1,
"filename": "log_lammps_reader-0.3.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "d0a9a49f10008a72837f534132b26e06",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 3980677,
"upload_time": "2025-02-09T22:47:27",
"upload_time_iso_8601": "2025-02-09T22:47:27.958594Z",
"url": "https://files.pythonhosted.org/packages/fa/c5/b10dfb2cafd7ed997ee9ddc2b72f3d6ca3c7ae4ba2e792a24f241f7d60e6/log_lammps_reader-0.3.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7055f15377e564d74f53e2b8c359376008bc383a6eb364ac479dc577f4785a8c",
"md5": "6f1b4b69630e6863cc29717c0fd5cec7",
"sha256": "824e1016a5cfd7e650ebaf033eba23a07be99bf6f9968bf5ec9cabebcfd603c7"
},
"downloads": -1,
"filename": "log_lammps_reader-0.3.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "6f1b4b69630e6863cc29717c0fd5cec7",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 4192920,
"upload_time": "2025-02-09T22:47:53",
"upload_time_iso_8601": "2025-02-09T22:47:53.466969Z",
"url": "https://files.pythonhosted.org/packages/70/55/f15377e564d74f53e2b8c359376008bc383a6eb364ac479dc577f4785a8c/log_lammps_reader-0.3.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a6ca290b04aa1d10c94bb043f7eb3732f35025023b7f3cae6226eccac5edde61",
"md5": "430c84ce3780cf8790fb00c6f509153d",
"sha256": "9c588df8801727721ae7c50445e6b414b8c33d9c3516d36a44ceb1849da635ac"
},
"downloads": -1,
"filename": "log_lammps_reader-0.3.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "430c84ce3780cf8790fb00c6f509153d",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 4623003,
"upload_time": "2025-02-09T22:48:36",
"upload_time_iso_8601": "2025-02-09T22:48:36.499532Z",
"url": "https://files.pythonhosted.org/packages/a6/ca/290b04aa1d10c94bb043f7eb3732f35025023b7f3cae6226eccac5edde61/log_lammps_reader-0.3.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "43c12f563097705e0d360a0a09e187f5b5abad4ef964a1e3ee2dd23d47642e5e",
"md5": "4a54b579983d0ba2509911e7dfe8b91a",
"sha256": "6d048a4bb6345790f62bc04772fb19bd19a30b71411e8d4922c64c26e23a3aab"
},
"downloads": -1,
"filename": "log_lammps_reader-0.3.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "4a54b579983d0ba2509911e7dfe8b91a",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 4519261,
"upload_time": "2025-02-09T22:48:13",
"upload_time_iso_8601": "2025-02-09T22:48:13.734566Z",
"url": "https://files.pythonhosted.org/packages/43/c1/2f563097705e0d360a0a09e187f5b5abad4ef964a1e3ee2dd23d47642e5e/log_lammps_reader-0.3.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7083052df635cc3de0cee0dc4ead3c990d8bddcf025ccd1194fe30474d4d6fe1",
"md5": "ec11ea1d881a8ac5df60df6658f0121a",
"sha256": "546484219a7cabf3bbf06783350a29c27220e318b99a23faf2964d7cd73f8182"
},
"downloads": -1,
"filename": "log_lammps_reader-0.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "ec11ea1d881a8ac5df60df6658f0121a",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 4244490,
"upload_time": "2025-02-09T22:48:53",
"upload_time_iso_8601": "2025-02-09T22:48:53.185828Z",
"url": "https://files.pythonhosted.org/packages/70/83/052df635cc3de0cee0dc4ead3c990d8bddcf025ccd1194fe30474d4d6fe1/log_lammps_reader-0.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d126fe02ea5424774b4941f10a8d01b92eeca559e604720e26e06a7bcc5630d0",
"md5": "01021caf984a6e47544d443af74293c9",
"sha256": "51e0e1aab39c26af802eff88636887a29277ee00b4c6b3a698b827994032d70f"
},
"downloads": -1,
"filename": "log_lammps_reader-0.3.2-cp39-cp39-win32.whl",
"has_sig": false,
"md5_digest": "01021caf984a6e47544d443af74293c9",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 3322318,
"upload_time": "2025-02-09T22:49:41",
"upload_time_iso_8601": "2025-02-09T22:49:41.227442Z",
"url": "https://files.pythonhosted.org/packages/d1/26/fe02ea5424774b4941f10a8d01b92eeca559e604720e26e06a7bcc5630d0/log_lammps_reader-0.3.2-cp39-cp39-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "20e3d10b527975538b8e04b8f52b21cdbd0745841c8572a35bf4c039070545c9",
"md5": "e9090c29a6e22fb76e96cd8caf0b33ba",
"sha256": "886735811410e3f378f43c2422e98eab8ea66ead7e6a7ac9fa763d0022e47cdc"
},
"downloads": -1,
"filename": "log_lammps_reader-0.3.2-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "e9090c29a6e22fb76e96cd8caf0b33ba",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 3666426,
"upload_time": "2025-02-09T22:49:27",
"upload_time_iso_8601": "2025-02-09T22:49:27.135476Z",
"url": "https://files.pythonhosted.org/packages/20/e3/d10b527975538b8e04b8f52b21cdbd0745841c8572a35bf4c039070545c9/log_lammps_reader-0.3.2-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0fced10708b5ca2d113b4bb958f7367d49e20585f4f7a2995d5da6e86cef65f4",
"md5": "904aeeef646f85f5201bb4615995ea02",
"sha256": "8a82553b3378e825bafe8b58cfdb5080608821d96c1d8288927030ff168a9f14"
},
"downloads": -1,
"filename": "log_lammps_reader-0.3.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "904aeeef646f85f5201bb4615995ea02",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 3983547,
"upload_time": "2025-02-09T22:47:30",
"upload_time_iso_8601": "2025-02-09T22:47:30.796055Z",
"url": "https://files.pythonhosted.org/packages/0f/ce/d10708b5ca2d113b4bb958f7367d49e20585f4f7a2995d5da6e86cef65f4/log_lammps_reader-0.3.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "aa42fd32017d447df248c4c5040a22a6e71bc98481d5ccf448d9f3d7107c632b",
"md5": "3a5153891f3024bc5f856c36a9a7947b",
"sha256": "f3869bf0d11adabba9dc64d6d784f72fc8025e71a3e2314dc5b012309b7545a3"
},
"downloads": -1,
"filename": "log_lammps_reader-0.3.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "3a5153891f3024bc5f856c36a9a7947b",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 4193893,
"upload_time": "2025-02-09T22:47:56",
"upload_time_iso_8601": "2025-02-09T22:47:56.595863Z",
"url": "https://files.pythonhosted.org/packages/aa/42/fd32017d447df248c4c5040a22a6e71bc98481d5ccf448d9f3d7107c632b/log_lammps_reader-0.3.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "56b1663d6f6832539e90fbc7ed584525b9b2abf3ae76a0fd78f8be7dc5c943a5",
"md5": "ec194100b96c437b158b4347885cbaff",
"sha256": "0a33c3571d1937667d54a03fbe2a4414ae112f49285544d15ce9a556be52cf6e"
},
"downloads": -1,
"filename": "log_lammps_reader-0.3.2-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "ec194100b96c437b158b4347885cbaff",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 4623236,
"upload_time": "2025-02-09T22:48:38",
"upload_time_iso_8601": "2025-02-09T22:48:38.698353Z",
"url": "https://files.pythonhosted.org/packages/56/b1/663d6f6832539e90fbc7ed584525b9b2abf3ae76a0fd78f8be7dc5c943a5/log_lammps_reader-0.3.2-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7e11ece92296f2bea0e6d1fc6d1d058886a224b45fdc71b6b5ee49a5892a4282",
"md5": "569760edb83ed59dd8b3c221a6f5fa4a",
"sha256": "2c2d23f76945e3c66d4c5ec942984a54d60d1ac99ee9b49ea2492160fc819589"
},
"downloads": -1,
"filename": "log_lammps_reader-0.3.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "569760edb83ed59dd8b3c221a6f5fa4a",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 4520689,
"upload_time": "2025-02-09T22:48:16",
"upload_time_iso_8601": "2025-02-09T22:48:16.109643Z",
"url": "https://files.pythonhosted.org/packages/7e/11/ece92296f2bea0e6d1fc6d1d058886a224b45fdc71b6b5ee49a5892a4282/log_lammps_reader-0.3.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d9ff8a8e6971e0ab08c73e173bbfc7c0b122400c529f59916c517bec6a399edb",
"md5": "03e08ae644f1a54831c9df8fd6acbb9d",
"sha256": "fe281063a33d87598eb54dc44f518baef3431ad014c8c44070f9124b4e40fc95"
},
"downloads": -1,
"filename": "log_lammps_reader-0.3.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "03e08ae644f1a54831c9df8fd6acbb9d",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 4246048,
"upload_time": "2025-02-09T22:48:55",
"upload_time_iso_8601": "2025-02-09T22:48:55.288552Z",
"url": "https://files.pythonhosted.org/packages/d9/ff/8a8e6971e0ab08c73e173bbfc7c0b122400c529f59916c517bec6a399edb/log_lammps_reader-0.3.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e3219d63024453284ac463ad33f24eae86ca8666f769a2833d868f9801d9d67a",
"md5": "b2dcf0eaf8560544a02d37a08d75b3b6",
"sha256": "a62f7e0be8a787a4ef6c24306f647ce8f78bb438ac323786bedff77ca231d9da"
},
"downloads": -1,
"filename": "log_lammps_reader-0.3.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "b2dcf0eaf8560544a02d37a08d75b3b6",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 3983202,
"upload_time": "2025-02-09T22:47:33",
"upload_time_iso_8601": "2025-02-09T22:47:33.484491Z",
"url": "https://files.pythonhosted.org/packages/e3/21/9d63024453284ac463ad33f24eae86ca8666f769a2833d868f9801d9d67a/log_lammps_reader-0.3.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6b7d0fd8f8376b690f6dc4587102ea65249c382eb6e04f0675c0e2efdd8add50",
"md5": "fc9ffb4f126b0f958b9395ce34bbeb22",
"sha256": "fe8fe37b0208bb82b1d44fee8e1b82e1bf05f8b01c10658717fac000606a0ead"
},
"downloads": -1,
"filename": "log_lammps_reader-0.3.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "fc9ffb4f126b0f958b9395ce34bbeb22",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 4194525,
"upload_time": "2025-02-09T22:47:58",
"upload_time_iso_8601": "2025-02-09T22:47:58.845276Z",
"url": "https://files.pythonhosted.org/packages/6b/7d/0fd8f8376b690f6dc4587102ea65249c382eb6e04f0675c0e2efdd8add50/log_lammps_reader-0.3.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "bd38e56bb27d55f638da5d76b2d2aedcb429e94c17b078df7aace92b67be3bff",
"md5": "0243b1167292616eeb78d2913690c758",
"sha256": "83ef7458d9b7b2b5e2bca5f6d226e1d707cce8a4f0a60c1811ef88023b2d6a2a"
},
"downloads": -1,
"filename": "log_lammps_reader-0.3.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "0243b1167292616eeb78d2913690c758",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 4520831,
"upload_time": "2025-02-09T22:48:19",
"upload_time_iso_8601": "2025-02-09T22:48:19.696739Z",
"url": "https://files.pythonhosted.org/packages/bd/38/e56bb27d55f638da5d76b2d2aedcb429e94c17b078df7aace92b67be3bff/log_lammps_reader-0.3.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "042997587bf9fb791e92b467fe2800797182e9fa5f06f49addf11da6745fbe64",
"md5": "beb27f23078b078bd7ece01e38dee67f",
"sha256": "f2b0f405beaad3bd67377861712a1d45c92b4c334142f54596de4440e4091cad"
},
"downloads": -1,
"filename": "log_lammps_reader-0.3.2.tar.gz",
"has_sig": false,
"md5_digest": "beb27f23078b078bd7ece01e38dee67f",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.8",
"size": 22328,
"upload_time": "2025-02-09T22:49:13",
"upload_time_iso_8601": "2025-02-09T22:49:13.685161Z",
"url": "https://files.pythonhosted.org/packages/04/29/97587bf9fb791e92b467fe2800797182e9fa5f06f49addf11da6745fbe64/log_lammps_reader-0.3.2.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-02-09 22:49:13",
"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"
}