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. Font Families And Styled Text

import pyg_engine as pyg

engine = pyg.Engine()
engine.register_font_family(
    "inter",
    regular="assets/fonts/Inter-Regular.ttf",
    bold="assets/fonts/Inter-Bold.ttf",
    italic="assets/fonts/Inter-Italic.ttf",
    bold_italic="assets/fonts/Inter-BoldItalic.ttf",
)

engine.draw(
    pyg.Text(
        "Family font text",
        position=pyg.Vec2(32, 48),
        color=pyg.Color.WHITE,
        font_size=28.0,
        font_family="inter",
        font_weight="bold",
    )
)

width, height = engine.measure_text(
    "Menu Title",
    font_size=32.0,
    font_family="inter",
    font_weight="bold",
)
engine.draw_text(
    "Italic caption",
    32,
    96,
    pyg.Color.WHITE,
    font_size=20.0,
    font_family="inter",
    font_style="italic",
    kerning=True,
)

engine.run(title="Font Family Demo")

4. 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")

5. 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,
    font_family="inter",
    font_weight="bold",
)
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")

6. 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:

  • direct_draw_demo.py: Shows the new engine.draw(...) shape API.
  • mesh_demo.py: Demonstrates GameObjects, object-based mesh geometry, and world text meshes.
  • threading_demo.py: Advanced: Spawns a background thread that safely updates the UI using engine.get_handle().
  • manual_loop.py: Shows how to control the game loop manually (start_manual -> poll -> update -> render).
  • function_update_demo.py: Shows callback-based loop control via engine.run(update=...).
  • snake_demo.py: Playable Snake game using immediate-mode drawing and keyboard input.
  • 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.3.0.tar.gz (15.6 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.3.0-cp314-cp314t-win_amd64.whl (4.6 MB view details)

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tWindows x86

pyg_engine-1.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl (6.3 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

pyg_engine-1.3.0-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.3.0-cp314-cp314t-macosx_11_0_arm64.whl (4.1 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

pyg_engine-1.3.0-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.3.0-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.3.0-cp314-cp314-macosx_11_0_arm64.whl (4.1 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

pyg_engine-1.3.0-cp313-cp313-musllinux_1_2_x86_64.whl (6.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pyg_engine-1.3.0-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.3.0-cp313-cp313-macosx_11_0_arm64.whl (4.1 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

pyg_engine-1.3.0-cp312-cp312-musllinux_1_2_x86_64.whl (6.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pyg_engine-1.3.0-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.3.0-cp312-cp312-macosx_11_0_arm64.whl (4.1 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

pyg_engine-1.3.0-cp311-cp311-musllinux_1_2_x86_64.whl (6.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pyg_engine-1.3.0-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.3.0-cp311-cp311-macosx_11_0_arm64.whl (4.1 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

pyg_engine-1.3.0-cp310-cp310-musllinux_1_2_x86_64.whl (6.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pyg_engine-1.3.0-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.3.0-cp310-cp310-macosx_11_0_arm64.whl (4.1 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

pyg_engine-1.3.0-cp39-cp39-musllinux_1_2_x86_64.whl (6.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

pyg_engine-1.3.0-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.3.0-cp39-cp39-macosx_11_0_arm64.whl (4.1 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

pyg_engine-1.3.0-cp38-cp38-musllinux_1_2_x86_64.whl (6.3 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

pyg_engine-1.3.0-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.3.0-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.3.0.tar.gz.

File metadata

  • Download URL: pyg_engine-1.3.0.tar.gz
  • Upload date:
  • Size: 15.6 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.3.0.tar.gz
Algorithm Hash digest
SHA256 cdb4c753c3708836299e4203a260620c38b78b249a5079c1888ea697cf119f74
MD5 236629fc4c3d2907d7cdfa3c39ccb123
BLAKE2b-256 5bae673a72b362fa85e428b2532cd5bce7dfe4985a688ca617e584552083fad1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyg_engine-1.3.0.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.3.0-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for pyg_engine-1.3.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 28f0c39dece90aa92c2e87893abe94ec2cf73f452a4f2783257b77908f6e34ba
MD5 752d3fef7fc29363fd99a132de70643d
BLAKE2b-256 7b571b8a5cde77a0f8e3abfb5a0986f0f391902d190aa07e4d4a75022b32fdac

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyg_engine-1.3.0-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.3.0-cp314-cp314t-win32.whl.

File metadata

  • Download URL: pyg_engine-1.3.0-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.3.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 575fa60d0912058e41f998f5e68c1d650ef884de3182cf96a11de829878a7063
MD5 5551300be04fc46fcc3794f10dadc5c3
BLAKE2b-256 f814086268bc1e1b94cb406ac0b858a1aa547c704ed421a71463747ccec0786f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyg_engine-1.3.0-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.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyg_engine-1.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a93c66bbd2ef8cd164e2986e8e6094bfd60e977f53cb31bdb55f4ae9220e4fa9
MD5 9e72ed089f97b7739bf1ae7c771d42ef
BLAKE2b-256 bc8b342c4b49a4012e2754a2cf9a6726e1116ad4a232e760b598ff556cbdd89f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyg_engine-1.3.0-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.3.0-cp314-cp314t-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyg_engine-1.3.0-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e3d90439fe47921943b3a12fa4349aeae770f0e9f445c5dd054cd0d67dc1d200
MD5 4d5b11377779b920f974a4ed3ab87959
BLAKE2b-256 601e05219662c8a73989583a5636f9b834dcae35e1fe5cf86f03802359b692cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyg_engine-1.3.0-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.3.0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyg_engine-1.3.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7457d922337c801f5edd1f93e2f7409e9b3ce1213097c8e4c9a6394717256135
MD5 49230a72b054d603498bace11d5566cb
BLAKE2b-256 4bfd8258a3995d0571304c362ac29bb24b685b0f975d5a04503fcd4d09798418

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyg_engine-1.3.0-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.3.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: pyg_engine-1.3.0-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.3.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 2eb2e12eb3f28260570e587227d01d7ef835f2ab370a846dc088399bda94c3be
MD5 18cf16695451efc79acea2bdd99fc55c
BLAKE2b-256 d6fbff6d9f144aee564af08d94a085f7eaf5658bc58adc0398455a3adf6d364f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyg_engine-1.3.0-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.3.0-cp314-cp314-win32.whl.

File metadata

  • Download URL: pyg_engine-1.3.0-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.3.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 013ce33b635ccefeb1191fcd8b91b45b6c36a188685e280d525b503c923f924b
MD5 e81b4534c2bdadeaf1656c2b1dd231ce
BLAKE2b-256 5e4ee04e03491f334b4892202207a46535a717e94fde0056435bbc2303a3ebc9

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyg_engine-1.3.0-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.3.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyg_engine-1.3.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a0cf7d7c64b758ae64d8134d81d0b731900f42d22d6efb001c3488bd15217cec
MD5 1a3f089d9b73a408b63072afdb4bcdf0
BLAKE2b-256 4b42b8c988a451669f57e3446b3b2cf7400fb2e96dd19aa9ba9063c0f8caeb4b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyg_engine-1.3.0-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.3.0-cp314-cp314-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyg_engine-1.3.0-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e874187db11716d0f496cda06a9687493de8e86646477311fdff7a136f0b58ef
MD5 cc269eae57557f9df56e8922335e5856
BLAKE2b-256 f4a0bc27124282e277d80735e23c7efa7ba9708ff6b6d4d6e0374a174dab3297

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyg_engine-1.3.0-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.3.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyg_engine-1.3.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 234e3724fd7276c8faf6fb03aa39769a806309a58dc94d278a2052ee7af49ea1
MD5 55bc3f9c25aa20f744e348fc4b592d7b
BLAKE2b-256 0722d901a15b86c744142959996d21ad63b479b4e904228642a294f525aee9ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyg_engine-1.3.0-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.3.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: pyg_engine-1.3.0-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.3.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 34325f7017a93dc311b5131a10921d52065e2aed2ebdd0dfe1e410279b4211ee
MD5 0628f7bf2f1a539530825715c13b3c02
BLAKE2b-256 8d6eac5c3a1618a017ac19fdb07c9f8c064f00bdb3bc4c3ebb719241bd7eb8c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyg_engine-1.3.0-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.3.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: pyg_engine-1.3.0-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.3.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 c437413bbe51d73302f42e1ad55f0f7b940428de6f4cb9b4079eae736c9dd543
MD5 f6a3be1f4d5963d60b7f3a6eb9e32f4b
BLAKE2b-256 2a37c188966cfe48f19243190c21acdc42ed584965abad00c6beeca6d89e539b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyg_engine-1.3.0-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.3.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyg_engine-1.3.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 28527c656d29bc728bc6b1d6665761bf1ede2838e5dd1c4cf3ac1e13a056bee9
MD5 5158424212e72de36237c66e9932349e
BLAKE2b-256 96159392dc758c00f9d0b5d256e13b2b1fe55cbb309d25a6d9b49ec550062a71

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyg_engine-1.3.0-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.3.0-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyg_engine-1.3.0-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 99b8ee9c3bbb0cdc87a5919b05ddd1dbff0b074731f8d1704dca0f43e7c9bf98
MD5 726d315240e731c3657e2470cb4d7f7f
BLAKE2b-256 456b575af29c95a02e49a70d4a2f938c74966415730fe18b97f026ec835b9b6d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyg_engine-1.3.0-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.3.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyg_engine-1.3.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c353dd55e49420056ec4ff0dfba8d859c916f2666b263a28188a0ed95c4c2453
MD5 07eca58b86b1a8975775e11180b0b2dd
BLAKE2b-256 74e8149adb0042195f0056e008649e1e5b694eb884cc20b7ce1e8544e4c923bf

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyg_engine-1.3.0-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.3.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: pyg_engine-1.3.0-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.3.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 1911f715e9f4bb5d66c5983a7b840805b811a6caa1a42bfa0dcf90b6ff142454
MD5 d94b2c0eee0b29a48bc7e06a5ce73c11
BLAKE2b-256 2bc030aa1a890a88533081b4fe77e624aac067daeff51e39505f496a512033ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyg_engine-1.3.0-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.3.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: pyg_engine-1.3.0-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.3.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 9b48203c96e491531b42777fdac35052410b6b56f5280754aadeb7d42b814f82
MD5 cb34227bae0df2467f2f98ef145fce6c
BLAKE2b-256 e65df7fe00fe6868228c125e74ed35de505009759ebf469280482ca5b2332b5a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyg_engine-1.3.0-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.3.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyg_engine-1.3.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 befb7932415f5de6379e1e506d31b9cc5205b0eba1d314b6c25f91eff29c0f64
MD5 62446e0593351aed77a92ee758807ca7
BLAKE2b-256 45bc9f07516b6cb7b1efb2a9e38b8230eb4f133247cfff23ecb9a20ab6fddb28

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyg_engine-1.3.0-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.3.0-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyg_engine-1.3.0-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5e59caf77e538aefd85cc5dc3412b67d20cabe8f994e2b578c5adca49ce0f61f
MD5 578279136db3bcd1f0febe65fd91b055
BLAKE2b-256 a6c40ab613cf1143439c6df55183f439b79de039827edd0411c4a6c38f88079c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyg_engine-1.3.0-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.3.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyg_engine-1.3.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e85833e25e539a6f7dac2bd817e9526bbedb0eb853e314f3511d87571090c643
MD5 eaa528e2af0b137113f0bd7719d367f1
BLAKE2b-256 9a2570732e59d749281c1d03e8a2c6c1016d6657e2f0503fb8a5f218d0a6fed4

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyg_engine-1.3.0-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.3.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: pyg_engine-1.3.0-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.3.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 3d23fe06738d4ecddbf6d4c0c3ec9216d1e5d6612df259792b8bb3431d8c4275
MD5 a040282b798795161749bd449c4ed33d
BLAKE2b-256 29d388e760ab4cf0f6273966d1022333de8ada6829450757161963f9de7450ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyg_engine-1.3.0-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.3.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: pyg_engine-1.3.0-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.3.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 a087a6768e2226a9080801673f9246106460d1cf7531a79c783f453cfcefef94
MD5 0c3e29df5206b96f90c683aa0fdf4566
BLAKE2b-256 a3ba8c81d22cbc9ca2f6daf709bd161ae6953501c4fbb25aed41baaf9511e9f3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyg_engine-1.3.0-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.3.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyg_engine-1.3.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3c5418385d1efb2646e2d5aec751d1fbbe2a8b5784aa6c4eb9b0e57bc3f61e54
MD5 b37fd08e700ba670ea165f13498faec5
BLAKE2b-256 4b9687d65cf82a2fddf42d34d080a7b3ac7efb4ef78e4229ea5852a3b3b5383e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyg_engine-1.3.0-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.3.0-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyg_engine-1.3.0-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6544e56af64bf035f40492d727f6d32e80ab8cb67c1aef972822b9cf6a6e052d
MD5 8eb2eef4333f4a5872bac36f5ec52dcd
BLAKE2b-256 d5fe988edec62f4dc0bd0f75cd033bef753243a4f809d3bec4391d383deb8294

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyg_engine-1.3.0-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.3.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyg_engine-1.3.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 550f0592c645211c0e0573ae2f7a58a162846eb3614ff5f7bd41db9340a22aef
MD5 403af3990fc3ab7c046bc29916223ccc
BLAKE2b-256 3e7dc247bf7cf2f0c66fb5461f9bb75e7b71d660a8ced9e89b8b0660bbb22cb4

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyg_engine-1.3.0-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.3.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: pyg_engine-1.3.0-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.3.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f37371a6c80af44a54e3cc096c151b3e2063dde3f22a3a192860aca41f9ca478
MD5 43dafa22d2a10d14146cf78c473ea2aa
BLAKE2b-256 74e706954cc975f486d5a7576067457337402f3bbbb8b3e535e21c970106c22f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyg_engine-1.3.0-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.3.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: pyg_engine-1.3.0-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.3.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 54ef15b5885ca88e963eec13695552e7dadcd0abed8290fd1d62faddea794d3e
MD5 5f7442332fc41d03b8f766a14744b7b9
BLAKE2b-256 d6288d635e0330255b36405b57da10fa20bde4bd0b0a0443b54e3129e7dcc953

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyg_engine-1.3.0-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.3.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyg_engine-1.3.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0b1ffbba303ff1c051fc725d41abea7149e36856c9c9b1f00475c878b6991e34
MD5 e8c3e89544fb2a588efa706177181378
BLAKE2b-256 6148e77ecd6d0cbb0a64080ec1a1968cdf9bfe989c9d763fe1ff28fa84863e8a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyg_engine-1.3.0-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.3.0-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyg_engine-1.3.0-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 74a1d2e275d6ba00693219ba9a15f24c7a51277dce8a4a4c02676dd1dcd58470
MD5 134a4c153f5dbfef6e6540c70479d4c5
BLAKE2b-256 4da607e0436058633f6f0bb070691fc98a4c0e3ad9457ad36e9f499f0896aed0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyg_engine-1.3.0-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.3.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyg_engine-1.3.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fff838b83d552843716f30166e8fcbae0fdd73aff3632a0582ae580536e1fc0c
MD5 da130fcd95cd6612eba8e59c55597d27
BLAKE2b-256 7c94a27bf3135f419c70e615f338244351c91b6988a1e81527590d1e1b23263a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyg_engine-1.3.0-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.3.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: pyg_engine-1.3.0-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.3.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 400882efc50f5027aa860fa3b135c1d6988d7a211b39d51859a6afab8408ad2d
MD5 898c1ca8fc70b8d1c3329f93fc0c4844
BLAKE2b-256 56650b4e8bc484ae9cb29a78a030c685f8d886b2a91b7f0fc351430193f1a87e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyg_engine-1.3.0-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.3.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: pyg_engine-1.3.0-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.3.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 8d5079f1d3d50aa0e4fdaa929182a72649541abb8814e6c1aab52381c8d9cd69
MD5 dbb30cdc9026e3bb952059b8b2e0eb83
BLAKE2b-256 2e7b6dffd0129e36a88e10fdcf862fdd9598fd1a8873d4e7543b490fd28f8122

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyg_engine-1.3.0-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.3.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyg_engine-1.3.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 da2a9e65ec758b83419e7ef05469eb926b9d4fc6afe53ec6845b9a667127d7f6
MD5 ecf861e6e6324413fd260b58c4b3ce17
BLAKE2b-256 0485b4a0b5c93ca871f8a7407b5cc9e3e866b83a50b00540cd763e9302b9d571

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyg_engine-1.3.0-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.3.0-cp39-cp39-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyg_engine-1.3.0-cp39-cp39-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 768add43f0feefe35fecc17cf0cfd778bef1cb2eedca34337cca45aa4c8113b8
MD5 4df6e3262a17c86879e90f3805fb4bf9
BLAKE2b-256 2882810517b97bce253d298764866d64c216830154583e757090dc297c3f943d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyg_engine-1.3.0-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.3.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyg_engine-1.3.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9e163330a6b530d58f76a86d1fa0db93e334d57c54f0de1f63834f3dcc5a3d4d
MD5 d4a396df221249a0aa1a31b10b9c1d37
BLAKE2b-256 762b484f854425ef763ca70a4bae19d5177f3e93277601f6fc8de03c9db00786

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyg_engine-1.3.0-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.3.0-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: pyg_engine-1.3.0-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.3.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 23e7116d3fa8d73b9c890a8293ef9378554e7249c53616002b820eb60fc00943
MD5 52344031866515c270ed384e023723c1
BLAKE2b-256 5a6393259297b8d623247fb1cf8e2ce47c639cd65ef4fd713d1e206d7a2ca86e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyg_engine-1.3.0-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.3.0-cp38-cp38-win32.whl.

File metadata

  • Download URL: pyg_engine-1.3.0-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.3.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 ab7c1009a558706e7beb256377ebe9dad0ee27c5a4067e8c850a43fadfb9ecf8
MD5 59a61923ecd63d8179f15d2394455f3a
BLAKE2b-256 9553c821377fcdc3c732258737c4c65ab7462b44de09c3449ffc9513d506eead

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyg_engine-1.3.0-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.3.0-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyg_engine-1.3.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c5c16f29a677b5157d08d32f7e27a7ff5441dbb897049d22a772f5e6da1a6394
MD5 c93654563040d96a06e7792b90a795c2
BLAKE2b-256 6e71deede54faac98e77a6d21ff743296d5820bd77eb54380c62fa2541f8bb6f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyg_engine-1.3.0-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.3.0-cp38-cp38-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyg_engine-1.3.0-cp38-cp38-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6ad53a335e68fa896b0e81fbada1bcc4e822770bc754aa3e7cc7b697d2b5677f
MD5 6c96d8edac8dde7dd7816af4c142dfad
BLAKE2b-256 2e92905ca6df50a4d3270262ff7efaceb93e075be3658bdc6c701e12528954ac

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyg_engine-1.3.0-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.3.0-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyg_engine-1.3.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 64c79beab42f6c39269e8d40e672b45bf2beb91a36963b2fcf4194ae5a5d1c8e
MD5 a6f6e8c8663835ef6cd15a61e4a542bc
BLAKE2b-256 10ae0ed3f97b45b6b2016f6cd3770a309ab42d68421e25a8a6ffb981cfd27357

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyg_engine-1.3.0-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