Skip to main content

No project description provided

Project description

flour is a Python library for really fast chemical file reading and writing.


Installation

pip install flour

.cube files

import numpy as np
import flour

# Write the cube file.
flour.write_cube(
    path="molecule.cube",
    title1="The first line of the cube file",
    title2="The second line of the cube file",
    # The atomic number of each atom.
    atoms=np.array([1, 35], dtype=np.uint8),
    # The charge on each atom.
    charges=np.array([0., 0.]),
    # The position matrix of the molecule.
    positions=np.array([
        [-0.5, 0., 0.],
        [1., 0., 0.],
    ]),
    # The origin of the voxel grid.
    voxel_origin=np.array([-4.5, -4.5, -4.5]),
    # The a, b, c vectors of a single voxel.
    voxel_size=np.array(
        [
            [0.5, 0., 0.],
            [0., 0.5, 0.],
            [0., 0., 0.5],
        ],
    ),
    # A 20 x 20 x 20 voxel grid.
    voxels=np.random.rand(20, 20, 20),
)

# Read the cube file.
cube_data = flour.read_cube("molecule.cube")
cube_data.atoms  # The atomic number of each atom.
cube_data.charges  # The charge of each atom.
cube_data.positions  # The position matrix of the molecule.
cube_data.grid.origin  # The origin of the voxel grid.
cube_data.grid.voxel_size  # The a, b, c vectors of a single voxel.
cube_data.grid.voxels  # The voxel grid.

Developer guide

If you want to develop FLOUR there’s a couple of handy things you should know. FLOUR is built using the excellent maturin library. This means that to build the library you run

maturin develop --extras=dev --profile=release

and that’s more or less all there is to it. The only other thing to note is that we do have a justfile, which contains commands you might find helpful for formatting and linting your code. To use the justfile you should grab just.

Project details


Download files

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

Source Distribution

flour-1.0.1.tar.gz (10.7 kB view hashes)

Uploaded Source

Built Distributions

flour-1.0.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (625.4 kB view hashes)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

flour-1.0.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (625.2 kB view hashes)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

flour-1.0.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (627.7 kB view hashes)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

flour-1.0.1-cp311-none-win_amd64.whl (181.1 kB view hashes)

Uploaded CPython 3.11 Windows x86-64

flour-1.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (625.1 kB view hashes)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

flour-1.0.1-cp311-cp311-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl (571.4 kB view hashes)

Uploaded CPython 3.11 macOS 10.9+ universal2 (ARM64, x86-64) macOS 10.9+ x86-64 macOS 11.0+ ARM64

flour-1.0.1-cp310-none-win_amd64.whl (181.1 kB view hashes)

Uploaded CPython 3.10 Windows x86-64

flour-1.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (625.1 kB view hashes)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

flour-1.0.1-cp310-cp310-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl (571.4 kB view hashes)

Uploaded CPython 3.10 macOS 10.9+ universal2 (ARM64, x86-64) macOS 10.9+ x86-64 macOS 11.0+ ARM64

flour-1.0.1-cp39-none-win_amd64.whl (181.4 kB view hashes)

Uploaded CPython 3.9 Windows x86-64

flour-1.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (625.4 kB view hashes)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

flour-1.0.1-cp39-cp39-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl (572.3 kB view hashes)

Uploaded CPython 3.9 macOS 10.9+ universal2 (ARM64, x86-64) macOS 10.9+ x86-64 macOS 11.0+ ARM64

flour-1.0.1-cp38-none-win_amd64.whl (181.4 kB view hashes)

Uploaded CPython 3.8 Windows x86-64

flour-1.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (625.7 kB view hashes)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

flour-1.0.1-cp38-cp38-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl (572.7 kB view hashes)

Uploaded CPython 3.8 macOS 10.9+ universal2 (ARM64, x86-64) macOS 10.9+ x86-64 macOS 11.0+ ARM64

flour-1.0.1-cp37-none-win_amd64.whl (181.4 kB view hashes)

Uploaded CPython 3.7 Windows x86-64

flour-1.0.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (625.7 kB view hashes)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

flour-1.0.1-cp37-cp37m-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl (572.9 kB view hashes)

Uploaded CPython 3.7m macOS 10.9+ universal2 (ARM64, x86-64) macOS 10.9+ x86-64 macOS 11.0+ ARM64

Supported by

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