Skip to main content
Pre-release

This release is a pre-release and may not be stable for production use.

basedpython

a python type checker and a python-like language that transpiles to pure python

enum class Shape:
    case Circle(radius: int)
    case Rect(width: int, height: int)

    def area(self) -> int:
        match self:
            case Shape.Circle(r): return 3 * r * r
            case Shape.Rect(w, h): return w * h

extension list[Element: Shape]:
    def first_circle(self) -> Shape.Circle?:
        for shape in self:
            if shape is Shape.Circle:
                return shape
        return None

def stats(shapes: list[Shape]) -> (count: int, total: int):
    return (len(shapes), sum(s.area() for s in shapes))

def main():
    let shapes = [Shape.Circle(1), Shape.Rect(2, 3)]
    let summary = stats(shapes)
    print(f"{summary.count} shapes, {summary.total} total")
    print(shapes.first_circle()?.radius ?? 0)

installation

uv add --dev basedpython
by run main

documentation

kotlinisland.github.io/basedpython

acknowledgements

basedpython is a fork of astral-sh/ruff — it reuses ruff's parser, AST, and fix-application machinery, and the type checker is built on ty. none of this would exist without the work of the astral team and the wider ruff community

Download files

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

Source Distribution

basedpython-0.0.1a4.tar.gz (9.4 MB view details)

Uploaded Source

Built Distributions

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

basedpython-0.0.1a4-py3-none-win_arm64.whl (24.5 MB view details)

Uploaded Python 3Windows ARM64

basedpython-0.0.1a4-py3-none-win_amd64.whl (25.7 MB view details)

Uploaded Python 3Windows x86-64

basedpython-0.0.1a4-py3-none-win32.whl (23.3 MB view details)

Uploaded Python 3Windows x86

basedpython-0.0.1a4-py3-none-musllinux_1_2_x86_64.whl (26.1 MB view details)

Uploaded Python 3musllinux: musl 1.2+ x86-64

basedpython-0.0.1a4-py3-none-musllinux_1_2_i686.whl (25.6 MB view details)

Uploaded Python 3musllinux: musl 1.2+ i686

basedpython-0.0.1a4-py3-none-musllinux_1_2_armv7l.whl (23.3 MB view details)

Uploaded Python 3musllinux: musl 1.2+ ARMv7l

basedpython-0.0.1a4-py3-none-musllinux_1_2_aarch64.whl (24.1 MB view details)

Uploaded Python 3musllinux: musl 1.2+ ARM64

basedpython-0.0.1a4-py3-none-manylinux_2_31_riscv64.whl (25.7 MB view details)

Uploaded Python 3manylinux: glibc 2.31+ riscv64

