Skip to main content

Python bindings for embedding V8 with denoland/rusty_v8.

Project description

v8-python

Python bindings for embedding V8 and running JavaScript, built on denoland/rusty_v8.

v8-python lets Python code create V8 isolates and contexts, evaluate JavaScript, pass values between Python and JavaScript, expose Python functions and classes to JavaScript, and install host APIs such as timers, console, module loading, and WebAssembly. It is implemented in Rust using denoland/rusty_v8.

Install

pip install v8-python

For local development:

uv run maturin develop

Tutorial

Run JavaScript

import v8

isolate = v8.Isolate()
builder = isolate.create_context_builder()
context = builder.build()

result = context.eval("'Hello' + ' from V8'")
print(result)

Expose a Python function

import v8

isolate = v8.Isolate()
builder = isolate.create_context_builder()


@builder.host_function(name="add")
def add(left: int, right: int) -> int:
    return left + right


context = builder.build()
print(context.eval("add(20, 22)"))

Install host APIs

Host APIs are installed through a profile. This keeps the context builder small and makes reusable runtime setups easy to share.

import v8

profile = v8.BaseProfile().install([v8.api.Timer()])

isolate = v8.Isolate()
builder = isolate.create_context_builder()
builder.use_profile(profile)
context = builder.build()

context.eval(
    """
    globalThis.events = [];
    setTimeout(() => events.push("ready"), 0);
    """
)

context.run_until_idle(max_tasks=10)
print(context.eval("events.join(', ')"))

Await a JavaScript Promise

JavaScript promises can be awaited from Python.

import asyncio
import v8

isolate = v8.Isolate()
builder = isolate.create_context_builder()
context = builder.build()


async def main():
    return await context.eval("Promise.resolve('done')")


print(asyncio.run(main()))

More focused examples are available in the examples/ directory.

Documentation

uv run --group doc zensical serve

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

v8_python-0.1.0.tar.gz (173.0 kB view details)

Uploaded Source

Built Distributions

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

v8_python-0.1.0-cp314-cp314-win_arm64.whl (11.4 MB view details)

Uploaded CPython 3.14Windows ARM64

v8_python-0.1.0-cp314-cp314-win_amd64.whl (12.2 MB view details)

Uploaded CPython 3.14Windows x86-64

