Skip to main content

Extended XYZ file format tools

Project description

Extended XYZ specification and parsing tools

This repository contains a specification of the extended XYZ (extxyz) file format, and tools for reading and writing to it from programs written in C, Fortran, Python and Julia.

Using ASE? As of v0.3.0, extxyz is the standalone C parser with no ASE dependency, and a separate ase-extxyz package registers it as an ASE I/O plugin. Install both with pip install ase-extxyz and use ase.io.read("file.xyz", format="cextxyz").

Installation

Python

The latest development version can be installed via

pip install git+https://github.com/libAtoms/extxyz

This requires Python 3.10+ and a working C compiler, plus the PCRE2 and libcleri libraries. libcleri is included here as a submodule and will be compiled automatically, but you may need to install PCRE2 with something similar to one of the following commands.

brew install pcre2          # macOS with Homebrew
sudo apt-get install libpcre2-dev   # Ubuntu / Debian
vcpkg install pcre2:x64-windows     # Windows (via vcpkg)

Binary wheels for Linux, macOS (arm64 and x86_64), and Windows are built in the GitHub CI for each tagged release and bundle PCRE2 and libcleri, so an end-user pip install extxyz does not need either system library.

Stable releases are made to PyPI, so you can install with

pip install extxyz                # standalone parser, no ASE
pip install ase-extxyz            # ASE plugin (pulls in extxyz + ase)

The Python API on extxyz itself is the dict/array based Frame parser:

import extxyz
for frame in extxyz.iread_dicts('trajectory.xyz'):
    print(frame.natoms, frame.cell, list(frame.arrays))

For ASE-aware reading/writing see the ase-extxyz sibling package.

Performance: cextxyz vs ASE built-in extxyz reader

ASE already ships a regex-based extxyz reader. The cextxyz plugin re-parses with the libcleri-based C grammar, with PCRE2 JIT compilation enabled both on the per-atom data regex (PCRE2_JIT_COMPLETE + PCRE2_ANCHORED) and on libcleri's internal regexes (so the comment-line grammar walk also runs JIT'd code).

Benchmark on a single-frame file with N Cu atoms (positions, forces, and a couple of info keys):

atoms / frame file size ASE built-in extxyz cextxyz plugin extxyz.read_dicts (no Atoms) speedup, plugin / built-in speedup, parser / built-in
10 0.00 MB 0.107 ms 0.074 ms 0.119 ms 1.46× 0.90×
100 0.01 MB 0.203 ms 0.096 ms 0.145 ms 2.11× 1.41×
1 000 0.11 MB 1.170 ms 0.277 ms 0.367 ms 4.23× 3.18×
4 000 0.44 MB 4.414 ms 0.908 ms 1.122 ms 4.86× 3.93×
16 000 1.74 MB 17.5 ms 3.40 ms 3.96 ms 5.15× 4.42×
64 000 6.98 MB 69.9 ms 13.5 ms 15.6 ms 5.17× 4.48×
200 000 21.80 MB 218.8 ms 42.8 ms 49.4 ms 5.12× 4.43×

Read-time benchmark

Below ~100 atoms per frame the per-call setup (file open, PCRE2 JIT compile, libcleri grammar walk for the comment line) is larger than the regex match itself, so the built-in is faster on tiny files. From ~1 000 atoms upwards the parser dominates and cextxyz runs at a steady ~5× over the built-in end-to-end (~4.4× for the parser alone). The two cextxyz curves track each other closely: the Frame → Atoms translation in the ASE plugin is kept cheap by aliasing the parser's per-atom buffers directly into atoms.arrays (so Atoms.__init__ doesn't memcpy positions) and vectorising the species → atomic-number lookup with np.unique instead of a per-atom dict walk.

The parser-side numbers also reflect three later read-path changes: dropping a redundant per-frame array copy; storing each per-atom string column as one contiguous fixed-width buffer (so the C reader does a single allocation per column instead of one malloc per atom, and Python decodes the whole column with a single np.frombuffer instead of a per-atom loop); and a fast path for parsing the per-atom floats — a plain [+-]?int[.frac] with ≤ 15 significant digits is parsed as one correctly-rounded mant / 10^frac division (bit-exact with strtod, falling back to strtod for exponents or higher precision). Together these are worth ~40% on a 200k-atom read (the float fast path alone ~1.4×).