basedpython-0.0.1a4-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (25.8 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ x86-64

basedpython-0.0.1a4-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl (25.1 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ s390x

basedpython-0.0.1a4-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (28.0 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ ppc64le

basedpython-0.0.1a4-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl (27.4 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ i686

basedpython-0.0.1a4-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (23.4 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ ARMv7l

basedpython-0.0.1a4-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (24.3 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ ARM64

basedpython-0.0.1a4-py3-none-macosx_11_0_arm64.whl (23.5 MB view details)

Uploaded Python 3macOS 11.0+ ARM64

basedpython-0.0.1a4-py3-none-macosx_10_12_x86_64.whl (24.2 MB view details)

Uploaded Python 3macOS 10.12+ x86-64

basedpython-0.0.1a4-py3-none-linux_armv6l.whl (23.7 MB view details)

Uploaded Python 3

File details

Details for the file basedpython-0.0.1a4.tar.gz.

File metadata

  • Download URL: basedpython-0.0.1a4.tar.gz
  • Upload date:
  • Size: 9.4 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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 basedpython-0.0.1a4.tar.gz
Algorithm Hash digest
SHA256 436fe8e7ed441921d04400ed6cbf778d823406b30d32d3c5d07d80be405830e8
MD5 ed8c5c9d303394f5f12d13e787711c2c
BLAKE2b-256 38111b5026be7745af8260eed409ab7a020ba8007c04d8b066b6889ea7e65c85

See more details on using hashes here.

File details

Details for the file basedpython-0.0.1a4-py3-none-win_arm64.whl.

File metadata

  • Download URL: basedpython-0.0.1a4-py3-none-win_arm64.whl
  • Upload date:
  • Size: 24.5 MB
  • Tags: Python 3, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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 basedpython-0.0.1a4-py3-none-win_arm64.whl
Algorithm Hash digest
SHA256 b4515a21fd14f2702d0f5967498fc6a3454ed4bd11d6027bf29e779253804d0e
MD5 994e5a73bf9aeb08381ed7fde7bd325b
BLAKE2b-256 9af5a0fdb4a66b7eba58df8cd888075bcd9aec0990e0ac63dce721204ae6691d

See more details on using hashes here.

File details

Details for the file basedpython-0.0.1a4-py3-none-win_amd64.whl.

File metadata

  • Download URL: basedpython-0.0.1a4-py3-none-win_amd64.whl
  • Upload date:
  • Size: 25.7 MB
  • Tags: Python 3, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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 basedpython-0.0.1a4-py3-none-win_amd64.whl
Algorithm Hash digest
SHA256 39ccec7bce92a7221b11397d6951c0be6460ff325a94f779843ef5663cc3c8d0
MD5 acb5fb2e31169e0792f8fd9e95f8a09f
BLAKE2b-256 6a3885f0fc63c6afc8d7d1220e0d77663756e5e079b53eccc5edee2a36522d03

See more details on using hashes here.

File details

Details for the file basedpython-0.0.1a4-py3-none-win32.whl.

File metadata

  • Download URL: basedpython-0.0.1a4-py3-none-win32.whl
  • Upload date:
  • Size: 23.3 MB
  • Tags: Python 3, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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 basedpython-0.0.1a4-py3-none-win32.whl
Algorithm Hash digest
SHA256 a9b02fd4af969a33f90241883692884f6c509c5e9a9d6e44fafe054a550d5c63
MD5 6792f08c1e1ed3ba219bc0a9011a6620
BLAKE2b-256 f5ebdf914bb523fc09a7f3c825c04895c356e0e0849b05f8dd8e775a950613dc

See more details on using hashes here.

File details

Details for the file basedpython-0.0.1a4-py3-none-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: basedpython-0.0.1a4-py3-none-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 26.1 MB
  • Tags: Python 3, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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 basedpython-0.0.1a4-py3-none-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c689b6f747d4d67e846b466313ffa684e196df9f381626a91757670cb793fe22
MD5 6653359fee90460c0dc17b7963fdad15
BLAKE2b-256 4248b16056c9ac455080f1749d03ef641deb17c8d5d19fea07b4f0aa4b1fc9d2

See more details on using hashes here.

File details

Details for the file basedpython-0.0.1a4-py3-none-musllinux_1_2_i686.whl.

File metadata

  • Download URL: basedpython-0.0.1a4-py3-none-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 25.6 MB
  • Tags: Python 3, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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 basedpython-0.0.1a4-py3-none-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c69e828e4ae53603d900033b590339e7f28fc83721701992749d14f9dae7299b
MD5 c5b07270ed913bbfeb1c5919a7687557
BLAKE2b-256 01f872df4d6b328699d25b43367cd1993a19a2eee13dc6d2d09159001281c58b

See more details on using hashes here.

File details

Details for the file basedpython-0.0.1a4-py3-none-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: basedpython-0.0.1a4-py3-none-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 23.3 MB
  • Tags: Python 3, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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 basedpython-0.0.1a4-py3-none-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7c5e7b63b34e1a6aebdf8037beb399869aa8a22f87c400bf2aefe60d5fc6b654
MD5 e502889670c4b716d88721c6793e065e
BLAKE2b-256 66646a7afc8dae8263384c1beaf9dff4943a7223f41d3a22d070a7bff246671e

See more details on using hashes here.

File details

Details for the file basedpython-0.0.1a4-py3-none-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: basedpython-0.0.1a4-py3-none-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 24.1 MB
  • Tags: Python 3, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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 basedpython-0.0.1a4-py3-none-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9425e7f76d62e0b9e613b93fcde2e8f884ec1473920f05ee7f6f890646847ffe
MD5 d11b5804a3f4185af8ae844e30be646a
BLAKE2b-256 900440e383b3ff1803b17fb887b8358499cde9e9e8be5aacc586edf3f0adc0c1

See more details on using hashes here.

File details

Details for the file basedpython-0.0.1a4-py3-none-manylinux_2_31_riscv64.whl.

File metadata

  • Download URL: basedpython-0.0.1a4-py3-none-manylinux_2_31_riscv64.whl
  • Upload date:
  • Size: 25.7 MB
  • Tags: Python 3, manylinux: glibc 2.31+ riscv64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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 basedpython-0.0.1a4-py3-none-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 91b5e1caf1b1817ea15e29bc9cac3f6180dd6e60aab6444e569151282498a3b3
MD5 fc1520bc6ff672ebdf04a8a830f0484d
BLAKE2b-256 656238714ce54a7767fcc9f833eddac1517d754b2b91d976f9e070cbeff9e177

See more details on using hashes here.

File details

Details for the file basedpython-0.0.1a4-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: basedpython-0.0.1a4-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 25.8 MB
  • Tags: Python 3, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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 basedpython-0.0.1a4-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d757bb8cdabe779562a0b6b322f4c31dd2454f7f96d43422a8efae11bceb557e
MD5 b1533c54fc995603f037384a20e08c3e
BLAKE2b-256 003615abf10d28ed20384b8365d2cd51dc93b5129dc3c32ca36580ea1ef3119e

See more details on using hashes here.

File details

Details for the file basedpython-0.0.1a4-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: basedpython-0.0.1a4-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 25.1 MB
  • Tags: Python 3, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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 basedpython-0.0.1a4-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2d48c152b43d9221037a62897cea66b7f729284e8e41ead69772d8cbdd213b8b
MD5 a9c3764ff310d1e8ce9c2827d7a297be
BLAKE2b-256 3c0d73129f4ce0d2eb4b39e748e00189d6d59caeb20f341fde44c8222380cf73

See more details on using hashes here.

File details

Details for the file basedpython-0.0.1a4-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: basedpython-0.0.1a4-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 28.0 MB
  • Tags: Python 3, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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 basedpython-0.0.1a4-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 83ded59687bd2ef9ae0614f0e5870d8281022360ef31e2cde1924a594d9b5857
MD5 762e93445201b0286a8048bf3e3f046f
BLAKE2b-256 ee5dc68b61a24f10f02037059f44a6fd531a20a9f0ef3f6c86d17f3b5363654a

See more details on using hashes here.

File details

Details for the file basedpython-0.0.1a4-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

  • Download URL: basedpython-0.0.1a4-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 27.4 MB
  • Tags: Python 3, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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 basedpython-0.0.1a4-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e5dd572811aca8fb2070bd0d8cd23d7134627e1f3142d1cd0f8a642a9d0213dc
MD5 9dfcf37ec02df16e453f516401a9b0e0
BLAKE2b-256 d9652f61f325fa61e8edead86b4dd4955210dee226bae2e779977f55be1601b3

See more details on using hashes here.

File details

Details for the file basedpython-0.0.1a4-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: basedpython-0.0.1a4-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 23.4 MB
  • Tags: Python 3, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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 basedpython-0.0.1a4-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 af12e1809cf4430173f16cf510254d1f3789f5511b77a4d11e4e56d8fdefb327
MD5 1c48635554419dc65bc81f2a45593112
BLAKE2b-256 a99cd13faf44408fb31ae978c569a527d8d68bc15db88c0ea562bbbac389f537

See more details on using hashes here.

File details

Details for the file basedpython-0.0.1a4-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: basedpython-0.0.1a4-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 24.3 MB
  • Tags: Python 3, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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 basedpython-0.0.1a4-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 39c4f5aa4e2b75d54bb2f32b5a8977298878922a62c6fa1b1496e9d3206b9301
MD5 aaafed26b3d85ade8839dc92178b0514
BLAKE2b-256 40350397d4de6f582847c67c609f45ff87e6f034652cc31825127f5a7dc9ca77

See more details on using hashes here.

File details

Details for the file basedpython-0.0.1a4-py3-none-macosx_11_0_arm64.whl.

File metadata

  • Download URL: basedpython-0.0.1a4-py3-none-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 23.5 MB
  • Tags: Python 3, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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 basedpython-0.0.1a4-py3-none-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4542d11dacf0c223c622ea1d9981d6ac38308e990c060bb52dc312da610f9a16
MD5 f77b5a6b720285bb36ad54ee8a340253
BLAKE2b-256 6cdaf2661a74f5b8590457328115d0f3faa45abf64421555f113666b9533b112

See more details on using hashes here.

File details

Details for the file basedpython-0.0.1a4-py3-none-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: basedpython-0.0.1a4-py3-none-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 24.2 MB
  • Tags: Python 3, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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 basedpython-0.0.1a4-py3-none-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a6c78f1091268486e21e399e6d4f23f63c49c1d057e06ad687f54b6819004871
MD5 1960b49fc889809d03513e384fd81d12
BLAKE2b-256 1a7c76b3df0551f1ced6624f8129729545734eade7ee7175c43d66c2e58bb058

See more details on using hashes here.

File details

Details for the file basedpython-0.0.1a4-py3-none-linux_armv6l.whl.

File metadata

  • Download URL: basedpython-0.0.1a4-py3-none-linux_armv6l.whl
  • Upload date:
  • Size: 23.7 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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 basedpython-0.0.1a4-py3-none-linux_armv6l.whl
Algorithm Hash digest
SHA256 d83095687d103358511eebf21185186b243843c0c7492c1bcdea89dbdce0501b
MD5 f2efd8443658d07a5fcac62a722cbeb4
BLAKE2b-256 26a414f717988d87be85c8d97c33352228a6056bee9f2fc87304a27e1388c1d1

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