Skip to main content

A Python game engine with Rust-powered native performance

Project description

Logo

PyG Engine

A Python game engine built on Rust and WebGPU (wgpu) with GPU rendering enabled by default

PyG Engine combines the ease of use of Python with the raw performance and safety of Rust. It leverages wgpu for modern, hardware-accelerated rendering across all major platforms (Vulkan, DirectX 12, Metal, OpenGL).

NOTE: This project is currently in Alpha. Features are under active development.

:rocket: Key Features

  • Modern Rendering: Powered by wgpu for cross-platform, high-performance graphics.
  • Rust Core: The heavy lifting is done in Rust, ensuring speed and memory safety.
  • Pythonic API: Designed to feel natural for Python developers.
  • Flexible Drawing: Easily draw lines, rectangles, circles, and pixels using pixel coordinates.
  • Mesh System: Render textured quads and game objects with a component-based architecture (using normalized coordinates).
  • Thread Safety: Safely issue rendering commands from background Python threads.
  • Robust Logging: Integrated tracing-based logging system with file support and configurable levels.
  • UI Components: Built in UI components built with extendability and custom styling. Easy callback function implementations included for buttons.
  • Unified Input System: Easily implement controls with an Axis system, keyboard macros, and event-based callback functions.

:books: Documentation

:eyes: Gallary

  • Snake: One of the provided examples

snake

:package: Installation

Requires Python 3.7+.

From PyPI (Coming Soon)

pip install pyg-engine

From Source

git clone https://github.com/aram-ap/pyg-engine.git
cd pyg-engine
pip install -e .

:zap: Quick Start

1. Basic Window & Logging

import pyg_engine as pyg

# Initialize the engine
engine = pyg.Engine(log_level="INFO")
engine.log_info("Welcome to PyG Engine!")

# Run a window (blocks until closed)
engine.run(title="My First Window", width=800, height=600)

2. Drawing Primitives (Pixel Coordinates)

import pyg_engine as pyg

engine = pyg.Engine()

# Draw shape objects
engine.draw([
    pyg.Line(
        start=pyg.Vec2(20, 20),
        end=pyg.Vec2(220, 80),
        color=pyg.Color.CYAN,
        thickness=2.0,
    ),
    pyg.Rect(
        position=pyg.Vec2(60, 120),
        width=180,
        height=90,
        color=pyg.Color.ORANGE,
        filled=False,
        thickness=3.0,
    ),
    pyg.Arc(
        position=pyg.Vec2(320, 180),
        radius=42,
        start_angle=0.0,
        end_angle=3.8,
        color=pyg.Color.YELLOW,
        filled=False,
        thickness=5.0,
    ),
])

# Draw text as a shape object
engine.draw(
    pyg.Text(
        "Hello PyG",
        position=pyg.Vec2(32, 48),
        color=pyg.Color.WHITE,
        font_size=28.0,
    )
)

# Start the application
engine.run(title="Direct Draw Demo", show_fps_in_title=True)

3. Using Game Objects & Meshes (World Coordinates)

import pyg_engine as pyg

engine = pyg.Engine()

# Create a GameObject
player = pyg.GameObject("Player")

# Add components through the shared component API
mesh = pyg.MeshComponent("PlayerSprite")
mesh.set_geometry(pyg.Mesh.Rect(1.0, 1.0))  # 1 world unit wide and tall
mesh.set_fill_color(pyg.Color.RED)
player.add_component(mesh)

# Local transform (world-space while unparented)
player.position = pyg.Vec2(0.0, 0.0)
player.scale = pyg.Vec2(0.5, 0.5)

player_id = engine.add_game_object(player)

# Runtime lookup + lifecycle helpers
runtime_player = engine.objects.get_id(player_id)
camera = engine.camera
camera.position = pyg.Vec2(0.0, 0.0)
camera.viewport_size = pyg.Vec2(8.0, 4.5)
runtime_player.enabled = True
# engine.destroy(runtime_player)

engine.run(title="Game Object Demo")

4. World Text Meshes And Camera Properties

import pyg_engine as pyg

engine = pyg.Engine()

label = pyg.GameObject("WorldLabel")
label.position = pyg.Vec2(0.0, 1.0)
label.scale = pyg.Vec2(0.004, 0.004)

text_mesh = pyg.TextMeshComponent("Hello from a GameObject", font_size=48.0)
text_mesh.color = pyg.Color.WHITE
label.add_text_mesh_component(text_mesh)

engine.add_game_object(label)