v8_python-0.1.0-cp314-cp314-manylinux_2_28_x86_64.whl (14.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

v8_python-0.1.0-cp314-cp314-manylinux_2_28_aarch64.whl (16.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

v8_python-0.1.0-cp314-cp314-macosx_11_0_arm64.whl (13.0 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

v8_python-0.1.0-cp314-cp314-macosx_10_12_x86_64.whl (13.8 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

v8_python-0.1.0-cp313-cp313-win_arm64.whl (11.4 MB view details)

Uploaded CPython 3.13Windows ARM64

v8_python-0.1.0-cp313-cp313-win_amd64.whl (12.2 MB view details)

Uploaded CPython 3.13Windows x86-64

v8_python-0.1.0-cp313-cp313-manylinux_2_28_x86_64.whl (14.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

v8_python-0.1.0-cp313-cp313-manylinux_2_28_aarch64.whl (16.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

v8_python-0.1.0-cp313-cp313-macosx_11_0_arm64.whl (13.0 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

v8_python-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl (13.8 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

v8_python-0.1.0-cp312-cp312-win_arm64.whl (11.4 MB view details)

Uploaded CPython 3.12Windows ARM64

v8_python-0.1.0-cp312-cp312-win_amd64.whl (12.2 MB view details)

Uploaded CPython 3.12Windows x86-64

v8_python-0.1.0-cp312-cp312-manylinux_2_28_x86_64.whl (14.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

v8_python-0.1.0-cp312-cp312-manylinux_2_28_aarch64.whl (16.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

v8_python-0.1.0-cp312-cp312-macosx_11_0_arm64.whl (13.0 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

v8_python-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl (13.8 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

v8_python-0.1.0-cp311-cp311-win_arm64.whl (11.4 MB view details)

Uploaded CPython 3.11Windows ARM64

v8_python-0.1.0-cp311-cp311-win_amd64.whl (12.2 MB view details)

Uploaded CPython 3.11Windows x86-64

v8_python-0.1.0-cp311-cp311-manylinux_2_28_x86_64.whl (14.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

v8_python-0.1.0-cp311-cp311-manylinux_2_28_aarch64.whl (16.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

v8_python-0.1.0-cp311-cp311-macosx_11_0_arm64.whl (13.0 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

v8_python-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl (13.8 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

v8_python-0.1.0-cp310-cp310-win_amd64.whl (12.2 MB view details)

Uploaded CPython 3.10Windows x86-64

v8_python-0.1.0-cp310-cp310-manylinux_2_28_x86_64.whl (14.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

v8_python-0.1.0-cp310-cp310-manylinux_2_28_aarch64.whl (16.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

v8_python-0.1.0-cp310-cp310-macosx_11_0_arm64.whl (13.0 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

v8_python-0.1.0-cp310-cp310-macosx_10_12_x86_64.whl (13.8 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

Details for the file v8_python-0.1.0.tar.gz.

File metadata

  • Download URL: v8_python-0.1.0.tar.gz
  • Upload date:
  • Size: 173.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.12 {"installer":{"name":"uv","version":"0.11.12","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for v8_python-0.1.0.tar.gz
Algorithm Hash digest
SHA256 f3866a729520192def7e43e9298e2ba35e86b0334cbc85980c194494dd90288d
MD5 1ecdcdcdc643d0f4df991873d0c1a1d5
BLAKE2b-256 757907659b9a4d053c80c52f31465460a283df5c7267e05c9d8a062bbde1761e

See more details on using hashes here.

File details

Details for the file v8_python-0.1.0-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: v8_python-0.1.0-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 11.4 MB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.12 {"installer":{"name":"uv","version":"0.11.12","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for v8_python-0.1.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 60aab6d837a9974cc348846d6289e1ef056596d4a8f9950810f9ca27949982c2
MD5 76a0d4ed61f986fb76668e64ea5499ee
BLAKE2b-256 e92911128b7559390176635777e1518e0ebc688ffa19f7b1ae0a3316813783e2

See more details on using hashes here.

File details

Details for the file v8_python-0.1.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: v8_python-0.1.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 12.2 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.12 {"installer":{"name":"uv","version":"0.11.12","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for v8_python-0.1.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 6ceb8877eb65def228650c45c9c6fdd542d5e6f014f5aabe73909379f150a9d4
MD5 47967a014e0242c360a7f2621ce4b20d
BLAKE2b-256 a48cfd36c06f793cd03efc4cc2ded04d16103640a4c522b34d2b094175bc8892

See more details on using hashes here.

File details

Details for the file v8_python-0.1.0-cp314-cp314-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: v8_python-0.1.0-cp314-cp314-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 14.8 MB
  • Tags: CPython 3.14, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.12 {"installer":{"name":"uv","version":"0.11.12","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for v8_python-0.1.0-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 700368a676f54d7a8c7562bb7382a8ec4256fc963c8b1140534c55bd88eb3052
MD5 2fe218e6a4e026e1c04d0a9f6f16301a
BLAKE2b-256 ef13949ff7d01b09c1f91b55441dc65b0e14bcdc13d81ced2091b6e421428951

See more details on using hashes here.

File details

Details for the file v8_python-0.1.0-cp314-cp314-manylinux_2_28_aarch64.whl.

File metadata

  • Download URL: v8_python-0.1.0-cp314-cp314-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 16.1 MB
  • Tags: CPython 3.14, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.12 {"installer":{"name":"uv","version":"0.11.12","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for v8_python-0.1.0-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 427f1ddb67a3e2ffcad8c0a927fa180dd8a42eba4f1a85c318c8db99303904c7
MD5 50c3134d2f9a1a8b8360861832b5761c
BLAKE2b-256 50889a17267d68ea015900d12c662ddc953d2d285ae5b87066eb750d00de407b

See more details on using hashes here.

File details

Details for the file v8_python-0.1.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

  • Download URL: v8_python-0.1.0-cp314-cp314-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 13.0 MB
  • Tags: CPython 3.14, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.12 {"installer":{"name":"uv","version":"0.11.12","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for v8_python-0.1.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9dd9fae3ea874c446440c28b22437b378229541f8b0dae2fbe9c016a28516c4b
MD5 5284c829ce9ed9181096a226c1ed572f
BLAKE2b-256 4404c2e187452e3fdd9c26e5c78ee9ad0344b1964644ad0ad1bc938b12cb8077

See more details on using hashes here.

File details

Details for the file v8_python-0.1.0-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: v8_python-0.1.0-cp314-cp314-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 13.8 MB
  • Tags: CPython 3.14, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.12 {"installer":{"name":"uv","version":"0.11.12","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for v8_python-0.1.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7edbba9c8e749a1e4d3096d01d97e26e29e842e52d5e9dd98a6dfd8511a33c91
MD5 b31b7454cf95c5779c688c757bf05497
BLAKE2b-256 438a46cd1b4564e4537a3becb6d64d171af0eb7a89d7012000f06bf164ea014d

See more details on using hashes here.

File details

Details for the file v8_python-0.1.0-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: v8_python-0.1.0-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 11.4 MB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.12 {"installer":{"name":"uv","version":"0.11.12","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for v8_python-0.1.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 cfe6a616a4d23045bf07cef24e1a6030b3f52f1dbd653c11d53ba52af6115c60
MD5 e7d3016fad31e94c92b2df573dc402ff
BLAKE2b-256 7ae22d9ffa7cef64c94f9f473b9356cfd71d9ffff39aeca8c6afc6de7fde6504

See more details on using hashes here.

File details

Details for the file v8_python-0.1.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: v8_python-0.1.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 12.2 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.12 {"installer":{"name":"uv","version":"0.11.12","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for v8_python-0.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 50587f4742e07520ce443a5a90943876d23b2cba77041db31dfe94e4a08dfbfe
MD5 bdad0c22539e10b7087babc36b4ab047
BLAKE2b-256 e40db5d605f73842f2d79812d0ed8af7c5b0f9534f0d7e75fb78b81ece8cb15a

See more details on using hashes here.

File details

Details for the file v8_python-0.1.0-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: v8_python-0.1.0-cp313-cp313-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 14.8 MB
  • Tags: CPython 3.13, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.12 {"installer":{"name":"uv","version":"0.11.12","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for v8_python-0.1.0-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bad86d29bd2e1cd35b821cf2eafdd4526e52a960b1f336e429698098945cfc58
MD5 1605b07e3c3f15390e6d90fbb70779f3
BLAKE2b-256 728266ae58d6d6fba9bd5aa4c1f312b34c9070f91d7170fcbfdba4db2f7dcdd3

See more details on using hashes here.

File details

Details for the file v8_python-0.1.0-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

  • Download URL: v8_python-0.1.0-cp313-cp313-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 16.1 MB
  • Tags: CPython 3.13, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.12 {"installer":{"name":"uv","version":"0.11.12","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for v8_python-0.1.0-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 923dbb98fca321b842f3bbcbc2f219a46fa0b51f53338c645034e2c6fccec124
MD5 392b83eaee1a03e84c350ec4a30a1df1
BLAKE2b-256 7c2099926ca20e3d1a271831fd2da07dd0d6d0ab70cc35ae3b99abe1278bba25

See more details on using hashes here.

File details

Details for the file v8_python-0.1.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

  • Download URL: v8_python-0.1.0-cp313-cp313-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 13.0 MB
  • Tags: CPython 3.13, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.12 {"installer":{"name":"uv","version":"0.11.12","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for v8_python-0.1.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 20a96b4db8e2fbd243492e5c70be69b97db467c3775d98ce205107187254f268
MD5 bbd2a6057e86dfa2d4fc42b3ecfd90ab
BLAKE2b-256 e033de00d362014db24b8212738f125064bcb2907182d61c2a7748e3eefb8b21

See more details on using hashes here.

File details

Details for the file v8_python-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: v8_python-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 13.8 MB
  • Tags: CPython 3.13, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.12 {"installer":{"name":"uv","version":"0.11.12","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for v8_python-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8ddf0602b4643da958b76561632eb470a72e9144ff1e7ca210a45a10784d642c
MD5 b311cd3d16324eae1a11165b24114cc7
BLAKE2b-256 b6ac101bfe2cb8422084a42b90e6ba668b3202cf3ce01e3008207211bac4bf14

See more details on using hashes here.

File details

Details for the file v8_python-0.1.0-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: v8_python-0.1.0-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 11.4 MB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.12 {"installer":{"name":"uv","version":"0.11.12","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for v8_python-0.1.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 207fa4b928934565b0ca555118725930489ff3ad4627121fed2b2e5f20d2a88c
MD5 9729cda92533807eadd3d12137fcd0c4
BLAKE2b-256 9b26daaac4b216bdf81dd17b540a1f465350f3d81851ad0e38a7206338a64b86

See more details on using hashes here.

File details

Details for the file v8_python-0.1.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: v8_python-0.1.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 12.2 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.12 {"installer":{"name":"uv","version":"0.11.12","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for v8_python-0.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 dbd7765df822dae69f2ea298d547a9c367feff8595c2771aeb8a708b975ec1c4
MD5 3fda24be9b25633298c519ad2b26ab59
BLAKE2b-256 eaeaba48ba2171164dbfe545a7b519263783dc902b6e2db821d9de214c546ca1

See more details on using hashes here.

File details

Details for the file v8_python-0.1.0-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: v8_python-0.1.0-cp312-cp312-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 14.8 MB
  • Tags: CPython 3.12, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.12 {"installer":{"name":"uv","version":"0.11.12","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for v8_python-0.1.0-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 300122dac0613e06f19febb8a55205da0265e721a65c46837f49c016f83855b3
MD5 a77a5808d00f2ee7dc24b1d457310b92
BLAKE2b-256 fbb6b48996db74adc45a3caa1d9df2b1d7b74776b7c85014d7a65c29e1cf07d9

See more details on using hashes here.

File details

Details for the file v8_python-0.1.0-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

  • Download URL: v8_python-0.1.0-cp312-cp312-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 16.1 MB
  • Tags: CPython 3.12, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.12 {"installer":{"name":"uv","version":"0.11.12","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for v8_python-0.1.0-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f31d14de6eebdc677ea61e07ebcda4f0128cdb8396c613a0a2b838a99b352f65
MD5 a4c1bad67bf8429e0c68ae37433e7097
BLAKE2b-256 fd62f089335b5a59466e632d2509f435e61db4fc9a618d7f699d3bcaba986203

See more details on using hashes here.

File details

Details for the file v8_python-0.1.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

  • Download URL: v8_python-0.1.0-cp312-cp312-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 13.0 MB
  • Tags: CPython 3.12, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.12 {"installer":{"name":"uv","version":"0.11.12","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for v8_python-0.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0684f1ca2946f30c7b36dc8de70be514c7e49b124cb109b115556637e9d9bc14
MD5 42575111424d4019d6e9ad0da9e472f9
BLAKE2b-256 ed85658b144a3e7b0045c4bda67b02b182daa7a4e82a875ebd336e64759a1d12

See more details on using hashes here.

File details

Details for the file v8_python-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: v8_python-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 13.8 MB
  • Tags: CPython 3.12, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.12 {"installer":{"name":"uv","version":"0.11.12","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for v8_python-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1c8920a50cb0dceec6469c71dea2e97fd6a886833c7cbb6540b43afde8c12af7
MD5 941a548c99ace55ff119cc80e6dac67f
BLAKE2b-256 3113ed529ff0be17bbad438281a408a963e311a102bc269477fe1e668d72cfd3

See more details on using hashes here.

File details

Details for the file v8_python-0.1.0-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: v8_python-0.1.0-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 11.4 MB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.12 {"installer":{"name":"uv","version":"0.11.12","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for v8_python-0.1.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 8901ff5550551b5e765f4fb55861377fd9188b4b2ef9925f0a67e49f4bc29a66
MD5 06d987b2ec2331b6d8bc6303266df101
BLAKE2b-256 dc258d10dcc11845b380972e182e066a675dd780e125f5157a9225c3c2e3c0ea

See more details on using hashes here.

File details

Details for the file v8_python-0.1.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: v8_python-0.1.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 12.2 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.12 {"installer":{"name":"uv","version":"0.11.12","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for v8_python-0.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 8882231dc7a9648be5e2edee806c175c7a84640fc57906ec969f7679264cfa7f
MD5 fd49cba32ed8927dc22d73331c696b04
BLAKE2b-256 7a0b48ba5112c6f98ac91e65b9d1ab984b64c4d89870123c3d3d9c785904b3ad

See more details on using hashes here.

File details

Details for the file v8_python-0.1.0-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: v8_python-0.1.0-cp311-cp311-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 14.8 MB
  • Tags: CPython 3.11, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.12 {"installer":{"name":"uv","version":"0.11.12","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for v8_python-0.1.0-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2040f75edf6dc3d26a3799cf5a514caa5a72dc181f5cf4b8c70efd40c1a8fe51
MD5 3ee46ddac04aca842266e304f1ddfc4c
BLAKE2b-256 c310c3dc67095bab3c84391c3a61eb3260dae0c41f249dbcde0d504734a4fc38

See more details on using hashes here.

File details

Details for the file v8_python-0.1.0-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

  • Download URL: v8_python-0.1.0-cp311-cp311-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 16.1 MB
  • Tags: CPython 3.11, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.12 {"installer":{"name":"uv","version":"0.11.12","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for v8_python-0.1.0-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8ebe32f865741a74a96650a3361431e480f0b972c70eb4f5001843556b1006fb
MD5 0deb8117d5d2204d0f78947662316a0e
BLAKE2b-256 da4710dabe25fde5210a9ae6a4e502e7a72d8610475f55ace8602bc7bb12f13e

See more details on using hashes here.

File details

Details for the file v8_python-0.1.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

  • Download URL: v8_python-0.1.0-cp311-cp311-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 13.0 MB
  • Tags: CPython 3.11, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.12 {"installer":{"name":"uv","version":"0.11.12","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for v8_python-0.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 964956941fd0a9a7830318766a91e3ff4487d0dfb0469c4beba73875b27a0605
MD5 695bbecdf87659134488b58b4de18f84
BLAKE2b-256 fd0f0b0aaeb30a5e175f99a08a7e656f16be57c1f368d4d2dc04cddf97f58745

See more details on using hashes here.

File details

Details for the file v8_python-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: v8_python-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 13.8 MB
  • Tags: CPython 3.11, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.12 {"installer":{"name":"uv","version":"0.11.12","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for v8_python-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b97efef28aa5ed8f378dc85c53408d789e797e61916aedb9a64c12165abbe622
MD5 cdd5394cbacbe1af96bd75108b07d7f6
BLAKE2b-256 fccd189bd70261708516c3cef59027b51542b0199ae7316f7302b9d24098eeea

See more details on using hashes here.

File details

Details for the file v8_python-0.1.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: v8_python-0.1.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 12.2 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.12 {"installer":{"name":"uv","version":"0.11.12","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for v8_python-0.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d2bd7af86fd2a59938645c55dbfe1471ac2c957902c1fbc9fb09e981556d55c0
MD5 8936d628a4d0e6348615c056c30eb3cc
BLAKE2b-256 0f4b37ae8baf810823e78257d14d9db0be2891f1c4bd108786d54578d2b68b91

See more details on using hashes here.

File details

Details for the file v8_python-0.1.0-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: v8_python-0.1.0-cp310-cp310-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 14.8 MB
  • Tags: CPython 3.10, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.12 {"installer":{"name":"uv","version":"0.11.12","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for v8_python-0.1.0-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fcd8e7b5f83e5c8eff8257a2fa44614d0475fcb314c4b8346eeccda6b6b9d3b1
MD5 6db276e147805ff5e542c26c1e49fa7b
BLAKE2b-256 6038b94228a08ca781f226f50baca4bf1fdd6538985f64cc0d4c7ead0d1496cb

See more details on using hashes here.

File details

Details for the file v8_python-0.1.0-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

  • Download URL: v8_python-0.1.0-cp310-cp310-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 16.1 MB
  • Tags: CPython 3.10, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.12 {"installer":{"name":"uv","version":"0.11.12","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for v8_python-0.1.0-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9a60f6e5a18ecb1df72eee849932f84b8807f7825e73b2b04a0a8b25f6d35199
MD5 572ac213ab5e7bb1c2469045657f7618
BLAKE2b-256 255a13f193ef5a810695a279972c213f614ef834b692551828ae7e8242440908

See more details on using hashes here.

File details

Details for the file v8_python-0.1.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

  • Download URL: v8_python-0.1.0-cp310-cp310-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 13.0 MB
  • Tags: CPython 3.10, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.12 {"installer":{"name":"uv","version":"0.11.12","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for v8_python-0.1.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bcab4039b1998e1d5a5f4d7a080620d24abfd4fed9b4300fe0cc871320e9f8a0
MD5 b6e9ff62d028aa1869aa089a34fa3190
BLAKE2b-256 09a79e313406b6c4e8b96724a42e412f5a0f16f119dae83360120184f2b2baea

See more details on using hashes here.

File details

Details for the file v8_python-0.1.0-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: v8_python-0.1.0-cp310-cp310-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 13.8 MB
  • Tags: CPython 3.10, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.12 {"installer":{"name":"uv","version":"0.11.12","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for v8_python-0.1.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 23b8b4827e32426324987c9722994bdb88e7a9dc42ba4dbd89535402bb094af2
MD5 8aaf9d51dcc224c89b4d11b9d9d200eb
BLAKE2b-256 dda1886387506fcd75a6c391e07e9c27aa40082a1a791383c199cc8a266fdd9c

See more details on using hashes here.

Supported by

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