Opt-in tokenizer (use_regex=False)

The single biggest remaining cost is the per-line pcre2_match. Passing use_regex=False to read_dicts/iread_dicts (C backend only) skips it: the per-atom lines are split on whitespace and each field is parsed and validated by its column type, with no regex compile or match. It is opt-in and off by default, and a further ~1.5× on top of everything above:

atoms / frame read_dicts (regex) read_dicts (use_regex=False) tokenizer / regex tokenizer / built-in
1 000 0.367 ms 0.219 ms 1.68× 5.34×
16 000 3.96 ms 2.63 ms 1.50× 6.66×
64 000 15.6 ms 10.4 ms 1.50× 6.70×
200 000 49.4 ms 32.9 ms 1.50× 6.64×

It validates each field (a malformed numeric/bool or the wrong field count is a clear parse error, not a silent 0) and is bit-identical to the regex parser on valid input. The trade-off is that it is marginally more lenient than the grammar on a few numeric edge cases (e.g. leading-zero integers 007, 1./.5), which is why it is opt-in rather than the default.

The big parser-side lever was PCRE2 JIT (pcre2_jit_compile(re, PCRE2_JIT_COMPLETE) after pcre2_compile); a sample-based profile of the pre-JIT code attributed ~38 % of CPU to the per-atom pcre2_match and another ~14 % to libcleri's regex matching during the comment-line grammar walk. The same JIT call now wraps both call sites (the libcleri side via libAtoms/libcleri PR #2). On Linux, both call sites detect when running under valgrind via the LD_PRELOAD it injects and skip JIT compilation — PCRE2 JIT intentionally reads bytes past the input end as a speed trick, which valgrind reports as uninitialised-value warnings (PCRE2 docs explicitly call this out).

Reproduce locally (requires extxyz, ase-extxyz, ase, matplotlib):

python benchmarks/bench_read.py --max-atoms 200000 --repeats 3
python benchmarks/plot_bench.py
# writing (see below):
python benchmarks/bench_write.py --max-atoms 200000 --repeats 5
python benchmarks/plot_bench.py --in benchmarks/write_results.csv --out benchmarks/write_speedup.png

Writing

The same cextxyz machinery writes too, a steady ~5–6× faster than ASE's built-in extxyz writer across the same single-frame Cu files (and ~3× faster than extxyz-ng):

atoms / frame file size ASE built-in extxyz cextxyz plugin extxyz.write_dicts (no Atoms) speedup, plugin / built-in speedup, writer / built-in
1 000 0.11 MB 2.800 ms 0.639 ms 0.547 ms 4.39× 5.11×
4 000 0.44 MB 10.9 ms 2.391 ms 2.163 ms 4.55× 5.03×
16 000 1.74 MB 43.9 ms 8.426 ms 7.273 ms 5.21× 6.03×
64 000 6.98 MB 166.6 ms 31.6 ms 28.2 ms 5.26× 5.92×
200 000 21.80 MB 521.3 ms 106.7 ms 92.5 ms 4.88× 5.64×

Write-time benchmark

Writing is bounded by formatting the per-atom floats, not I/O. The C writer (a) builds each line in a memory buffer and fwrites it in blocks rather than one fprintf per value, and (b) formats the default "%16.8f" floats with a custom exact integer routine instead of snprintf. A double is m·2^e exactly and 10^8 = 2^8·5^8, so v·10^8 = m·390625·2^(e+8) is an exact rational that we round to nearest (ties to even) with integer-only arithmetic — bit-for-bit identical to printf, validated against snprintf over tens of millions of values (libextxyz/test_fmt_float.c, run by meson test). It falls back to snprintf for non-finite / very large values, for any custom format_dict, and on compilers without 128-bit ints (MSVC). The pure-Python (np.savetxt) writer matches ASE; benchmarks/bench_write.py reproduces the comparison (and times extxyz-ng if EXTXYZ_NG_PYTHON points at a venv with it).

libextxyz C library and standalone executables

The C parser, the standalone libextxyz shared library, and the C-only cextxyz test driver are all Meson targets. To build them outside of the Python wheel flow:

meson setup builddir
meson compile -C builddir extxyz cextxyz       # libextxyz.{so,dylib,dll} + cextxyz
meson install -C builddir                      # installs libextxyz under --prefix