# Camera behaves like an object-focused API
engine.camera.position = pyg.Vec2(0.0, 0.0)
engine.camera.position.x = 1.5
engine.camera.viewport_size = pyg.Vec2(10.0, 5.625)
engine.camera.aspect_mode = pyg.CameraAspectMode.FIT_BOTH

engine.run(title="Text Mesh Demo")

5. Function-Based Update Loop

import pyg_engine as pyg

engine = pyg.Engine()

def update(dt, engine, frame):
    if engine.input.key_down(pyg.Keys.ESCAPE):
        engine.log("Exiting Pyg-Engine!")
        return False
    engine.clear_draw_commands()
    # draw/update game state...

engine.run(
    title="Callback Loop",
    show_fps_in_title=True,
    update=update,
    max_delta_time=0.1,
)

run(update=...) supports callbacks with no arguments, a single context argument, or named argument injection (dt, engine, input, elapsed_time, frame, user_data).

For fully manual loop control, use start_manual(...) then drive poll_events(), update(), and render() yourself. The callback acts as a global frame hook; planned per-GameObject scripts are intended to run in the engine update phase before this global callback. Runtime guard: calling run(...)/start_manual(...) while another loop is active raises RuntimeError.

:wrench: Architecture & Roadmap

Current Capabilities

  • Window Management: Resizable windows, VSync control, Fullscreen support.
  • 2D Rendering:
    • Primitives: Shape-first immediate drawing using pixel coordinates.
    • Text: Built-in open-source font rendering with optional custom font files.
    • Meshes: Component-based world-space rendering plus immediate mesh drawing.
    • Layers: Float draw ordering for composition.
  • Component System: Basic GameObject with TransformComponent and MeshComponent.
  • Input System: Rust input manager (Keyboard, Mouse, Gamepad) to Python.
  • Loop Control: run(...) with optional callback and explicit start_manual(...) mode.
  • Object Positioning System: A straightforward method for moving and transforming your objects.
  • Camera Controls: Move your camera, customize backgrounds, set view area and fitment properties.
  • UI System: Built-in UI components.

Planned Features (Roadmap)

  • Audio Manager: Audio loading, playback, mixing, and timing.
  • Engine Loop (Upgrade): Coroutines and global event systems.
  • Physics Engine: 2D rigid body physics and collision detection.
  • Scripting: Enhanced script attachment to GameObjects with frame-lifecycle hooks.
  • Additional Primitives: Added capabilities for more basic shapes, arcs, SVGs, and function-based shapes.
  • Advanced Rendering: Shaders, Particles, and Post-processing.

:open_file_folder: Examples

Check the examples/ directory for more complete demonstrations:

  • python_direct_draw_demo.py: Shows the new engine.draw(...) shape API.
  • python_mesh_demo.py: Demonstrates GameObjects, object-based mesh geometry, and world text meshes.
  • python_threading_demo.py: Advanced: Spawns a background thread that safely updates the UI using engine.get_handle().
  • python_manual_loop.py: Shows how to control the game loop manually (start_manual -> poll -> update -> render).
  • python_function_update_demo.py: Shows callback-based loop control via engine.run(update=...).
  • python_snake_demo.py: Playable Snake game using immediate-mode drawing and keyboard input.
  • python_camera_worldspace_demo.py: Shows object-style camera control along with world-space objects and HUD text.
  • ui_demo.py: Demonstrates the UI system, button functions, and text label updates.

:hammer_and_wrench: Development & Testing

To set up the development environment:

# Install in editable mode
pip install -e .

# Run tests
pytest tests/ -v

📄 License

MIT License

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

pyg_engine-1.2.7.tar.gz (15.1 MB view details)

Uploaded Source

Built Distributions

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

pyg_engine-1.2.7-cp314-cp314t-win_amd64.whl (4.5 MB view details)

Uploaded CPython 3.14tWindows x86-64

pyg_engine-1.2.7-cp314-cp314t-win32.whl (4.2 MB view details)

Uploaded CPython 3.14tWindows x86

pyg_engine-1.2.7-cp314-cp314t-musllinux_1_2_x86_64.whl (6.2 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

pyg_engine-1.2.7-cp314-cp314t-manylinux_2_28_x86_64.whl (6.1 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ x86-64

pyg_engine-1.2.7-cp314-cp314t-macosx_11_0_arm64.whl (4.1 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

pyg_engine-1.2.7-cp314-cp314-win_amd64.whl (4.6 MB view details)

Uploaded CPython 3.14Windows x86-64

pyg_engine-1.2.7-cp314-cp314-win32.whl (4.2 MB view details)

Uploaded CPython 3.14Windows x86

pyg_engine-1.2.7-cp314-cp314-musllinux_1_2_x86_64.whl (6.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

pyg_engine-1.2.7-cp314-cp314-manylinux_2_28_x86_64.whl (6.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

pyg_engine-1.2.7-cp314-cp314-macosx_11_0_arm64.whl (4.1 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pyg_engine-1.2.7-cp313-cp313-win_amd64.whl (4.4 MB view details)

Uploaded CPython 3.13Windows x86-64

pyg_engine-1.2.7-cp313-cp313-win32.whl (4.1 MB view details)

Uploaded CPython 3.13Windows x86

pyg_engine-1.2.7-cp313-cp313-musllinux_1_2_x86_64.whl (6.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pyg_engine-1.2.7-cp313-cp313-manylinux_2_28_x86_64.whl (6.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

pyg_engine-1.2.7-cp313-cp313-macosx_11_0_arm64.whl (4.0 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pyg_engine-1.2.7-cp312-cp312-win_amd64.whl (4.4 MB view details)

Uploaded CPython 3.12Windows x86-64

pyg_engine-1.2.7-cp312-cp312-win32.whl (4.1 MB view details)

Uploaded CPython 3.12Windows x86

pyg_engine-1.2.7-cp312-cp312-musllinux_1_2_x86_64.whl (6.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pyg_engine-1.2.7-cp312-cp312-manylinux_2_28_x86_64.whl (6.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

pyg_engine-1.2.7-cp312-cp312-macosx_11_0_arm64.whl (4.1 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pyg_engine-1.2.7-cp311-cp311-win_amd64.whl (4.4 MB view details)

Uploaded CPython 3.11Windows x86-64

pyg_engine-1.2.7-cp311-cp311-win32.whl (4.1 MB view details)

Uploaded CPython 3.11Windows x86

pyg_engine-1.2.7-cp311-cp311-musllinux_1_2_x86_64.whl (6.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pyg_engine-1.2.7-cp311-cp311-manylinux_2_28_x86_64.whl (6.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

pyg_engine-1.2.7-cp311-cp311-macosx_11_0_arm64.whl (4.1 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pyg_engine-1.2.7-cp310-cp310-win_amd64.whl (4.4 MB view details)

Uploaded CPython 3.10Windows x86-64

pyg_engine-1.2.7-cp310-cp310-win32.whl (4.1 MB view details)

Uploaded CPython 3.10Windows x86

pyg_engine-1.2.7-cp310-cp310-musllinux_1_2_x86_64.whl (6.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pyg_engine-1.2.7-cp310-cp310-manylinux_2_28_x86_64.whl (6.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

pyg_engine-1.2.7-cp310-cp310-macosx_11_0_arm64.whl (4.1 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pyg_engine-1.2.7-cp39-cp39-win_amd64.whl (4.4 MB view details)

Uploaded CPython 3.9Windows x86-64

pyg_engine-1.2.7-cp39-cp39-win32.whl (4.1 MB view details)

Uploaded CPython 3.9Windows x86

pyg_engine-1.2.7-cp39-cp39-musllinux_1_2_x86_64.whl (6.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

pyg_engine-1.2.7-cp39-cp39-manylinux_2_28_x86_64.whl (6.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ x86-64

pyg_engine-1.2.7-cp39-cp39-macosx_11_0_arm64.whl (4.1 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pyg_engine-1.2.7-cp38-cp38-win_amd64.whl (4.4 MB view details)

Uploaded CPython 3.8Windows x86-64

pyg_engine-1.2.7-cp38-cp38-win32.whl (4.1 MB view details)

Uploaded CPython 3.8Windows x86

pyg_engine-1.2.7-cp38-cp38-musllinux_1_2_x86_64.whl (6.2 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

pyg_engine-1.2.7-cp38-cp38-manylinux_2_28_x86_64.whl (6.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.28+ x86-64

pyg_engine-1.2.7-cp38-cp38-macosx_11_0_arm64.whl (4.1 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

File details

Details for the file pyg_engine-1.2.7.tar.gz.

File metadata

  • Download URL: pyg_engine-1.2.7.tar.gz
  • Upload date:
  • Size: 15.1 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pyg_engine-1.2.7.tar.gz
Algorithm Hash digest
SHA256 543f8cc6d5f00d67d29ba88fa9f53ad7102069a8de37db706e80e898bc34f514
MD5 51e8993a397860e496fe115d87a1075f
BLAKE2b-256 c0dd5ebfbc0ef7a52271c49b57b15052b1f7fd3c2def90d684c676507f053e1c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyg_engine-1.2.7.tar.gz:

Publisher: publish-to-pypi.yml on aram-ap/pyg-engine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyg_engine-1.2.7-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for pyg_engine-1.2.7-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 3e97794f4e3e6a89d9eb9797ba7bd1826870dfbfa2c25a164e02c7ca987d70dc
MD5 e5fdcc84b3fc9e85296f6ff73dab43ef
BLAKE2b-256 db9f825c4050e555e42532d3fb2d0336b4ac889b874d2885dba76809b1468f18

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyg_engine-1.2.7-cp314-cp314t-win_amd64.whl:

Publisher: publish-to-pypi.yml on aram-ap/pyg-engine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyg_engine-1.2.7-cp314-cp314t-win32.whl.

File metadata

  • Download URL: pyg_engine-1.2.7-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 4.2 MB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pyg_engine-1.2.7-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 5fe8b593031a3f508ee9f724c478d7bb7404137d430ae4e872da769fb754ab37
MD5 1010729ce4ea1e2b57dad539e0628e5a
BLAKE2b-256 ae97f2c608087d24638399349e7a50fbadc94cc5f5271afb3284f30d10629a84

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyg_engine-1.2.7-cp314-cp314t-win32.whl:

Publisher: publish-to-pypi.yml on aram-ap/pyg-engine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyg_engine-1.2.7-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyg_engine-1.2.7-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 31442a46b329d4d3ee27532779b347030cddc38e23f0575b3de3b6a0a372205b
MD5 c8056dbbf8d5e19673d36e59faa12bfa
BLAKE2b-256 144782caf26a3aab6aa369e460aa07b4c268913fec6f0bebaa498778bb792e98

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyg_engine-1.2.7-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: publish-to-pypi.yml on aram-ap/pyg-engine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyg_engine-1.2.7-cp314-cp314t-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyg_engine-1.2.7-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c247212f43371a51f7a3435ea7ec8ce1bdbb5006c0f17d93d27fefbcff6717cd
MD5 a3c69b591c456c0324fc2fb806a18c17
BLAKE2b-256 eb066c4e0aa74c1b74df182f56b79bdc7740fa734517949347cf4e582444831a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyg_engine-1.2.7-cp314-cp314t-manylinux_2_28_x86_64.whl:

Publisher: publish-to-pypi.yml on aram-ap/pyg-engine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyg_engine-1.2.7-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyg_engine-1.2.7-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bbace2614db1893f220324f75d5fa30b634c91352a7bcbfe53fb017512e6c77e
MD5 510076db41b11f9c3f2657f9aad1a8ce
BLAKE2b-256 2bc390dca8a39fd05e49ce51603374cc1846b280a1711a98899aa5d9c921c64c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyg_engine-1.2.7-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: publish-to-pypi.yml on aram-ap/pyg-engine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyg_engine-1.2.7-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: pyg_engine-1.2.7-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 4.6 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pyg_engine-1.2.7-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 1d086234714d257ffb6cde5852ddc0a75950c85a7ce922c545fb06c7e27bbb32
MD5 d61c0f9499bb9d706ee6faacadb3c150
BLAKE2b-256 6c297b713b32978b6cbfe70e38ab47854f14223ea3b267c1c1e68c1c4f76801e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyg_engine-1.2.7-cp314-cp314-win_amd64.whl:

Publisher: publish-to-pypi.yml on aram-ap/pyg-engine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyg_engine-1.2.7-cp314-cp314-win32.whl.

File metadata

  • Download URL: pyg_engine-1.2.7-cp314-cp314-win32.whl
  • Upload date:
  • Size: 4.2 MB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pyg_engine-1.2.7-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 fa6124491bd16818c9de1b1a4a1bdacca4082357f2f52fd77f6d5436412b07d9
MD5 327a5ce87574dbd5dd7a5d2b0ef0cad5
BLAKE2b-256 b67cf79410610ffd76c4dfacbecd0ce21baa06b5b06fdb6cedd103327315c5a3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyg_engine-1.2.7-cp314-cp314-win32.whl:

Publisher: publish-to-pypi.yml on aram-ap/pyg-engine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyg_engine-1.2.7-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyg_engine-1.2.7-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7177c52f81932333b1b63eba0a5ddae709918d9a6a3f1995acc9786266033d47
MD5 c2156568b16d59c489ab7dc1ef516fc0
BLAKE2b-256 ae3522d46944b6488001f9a021192cfa93601e79d25fc1d1cf6f1e89367da856

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyg_engine-1.2.7-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: publish-to-pypi.yml on aram-ap/pyg-engine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyg_engine-1.2.7-cp314-cp314-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyg_engine-1.2.7-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bd6962cc4c22771145566fdb8c9991e34a9398b67cbe397c416b8775b00716ac
MD5 1ff09930eb0ecb76ca66cff06a0d964f
BLAKE2b-256 0f8d02604976538eba8f16d2b973a77f0cc8ad076eb8c54831ad78ddd6bbb925

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyg_engine-1.2.7-cp314-cp314-manylinux_2_28_x86_64.whl:

Publisher: publish-to-pypi.yml on aram-ap/pyg-engine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyg_engine-1.2.7-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyg_engine-1.2.7-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a417221585d9916e1a9519751ea48bd788cc32f43bba33a0e628bd3be7ece097
MD5 7721ab01c2802f6d5f5e68975e5f2989
BLAKE2b-256 4b176f38eff25dc99a74041b4ee02f1ba05c06846a6d548436322be1bef4e96e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyg_engine-1.2.7-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: publish-to-pypi.yml on aram-ap/pyg-engine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyg_engine-1.2.7-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: pyg_engine-1.2.7-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 4.4 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pyg_engine-1.2.7-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 6cd90014745912197d4520b8afde19a2444ec79bb28a864977d5a2b7417b3b8f
MD5 ba787520beb7fb405ceb96f320c060f2
BLAKE2b-256 91dada7291137bf84b21bea21956057d8868ea9ef0f930a751fef89adcc67745

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyg_engine-1.2.7-cp313-cp313-win_amd64.whl:

Publisher: publish-to-pypi.yml on aram-ap/pyg-engine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyg_engine-1.2.7-cp313-cp313-win32.whl.

File metadata

  • Download URL: pyg_engine-1.2.7-cp313-cp313-win32.whl
  • Upload date:
  • Size: 4.1 MB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pyg_engine-1.2.7-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 0a16786ece1dd44509efe8a241c6062e8025654caf7254fcd3d27770c078e6cd
MD5 2ed008270fa5270e4432967a7d88c5a7
BLAKE2b-256 4edc5b72e7fc68d4d5ee3f0419cbd57a6ada303786dfd29761591885b3c2d534

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyg_engine-1.2.7-cp313-cp313-win32.whl:

Publisher: publish-to-pypi.yml on aram-ap/pyg-engine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyg_engine-1.2.7-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyg_engine-1.2.7-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 88ef56b0e647f3dd9a5f8bb535fd6aeb2c74c09f0130fe4435f24c2a6a6f1bb4
MD5 adadb008cea319c5e3aaedbe691c3e70
BLAKE2b-256 8eb483235dc16dd83071adefdb931623b7d6d29bd9c416b91ebd71d9efad0cf8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyg_engine-1.2.7-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: publish-to-pypi.yml on aram-ap/pyg-engine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyg_engine-1.2.7-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyg_engine-1.2.7-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2d42a1092543d3cbd4b465a476cbd940e85c6aac96a32d09466ea2bc0ef8035c
MD5 58302db2cbb437263d9cacfc954e8803
BLAKE2b-256 55570089da777e56d8bae9781d06f8372fd5998e9e87c117aa7577fe9bddc9f9

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyg_engine-1.2.7-cp313-cp313-manylinux_2_28_x86_64.whl:

Publisher: publish-to-pypi.yml on aram-ap/pyg-engine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyg_engine-1.2.7-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyg_engine-1.2.7-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 65c07c557a457ac823ed39fec7e2463a3ca7470ec3be217cc6279d2e22d11c7a
MD5 d30d5ea4a30480ddbdaac8bbc43da231
BLAKE2b-256 a554aa40f16115195a954d183d987160bf6810e269983e820329b735c8db5728

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyg_engine-1.2.7-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: publish-to-pypi.yml on aram-ap/pyg-engine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyg_engine-1.2.7-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: pyg_engine-1.2.7-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 4.4 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pyg_engine-1.2.7-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ee42e6df319ebd2644e48b1f252cd19c023702fdd1abde042219f4d016769d77
MD5 e4a6d5e63a89442ccf8a1fe576589798
BLAKE2b-256 5299badcfa38ee07d34fc205303ab4a16b924a3cea1297cb5bdb9102eb0cd26f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyg_engine-1.2.7-cp312-cp312-win_amd64.whl:

Publisher: publish-to-pypi.yml on aram-ap/pyg-engine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyg_engine-1.2.7-cp312-cp312-win32.whl.

File metadata

  • Download URL: pyg_engine-1.2.7-cp312-cp312-win32.whl
  • Upload date:
  • Size: 4.1 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pyg_engine-1.2.7-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 ab16eced584a9b7970b5ff4a5dd35b34b8b28e605e1c1170cb61c05ffbad30c3
MD5 cd826f37cb2b9cbc81ab30ddcc50f5aa
BLAKE2b-256 61dd7e50e01adab86a341da858bf17ce2e357d2deb7b0c14372d50f399c78404

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyg_engine-1.2.7-cp312-cp312-win32.whl:

Publisher: publish-to-pypi.yml on aram-ap/pyg-engine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyg_engine-1.2.7-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyg_engine-1.2.7-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 86a69e39064724e696e68b0818a2c4e777db6bb77172299b1095cce9aa15922d
MD5 aebfaab57a06030f2cbd0b7f84a2f0cb
BLAKE2b-256 07bdc2652cb8621587d3bea09c723ee1d7c933434246cd7ccc1797dd644a58bf

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyg_engine-1.2.7-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: publish-to-pypi.yml on aram-ap/pyg-engine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyg_engine-1.2.7-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyg_engine-1.2.7-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f6c5bb409b966acb88b5b6bfbca1ebfa5b55095c4dc6f720d06aee67c53974d5
MD5 dea930ae83a3b51e8b8236bb6be0fc65
BLAKE2b-256 aa01982a3e471970c7b3aeec1f1a4af235d0deab6d31766b26d0f50b9d8ac9dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyg_engine-1.2.7-cp312-cp312-manylinux_2_28_x86_64.whl:

Publisher: publish-to-pypi.yml on aram-ap/pyg-engine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyg_engine-1.2.7-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyg_engine-1.2.7-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 37fc9b4cf7187ed88772c44e16637c63deadc318685c017c62efb88057fd0d2c
MD5 d54e9b19e080a7d44cd25572e40e1d96
BLAKE2b-256 6f9500d1e22310bdd1231557f1a40416048f01120625c34c5d2934672239ddd3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyg_engine-1.2.7-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: publish-to-pypi.yml on aram-ap/pyg-engine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyg_engine-1.2.7-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: pyg_engine-1.2.7-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 4.4 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pyg_engine-1.2.7-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 39d5d374d4b968dc99d4725f8b2e4a2745dbeddbd0f0026ba6e9e5d4a8342906
MD5 65f9882d8e3bd693411f96bbf1cee82b
BLAKE2b-256 3767d7b31385a57a225b827c0d658400713b825cc49e358d86abb98237d9a0bb

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyg_engine-1.2.7-cp311-cp311-win_amd64.whl:

Publisher: publish-to-pypi.yml on aram-ap/pyg-engine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyg_engine-1.2.7-cp311-cp311-win32.whl.

File metadata

  • Download URL: pyg_engine-1.2.7-cp311-cp311-win32.whl
  • Upload date:
  • Size: 4.1 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pyg_engine-1.2.7-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 2e98febdd7bf7043c82575f056e21a2577112798a0b2160ab3d029c9a7e82865
MD5 a4aafd8e41c9eacb2b7e844e298a2554
BLAKE2b-256 b357009cfa9c639b87c2b1fd0f845c2f0bea9b8163504da2578b9724dda7a0ba

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyg_engine-1.2.7-cp311-cp311-win32.whl:

Publisher: publish-to-pypi.yml on aram-ap/pyg-engine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyg_engine-1.2.7-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyg_engine-1.2.7-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9674c5155dd34df73efbe81ec29d6e0353b82c1239c35f80bac7c2b8e5c67634
MD5 a3c1c7ba463ea6e6abe218428d5274c3
BLAKE2b-256 23de932bb5b4e84935ebc58e9da0b04135870b476e9fb9275934f5c8f8b9a919

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyg_engine-1.2.7-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: publish-to-pypi.yml on aram-ap/pyg-engine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyg_engine-1.2.7-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyg_engine-1.2.7-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b03c5f24f8b8d3c291dfc540f79707002fb3954792ba49a8de7096bfa4ba941c
MD5 2b77e85da5884372abdba13756ac97f7
BLAKE2b-256 6817c628a77ad2b95b325aaddfb5400211889ae915d298177c0bd8b76a305718

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyg_engine-1.2.7-cp311-cp311-manylinux_2_28_x86_64.whl:

Publisher: publish-to-pypi.yml on aram-ap/pyg-engine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyg_engine-1.2.7-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyg_engine-1.2.7-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 31885e24025eee9004ae6c9e9914ba58d0b71101bf51639a494f9572b47463ff
MD5 7abadcbf3c3b2c092d7148ed5e87587e
BLAKE2b-256 45372715888aa4050a6b098f41055e8f471802cd3d742fc140c6c5d501fe4fac

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyg_engine-1.2.7-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: publish-to-pypi.yml on aram-ap/pyg-engine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyg_engine-1.2.7-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: pyg_engine-1.2.7-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 4.4 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pyg_engine-1.2.7-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 34704569d065bc0ea8b13d2d6a2ff0534f49a02ef026ee1aa3154789ccd64c43
MD5 403697e390342d73685e6a6059eb5073
BLAKE2b-256 fc6a1949866d4f649b4d818599a573bdebd19af67b83646a6cbf1704726c8e47

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyg_engine-1.2.7-cp310-cp310-win_amd64.whl:

Publisher: publish-to-pypi.yml on aram-ap/pyg-engine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyg_engine-1.2.7-cp310-cp310-win32.whl.

File metadata

  • Download URL: pyg_engine-1.2.7-cp310-cp310-win32.whl
  • Upload date:
  • Size: 4.1 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pyg_engine-1.2.7-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 442f1a0b7940f056d27462e6b55c2774dbea6bb878763010674653971f681523
MD5 390e932bf448b8202871ccd3dc93a1b1
BLAKE2b-256 d1dcfd3594ae9707952d2135eb45d6a176403b87deb71b07851c4e4c0bbcf644

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyg_engine-1.2.7-cp310-cp310-win32.whl:

Publisher: publish-to-pypi.yml on aram-ap/pyg-engine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyg_engine-1.2.7-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyg_engine-1.2.7-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 989ce80a5af0c57f17323128b365e3f4314301eaf583791e272f35b167a6632c
MD5 ab5a139d80b0771623d5f48dd240a1d8
BLAKE2b-256 c587b6bbfdc8f822492586ecb5836d37e33e1c43efa3096ecc416942b2d7b5ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyg_engine-1.2.7-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: publish-to-pypi.yml on aram-ap/pyg-engine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyg_engine-1.2.7-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyg_engine-1.2.7-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2418ab8b8484ebe6fd5a8eb18b7c3336ed7bf7c228814222db72a243c525af93
MD5 3a2bf993e21ae2199f391a06f459e5d2
BLAKE2b-256 c0ebe2705a33a5f28ecca2ad1524b504116f59f47428ebc058a75e14f38ad3ff

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyg_engine-1.2.7-cp310-cp310-manylinux_2_28_x86_64.whl:

Publisher: publish-to-pypi.yml on aram-ap/pyg-engine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyg_engine-1.2.7-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyg_engine-1.2.7-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b7fe24db032ef39351a0d34806426f27785386f37616031e073df12c87c6263b
MD5 1425fe1748bf097056b73c7ef95c025d
BLAKE2b-256 9dc5c1658a616abc16574abc5ec175cd267bfb3536972846590335de8d3f3b77

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyg_engine-1.2.7-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: publish-to-pypi.yml on aram-ap/pyg-engine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyg_engine-1.2.7-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: pyg_engine-1.2.7-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 4.4 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pyg_engine-1.2.7-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 0ca12471b81a17852382342e991859d4895e3601716f1f05e4c3890cbf0e040c
MD5 dd5942f44762ef23c6fe22d2bd2aeedf
BLAKE2b-256 14cd5c3e725ec57b3966e948d23b1168d13a8251f70fddc8693ecd93d5ee8b3d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyg_engine-1.2.7-cp39-cp39-win_amd64.whl:

Publisher: publish-to-pypi.yml on aram-ap/pyg-engine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyg_engine-1.2.7-cp39-cp39-win32.whl.

File metadata

  • Download URL: pyg_engine-1.2.7-cp39-cp39-win32.whl
  • Upload date:
  • Size: 4.1 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pyg_engine-1.2.7-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 792c50f82c679da392241ceea94fe6d46074013fa95363906330b9d1a804b45e
MD5 68d2f9db1cf63eec8e9285967dd7e2c3
BLAKE2b-256 28bb638c9b16cdeb5e23fd7752e10ac5408f4aa66b40854dbd96fa1256270e44

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyg_engine-1.2.7-cp39-cp39-win32.whl:

Publisher: publish-to-pypi.yml on aram-ap/pyg-engine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyg_engine-1.2.7-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyg_engine-1.2.7-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 22dd7cc0fa9ca1fc43bc779f1f85ac96f7690fb0ba21ec11dd6ebc3b5aadf79b
MD5 c81604e7129d68f9e3b47cafa8982f1c
BLAKE2b-256 a97b482aa207736e2c51914b8f04f27fbb0dc2842aeb0929d3c7ea851c6e6d7d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyg_engine-1.2.7-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: publish-to-pypi.yml on aram-ap/pyg-engine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyg_engine-1.2.7-cp39-cp39-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyg_engine-1.2.7-cp39-cp39-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7f23fb4aa891ad3a7b54fc33e555746d1363093fdedddb2da0a7e8ae9599b063
MD5 4b39f154b5ca018ee2694ed0d6ac0879
BLAKE2b-256 ad22432f1b0590d4c9bf6905ef8cba7d0ca07a46141e3fc0b22243bc3b6c57cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyg_engine-1.2.7-cp39-cp39-manylinux_2_28_x86_64.whl:

Publisher: publish-to-pypi.yml on aram-ap/pyg-engine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyg_engine-1.2.7-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyg_engine-1.2.7-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fa002ae220db4526af3c1661b6d9099600b99ac3dd7f6e9fec8df57047544d95
MD5 502d0225403f739d741406bbbf4cbf92
BLAKE2b-256 75a2e7a09dc5100a6205470650f83468c6405de0293586a8e305d49303132586

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyg_engine-1.2.7-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: publish-to-pypi.yml on aram-ap/pyg-engine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyg_engine-1.2.7-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: pyg_engine-1.2.7-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 4.4 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pyg_engine-1.2.7-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 0b641b033dfad7e7d21a2432546f5d6aae694e890c5ea5d20f04e0b5e77ce963
MD5 ac61f6b5166fcd3e2291d3faebac26b9
BLAKE2b-256 e12a8d0c3f3692e4d42c232f03b39f2f96e0b80ab696c19ab9b6cdfb75e0d783

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyg_engine-1.2.7-cp38-cp38-win_amd64.whl:

Publisher: publish-to-pypi.yml on aram-ap/pyg-engine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyg_engine-1.2.7-cp38-cp38-win32.whl.

File metadata

  • Download URL: pyg_engine-1.2.7-cp38-cp38-win32.whl
  • Upload date:
  • Size: 4.1 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pyg_engine-1.2.7-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 988ba05732a0cb49473fd6eb24d40f21f1e76a8f7541db0ba1475d240eff7c56
MD5 c672927cad5605f703d7a86195358045
BLAKE2b-256 decfd7ccb9d57277d96c065252e281075f1f17b24fbbec3f60c0cf744cb16c24

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyg_engine-1.2.7-cp38-cp38-win32.whl:

Publisher: publish-to-pypi.yml on aram-ap/pyg-engine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyg_engine-1.2.7-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyg_engine-1.2.7-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ebfc88e9e3984d3dec3c2ac7b54b4743df2dc198f89aa8685b5a9e45d9c35ae7
MD5 22080409ceb61a58e916302a0899279b
BLAKE2b-256 adfd30ba4818985c4dda68cdbdd55688aa7f9cc20d524a24f655409ac645584f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyg_engine-1.2.7-cp38-cp38-musllinux_1_2_x86_64.whl:

Publisher: publish-to-pypi.yml on aram-ap/pyg-engine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyg_engine-1.2.7-cp38-cp38-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyg_engine-1.2.7-cp38-cp38-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 112299d21d740075aa75c19dc5db1dd9a3f3ef169193d95fa3d40bd885637ab1
MD5 52b3935b9aff1790a50fe80c7b584be7
BLAKE2b-256 a10dd7653683d0918891a4b0b304c6a3e0c6298fc741abf24e1925d87be615b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyg_engine-1.2.7-cp38-cp38-manylinux_2_28_x86_64.whl:

Publisher: publish-to-pypi.yml on aram-ap/pyg-engine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyg_engine-1.2.7-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyg_engine-1.2.7-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 94c0f02af2f8b342736239a5cbc583751f9c7f333db566a1c1bf5eb2e3288af3
MD5 5ca5740f798dc6640507c6c7374e1832
BLAKE2b-256 157567b30d78cc00ae53122a41b4ed3cdd57dae922467df9e239ba6fa7908ca3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyg_engine-1.2.7-cp38-cp38-macosx_11_0_arm64.whl:

Publisher: publish-to-pypi.yml on aram-ap/pyg-engine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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