The Meson build picks up PCRE2 via pkg-config, falling back to a bundled WrapDB build of PCRE2 if no system copy is found.

Fortran bindings

To build the fextxyz executable demonstrating the Fortran bindings, you first need to compile QUIP's libAtoms library. QUIP now uses Meson too:

git clone --recursive https://github.com/libAtoms/QUIP
meson setup QUIP/builddir QUIP -Dgap=true -Dmpi=false
meson compile -C QUIP/builddir libAtoms f90wrap_stub

Then point this project's Meson build at the resulting library and module directories — the fextxyz target is opt-in via the quip_lib_dir and quip_mod_dir options:

QUIP_LIB_DIR=$PWD/QUIP/builddir/src/libAtoms
QUIP_MOD_DIR=$(find "$QUIP_LIB_DIR" -iname 'libatoms_module.mod' -printf '%h\n' | head -1)
meson setup builddir \
  -Dquip_lib_dir="$QUIP_LIB_DIR" \
  -Dquip_mod_dir="$QUIP_MOD_DIR"
meson compile -C builddir fextxyz

The Fortran bindings will later be moved to QUIP, since they are tied to QUIP's Dictionary and Atoms types.

Julia bindings

Julia bindings are distributed in a separate package, named ExtXYZ.jl. See its documentation for further details.

Usage

As of v0.3.0 the extxyz package is a standalone parser with no ASE dependency; ASE integration lives in the separate ase-extxyz plugin.

Native API — Frame dicts (no ASE)

read_dicts / iread_dicts / write_dicts work with lightweight Frame objects exposing .natoms, .cell, .pbc, .info and .arrays:

import extxyz

# read every frame (eager) or stream them lazily
frames = extxyz.read_dicts("filename.xyz")          # Frame, or list[Frame]
for frame in extxyz.iread_dicts("trajectory.xyz"):
    print(frame.natoms, frame.cell, frame.info, list(frame.arrays))

# read just the first frame, then write it back out
frame = extxyz.read_dicts("filename.xyz", index=0)
extxyz.write_dicts("newfile.xyz", frame)

index accepts an int, a slice, or ':' (negative indices are not supported). Pass use_cextxyz=False for the pure-Python parser, or use_regex=False (C backend) for the faster opt-in tokenizer.

With ASE — the ase-extxyz plugin

Once ase-extxyz is installed, ASE discovers the cextxyz format automatically (no explicit import needed):

import ase.io
from ase.build import bulk

frames = [bulk("Cu") * 3 for _ in range(3)]
for f in frames:
    f.rattle()

ase.io.write("filename.xyz", frames, format="cextxyz")
atoms  = ase.io.read("filename.xyz", format="cextxyz", index=0)    # first frame
images = ase.io.read("filename.xyz", format="cextxyz", index=":")  # all frames

To attach to an ASE optimizer or dynamics (keeps the file open across steps instead of re-opening it each iteration), use ExtXYZTrajectoryWriter:

from ase_extxyz.io import ExtXYZTrajectoryWriter
from ase.optimize import LBFGS

with ExtXYZTrajectoryWriter("opt.xyz", atoms=atoms) as traj:
    opt = LBFGS(atoms)
    opt.attach(traj, interval=1)
    opt.run(fmax=1e-3)

Command-line tool

The extxyz package installs an extxyz command-line tool (equivalently python -m extxyz) for quick reading and round-tripping; see extxyz -h.

Remaining issues

  1. make treatement of 9 elem old-1d consistent: now extxyz.py always reshapes (not just Lattice) to 3x3, but extxyz.c does not.
  2. Since we're using python regexp/PCRE, we could make per-atom strings be more complex, e.g. bare or quoted strings from key-value pairs. Should we?
  3. Decide what to do about unparseable comment lines. Just assume an old fashioned xyz with an arbitrary line, or fail? I don't think we really want every parsing breaking typo to result in plain xyz.
  4. Used to be able to quote with {}. Do we want to support this?

Extended XYZ specification

General formatting

  • Allowed characters: printable subset of ASCII, single byte
  • Allowed whitespace: plain space and tab (no fancy unicode nonbreaking space, etc)
  • Allowed end-of line (EOL) characters set by implementation + OS
    • pure python: whatever is used to return lines by file object iterator
    • low level c: fgets()
  • Blank lines: allowed only as 2nd line of each frame (for plain xyz) and at end of file

General definitions

  • regex: PCRE/python regular expression
  • Whitespace: regex \s, i.e. space and tab

Primitive Data Types

String

Sequence of one or more allowed characters, optionally quoted, but must be quoted in some circumstances.

  • Allowed characters - all except newline
  • Entire string may be surrounded by double quotes, as first and last characters (must match). Quotes inside string that are same as containing quotes must be escaped with backslash. Outermost double quotes are not considered part of string value.
  • Strings that contain any of the following characters must be quoted (not just backslash escaped)
    • whitespace (regex \s)
    • equals =
    • double quote ", must be represented by \"
    • comma ,
    • open or close square bracket [ ] or curly brackets { }
    • backslash, must be represented by double backslash \\
    • newline, must be represented by \n
  • Backslash \: only present in quoted strings, only used for escaping next character. All backslash escaped characters are the following character itself except \n, which encodes a newline.
  • Must conform to one of the following regex
    • quoted string: (")(?:(?=(\\?))\2.)*?\1
    • bare (unquoted) string: (?:[^\s=",}{\]\[\\]|(?:\\[\s=",}{\]\[\\]))+
  • only used in comment line key-value pairs, not per-atom data

Simple string

Sequence of one or more allowed characters, unquoted (so even outermost quotes are part of string), and without whitespace

  • allowed characters - regex \S, i.e. all except newline and whitespace
  • regex \S+
  • only used in per-atom data, not comment line key-value pairs

Logical/boolean

  • T or F or [tT]rue or [fF]alse or TRUE or FALSE
  • regex
    • true: (?:[tT]rue|TRUE|T)\b
    • false: (?:[fF]alse|FALSE|F)\b

Integer number

string of one or more decimal digits, optionally preceded by sign

  • regex [+-]?+(?:0|[1-9][0-9]*)+\b

Floating point number

  • optional leading sign [+-], decimal number including optional decimal point ., optional [dDeE] folllowed by exponent consisting of optional sign followed by string of one or more digits
  • regex
    • integer without leading sign bare_int = '(?:0|[1-9][0-9]*)'
    • optional sign opt_sign = '[+-]?'
    • floating number with decimal point float_dec = '(?:' + bare_int + '\.|\.)[0-9]*'
    • exponent exp = '(?:[dDeE]'+opt_sign+'[0-9]+)?'
    • end of number num_end = '(?:\b|(?=\W)|$)'
    • combined float regexp opt_sign + '(?:' + float_dec + exp + '|' + bare_int + exp + '|' + bare_int + ')' + num_end

Order for identifying primitive data types, accept first one that matches

  • int
  • float
  • bool
  • bare string (containing no whitespace or special characters)
  • quoted string (starting and ending with double quote and containing only allowed characters)

one dimensional array (vector)

sequence of one or more of the same primitive type

  • new style: opens with [, one or more of the same primitive type separated by commas and optional whitespace, ends with ]
  • backward compatible: opens with ", ' or {, one or more of the same primitive types (all types allowed in {}, all except string in "" and '') separated by whitespace, ends with matching ", ' or }. Single and double quotes are equivalent containers (ints/floats/bools, no strings). For backward compatibility, a single element backward compatible array is interpreted as a scalar of the same type.
  • primitive data type is determined by same priority as single primitive item, but must be satisfied by entire list simultaneously. E.g. all integers will result in an integer array, but a mix of integer and float will result in a float array, and a mix of integer and valid strings will results in a string array.

two dimensional array (matrix)

sequence of one or more new style one dimensional arrays of the same length and type

  • opens with [, one or more new style one dimensional arrays separated by commas, ends with ]
  • all contained one dimensional arrays in a single two dimensional array must have same number and primitive data type elements, and will be promoted to other possible types if necessary to parse entire array. E.g. a row of integers followed by a row of strings will be promoted to a 2-d string array.

XYZ file

A concatenation of 1 or more FRAMES (below), with optional blank lines at the end (but not between frames)

FRAME

  • Line 1: a single integer <N> preceded and followed by optional whitespace
  • Line 2: zero or more per-config key=value pairs (see key-value pairs below)
  • Lines 3..N+2: per-atom data lines with M columns each (see Properties and Per-Atom Data below)

key=value pairs on second ("comment") line

Associates per-configuration value with key. Spaces are allowed around = sign, which do not become part of the key or value.

Key: bare or quoted string

Value: primitive type, 1-D array, or 2-D array. Type is determined from context according to order specified above.

Special key "Properties”: defines the columns in the subsequent lines in the frame.

  • Value is a string with the format of a series of triplets, separated by “:”, each triplet having the format: “<name>:<T>:<m>”.
    • The <name> (string) names the column(s), <T> is a one of “S”, “I”, “R”, “L”, and indicates the type in the column, “string”, “integer”, “real”, “logical”, respectively. <m> is an integer > 0 specifying how many consecutive columns are being referred to.
    • The sum of the counts "m" must equal number of per-atom columns M (as defined in FRAME)
  • If after full parsing the key “Properties” is missing, the format is retroactively assumed to be plain xyz (4 columns, Z/species x y z), the entire second line is stored as a per-config “comment” property, and columns beyond the 4th are not read.

Per-atom data lines

Each column contains a sequence of primitive types, except string, which is replaced with simple string, separated by one or more whitespace characters, ending with EOL (optional for last line). The total number of columns in each row must be equal to the M and to the sum of the counts "m" in the "Properties" value string.

READING ase.atoms.Atoms FROM THIS FORMAT

Specific keys indicate special values, with specific order for overriding

Key-value pairs:

  • Lattice -> Atoms.cell, optional [do we want to accept "cell" also?]
    • 3x3 matrix - rows are cell vectors [preferred]
    • 9-vector - 3 cell vectors concatenated [only for backward compat]
    • 3-vector - diagonal entries of cell matrix [?]
  • pbc -> Atoms.pbc, optional
    • 3-vector of bool
    • default [False]*3 if no Lattice, otherwise [True]*3
  • Calculator results, used to set SinglePointCalculator.results dict
    • all per-config properties in ase.calculator.all_properties, with same name
    • scalars, vectors - directly stored
    • stress
      • 6-vector Voigt
      • 9-vector, 3x3 matrix, stored as stress Voigt-6, fail if not symmetric
    • virial -> stress (to convert multiply by -1/cell_vol), same format as stress [warn/fail if stress also present, perhaps only if inconsistent?]

Properties keys (all types are per-atom), types are simple

  • Atoms
    • Z -> numbers
    • species -> numbers, fail if not valid chemical symbol [warn/fail if conflict with Z?]
    • pos -> positions
    • mass -> masses
    • velo -> momenta (get mass from atomic number if missing)
    • same name: initial_charges, initial_magmoms
  • Calculator.results
    • local_energy -> energies
    • forces -> forces [also support “force”? What about overriding, complain if inconsistent?]
    • same name: magmoms (scalar or 3-vector), charges

WRITING ase.atoms.Atoms TO THIS FORMAT

General considerations

  • platform-appropriate EOL
  • [require some specific whitespace convention?]
  • scalars
    • all strings are quoted
    • otherwise stored unquoted
  • arrays
    • use {} [or []?] container marks, comma separated (not backward compatible " and space separated forms)
  • Definitely store (naming as described below)
    • all "first-class" Atoms properties (cell, pbc, numbers, masses, positions, momenta [any others?])
    • all info keys that are scalar, 1-D, 2-D array of prim type
    • all arrays that are scalar (Natoms x 1) or 1-D array( Natoms x (m > 1)) of prim type, shape[1] mapped to number of columns and space separated, not using regular array notation
    • [optionally warn about un-representable quantities?]
  • all Calculator.results key-value pairs, per-config same as info, per-atom same as arrays
  • Perhaps store
    • all info keys, per-config calculator results that are not representable (i.e. not prim type scalar, 1-D, or 2-D for per-config only) but can be mapped to JSON, as string starting with "_JSON "
    • same for arrays [?]
  • In general, keep ASE data type/dimension, invert mapping of names for reading. For quantities that have multiple possible names, use:
    • Lattice, not cell, 3x3 matrix
    • velo, not momenta
    • stress, not virial, as 3x3 matrix [are we OK with this?]

Project details


Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

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

extxyz-0.4.1-cp313-cp313-win_amd64.whl (293.6 kB view details)

Uploaded CPython 3.13Windows x86-64

extxyz-0.4.1-cp313-cp313-manylinux_2_28_x86_64.whl (269.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

extxyz-0.4.1-cp313-cp313-macosx_11_0_x86_64.whl (263.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ x86-64

extxyz-0.4.1-cp313-cp313-macosx_11_0_arm64.whl (274.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

extxyz-0.4.1-cp312-cp312-win_amd64.whl (293.6 kB view details)

Uploaded CPython 3.12Windows x86-64

extxyz-0.4.1-cp312-cp312-manylinux_2_28_x86_64.whl (269.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

extxyz-0.4.1-cp312-cp312-macosx_11_0_x86_64.whl (263.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ x86-64

extxyz-0.4.1-cp312-cp312-macosx_11_0_arm64.whl (274.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

extxyz-0.4.1-cp311-cp311-win_amd64.whl (293.6 kB view details)

Uploaded CPython 3.11Windows x86-64

extxyz-0.4.1-cp311-cp311-manylinux_2_28_x86_64.whl (269.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

extxyz-0.4.1-cp311-cp311-macosx_11_0_x86_64.whl (263.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ x86-64

extxyz-0.4.1-cp311-cp311-macosx_11_0_arm64.whl (274.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

extxyz-0.4.1-cp310-cp310-win_amd64.whl (293.6 kB view details)

Uploaded CPython 3.10Windows x86-64

extxyz-0.4.1-cp310-cp310-manylinux_2_28_x86_64.whl (269.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

extxyz-0.4.1-cp310-cp310-macosx_11_0_x86_64.whl (263.4 kB view details)

Uploaded CPython 3.10macOS 11.0+ x86-64

extxyz-0.4.1-cp310-cp310-macosx_11_0_arm64.whl (274.5 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

Details for the file extxyz-0.4.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: extxyz-0.4.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 293.6 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for extxyz-0.4.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 a3217b8bac7edc9de80e8ae75cbca8c00f8a6c7f6b4c9dd3246912f9d231a61f
MD5 de047b3f25e911fee4a7431aee4dc5bb
BLAKE2b-256 918d1d6e4b4819e2fa0861afe6eb3bb9c13f2d51b996ed9e2de853ff4ba44637

See more details on using hashes here.

File details

Details for the file extxyz-0.4.1-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for extxyz-0.4.1-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 15a766a8f23a35569f0378713fb01bf1cd68e33f5218f3bfb1404bb29b017d9b
MD5 b253928a26edd93d42123f8ce4ce9fd7
BLAKE2b-256 6eb3e854b644c3d7a1a902bf482fa8b187d0e23a762ddb9d48a19c8a0a2a57f4

See more details on using hashes here.

File details

Details for the file extxyz-0.4.1-cp313-cp313-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for extxyz-0.4.1-cp313-cp313-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 4a13dcac4b6592b75b11e6c12c8d11eec1a7d0bfff0e73bcd4625975e1092b98
MD5 59bf63044c36f8aabbb9fcc81b15c968
BLAKE2b-256 7b1b846603f928b8b7a4487fe5f168fab14d693767c94fcf247f2fca41b8adf7

See more details on using hashes here.

File details

Details for the file extxyz-0.4.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for extxyz-0.4.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7a76d6b93b73e9de6b3c3c4211084d80ff39c274a236dd058c3f5f29ae70048e
MD5 c71bf8aabaedcffbfc6456ce9e2fec58
BLAKE2b-256 994bbd4132a74823146db8bb671aa1ed181493fe36f3e0887f9c18c7ee37a3ad

See more details on using hashes here.

File details

Details for the file extxyz-0.4.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: extxyz-0.4.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 293.6 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for extxyz-0.4.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 8cc179df93021d95ab90a673cfb8c765fa18cc036a03ddd09ef834409ffe9e15
MD5 784eadcaae9f035606b5d9c1ecc5abe8
BLAKE2b-256 cf4fec0c0a70511e5a3a9d99229de20415e22ffdeb915573e9faaac38e77d635

See more details on using hashes here.

File details

Details for the file extxyz-0.4.1-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for extxyz-0.4.1-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8b63ada662360595bf6445b040a01e1d9826240609a0f3f4e5d7429a5e19da30
MD5 b1dabc939e5656f5441a64e6c60e52b8
BLAKE2b-256 d90c844b3298e8e7a2cea84463d77706723427e0f8d0284a000ecc4573f84c6f

See more details on using hashes here.

File details

Details for the file extxyz-0.4.1-cp312-cp312-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for extxyz-0.4.1-cp312-cp312-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 2a1b88569b4575a3a94fd56f3e1e59fcc5f2c5e7dd0e9ebb1b16b71e3d051473
MD5 3024f6b32f594f135e4060e1c504e40a
BLAKE2b-256 285dd5352492debf789197fb35602cc68b40d66a857f5e47bda4a80ee1b977a5

See more details on using hashes here.

File details

Details for the file extxyz-0.4.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for extxyz-0.4.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4706fbf3e0c64223e3adcc778a5936fbabdc74171c217d610cb3adbd63a44904
MD5 5a7ba88641b592e5bff18f497f92cf62
BLAKE2b-256 dae769a499a88ca64b0a9e45bba857faef51f7a1a3777fa09d122b328cff0ae4

See more details on using hashes here.

File details

Details for the file extxyz-0.4.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: extxyz-0.4.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 293.6 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for extxyz-0.4.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 0e5545e560cc597abd05832c45127efa293d0282ea11b693356f5a61de8eb95d
MD5 799a63e343fa243de5aaeedcea7c6a3b
BLAKE2b-256 392944dfccacb023dc9662ac4392e9013beaa0d6cd27d588dd8b0a3adffcedf1

See more details on using hashes here.

File details

Details for the file extxyz-0.4.1-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for extxyz-0.4.1-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8295bf8b20e1d5bed188e59ecb81c0eb3b0933c02563db0b6854c5b2ddc6b390
MD5 d57d2549a756ca46e99f6db7227e36a2
BLAKE2b-256 672d9e9ce8b033afa72168095ffd028e460423e47c4127c5316ffefd86913b9e

See more details on using hashes here.

File details

Details for the file extxyz-0.4.1-cp311-cp311-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for extxyz-0.4.1-cp311-cp311-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 c94c47efb0276e1382159330a6e9cdbd8c6469a476763fb2b8c0b412b2f20e05
MD5 4932cdec501f37e6fe3c39d79b659315
BLAKE2b-256 5bf03e7772345cb6b97e779b80649e0dfcb69589465d06a7e914eca707a518f8

See more details on using hashes here.

File details

Details for the file extxyz-0.4.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for extxyz-0.4.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d4ec7e24fcea8a0b3aa127d96848ebec5083c9673f1f64a7f1c1321616ec7986
MD5 9a3225f8990b4a517e224fb736ba1300
BLAKE2b-256 1aab82a6a5c0844e9a2fbccd7744deacc1bd0fdef1169478719c9c238e66c962

See more details on using hashes here.

File details

Details for the file extxyz-0.4.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: extxyz-0.4.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 293.6 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for extxyz-0.4.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 fb597236aeece8acfad2ea9ae7b74780409f2cf5bd50125ba7e80d6e91e697a4
MD5 8544c0aa7726a45506dc21f8b3768b62
BLAKE2b-256 92a0345c703405f08d43bbf988601f632e0d465a0e4e4b910edb7921f2782e79

See more details on using hashes here.

File details

Details for the file extxyz-0.4.1-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for extxyz-0.4.1-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0f12109d184def796c07ecf1119af9790e9f3920009d9400bc345c97b418b47d
MD5 74866095fba21dfa90cf71ac3f52a244
BLAKE2b-256 4f172829fd2fa613af7c88451158f8ced87c43d8eb025ee6ffae163835741f07

See more details on using hashes here.

File details

Details for the file extxyz-0.4.1-cp310-cp310-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for extxyz-0.4.1-cp310-cp310-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 f58533ff2413a2525777640879e1d4bea712306de005f09b21eadb122c152da1
MD5 4b5c56ded0f34a849a4ce62df21f4b55
BLAKE2b-256 bc70046bea0f9e402ddd2091af43bbec30b82e5140826c9edb785492c4e05638

See more details on using hashes here.

File details

Details for the file extxyz-0.4.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for extxyz-0.4.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 09c5b6599bcfbb00d7959c26202358ae1825cf49df41967c360d30e94733be54
MD5 4281e253ac0f7fa14941af47eb728d1f
BLAKE2b-256 c20d2ef11545fa272f47a8488dc96921ca0ce10a83f2b9078e3dff1e9c78f95a

See more details on using hashes here.

Supported by

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